X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Ftext.py;h=306841257ccaa090238743be176f680ed651a354;hb=b5fcdd67bc87316143991d06fa356550afadb4e4;hp=4343d015e2519f77b48accf314f1d99bf21fe65d;hpb=89e77ffa7dc2f2485049763b780fd5519541daa7;p=naja.git diff --git a/naja/widgets/text.py b/naja/widgets/text.py index 4343d01..3068412 100644 --- a/naja/widgets/text.py +++ b/naja/widgets/text.py @@ -37,16 +37,22 @@ class Glyph(object): class TextWidget(Widget): def __init__(self, pos, text, size=None, fontname=None, fontsize=None, - colour=None): + colour=None, unselectable_colour=None): super(TextWidget, self).__init__(pos, size) self.text = text self.fontname = fontname or FONT self.fontsize = (fontsize or FONT_SIZE) // EIGHT_BIT_SCALE self.colour = convert_colour(colour or PALETTE.BLACK) + if unselectable_colour is not None: + unselectable_colour = convert_colour(unselectable_colour) + self.unselectable_colour = unselectable_colour def render_line(self, text): - text_surf = self.font.render(text, True, self.colour) + colour = self.colour + if not self.is_selectable() and self.unselectable_colour is not None: + colour = self.unselectable_colour + text_surf = self.font.render(text, True, colour) text_rect = text_surf.get_rect() return pygame.transform.scale( text_surf, (text_rect.width * EIGHT_BIT_SCALE, @@ -58,7 +64,7 @@ class TextWidget(Widget): self.size = self.surface.get_rect().size def draw(self, surface): - surface.blit(self.surface, self.pos) + surface.blit(self.surface, self.rect) class TextBoxWidget(TextWidget): @@ -137,6 +143,7 @@ class TextBoxWidget(TextWidget): word = glyph.markup_text remaining_words.insert(0, word) if current_words and words_fit(current_words): + line_count += 1 yield ' '.join(current_words) def prepare(self): @@ -162,6 +169,3 @@ class TextBoxWidget(TextWidget): y += line_surface.get_rect().height for pos, img in image_map.items(): self.surface.blit(img, pos) - - def draw(self, surface): - surface.blit(self.surface, self.rect)