Exemplo n.º 1
0
 def __init__(self,
              master,
              username: str,
              fragments: dict,
              color: str,
              font: Font,
              autoscroll: bool = True):
     Text.__init__(self, master, height=1, font=font, wrap=WORD)
     self.username: str = username
     self.fragments: dict = fragments
     self.font: Font = font
     self.font_bold: Font = font.copy()
     self.font_bold.configure(weight=BOLD)
     self.color = color
     self.autoscroll = autoscroll
     self.images: list = []