How to use the gooey.gui.styling function in Gooey

To help you get started, we’ve selected a few Gooey examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / components.py View on Github external
def CreateHelpMsgWidget(self, parent, action):
    base_text = wx.StaticText(parent, label=action.help)
    if self.HasNargs(action):
      base_text.SetLabelText(base_text.GetLabelText() + self.CreateNargsMsg(action))
    styling.MakeDarkGrey(base_text)
    return base_text
github chriskiehl / Gooey / gooey / gui / components.py View on Github external
def CreateNameLabelWidget(self, parent, action):
    label = str(action.dest).title()
    if len(action.option_strings) > 1:
      label += ' (%s)' % action.option_strings[0]
    text = wx.StaticText(parent, label=label)
    styling.MakeBold(text)
    return text
github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / widgets / components2.py View on Github external
def createTitle(self, parent):
    text = wx.StaticText(parent, label=self.data['display_name'].title())
    styling.MakeBold(text)
    return text
github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / components.py View on Github external
def CreateNameLabelWidget(self, parent, action):
    label = str(action.dest).title()
    if len(action.option_strings) > 1:
      label += ' (%s)' % action.option_strings[0]
    text = wx.StaticText(parent, label=label)
    styling.MakeBold(text)
    return text
github chriskiehl / Gooey / gooey / gui / components.py View on Github external
def CreateHelpMsgWidget(self, parent, action):
    base_text = wx.StaticText(parent, label=action.help)
    if self.HasNargs(action):
      base_text.SetLabelText(base_text.GetLabelText() + self.CreateNargsMsg(action))
    styling.MakeDarkGrey(base_text)
    return base_text
github chriskiehl / Gooey / gooey / gui / components.py View on Github external
def CreateNameLabelWidget(self, parent, action):
    label = str(action.dest).title()
    if len(action.option_strings) > 1:
      label += ' (%s)' % action.option_strings[0]
    text = wx.StaticText(parent, label=label)
    styling.MakeBold(text)
    return text
github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / widgets / components2.py View on Github external
def createHelpMsgWidget(self, parent):
    label_text = (self.formatExtendedHelpMsg(self.data)
                  if self.data['nargs']
                  else self.data['help'])
    base_text = wx.StaticText(parent, label=label_text or '')
    styling.MakeDarkGrey(base_text)
    return base_text