How to use the gooey.gui.util.wx_util.dark_grey 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 chriskiehl / Gooey / gooey / gui / widgets / components.py View on Github external
def format_help_msg(self, parent, msg):
    base_text = wx.StaticText(parent, label=msg or '')
    wx_util.dark_grey(base_text)
    return base_text
github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / widgets / choosers.py View on Github external
def CreateHelpMsgWidget(self, parent):
    base_text = wx.StaticText(parent, label=self.data['help_msg'])
    # if self.data['nargs']:
    #   base_text.SetLabelText(base_text.GetLabelText() + self.CreateNargsMsg(action))
    wx_util.dark_grey(base_text)
    return base_text
github chriskiehl / Gooey / gooey / gui / widgets / components.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 '')
    wx_util.dark_grey(base_text)
    return base_text
github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / widgets / components.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 '')
    wx_util.dark_grey(base_text)
    return base_text