Example #1
0
        def __init__(self, parent, id = wx.ID_ANY, value = '',
                     pos = wx.DefaultPosition,
                     size = wx.DefaultSize,
                     style = 0,
                     validator = wx.DefaultValidator,
                     name = "FormatterTextCtrl"):
            cgui.InputBox.__init__(self, parent, id, value, pos, size, style, validator, name)

            SpellCheckTextCtrlMixin.__init__(self)
 def __init__(self, parent, style = 0, value = '', multiFormat = True, format = None, validator = wx.DefaultValidator):
     InputBox.__init__(self, parent, wx.ID_ANY, value, wx.DefaultPosition, wx.DefaultSize, style | formattedstyle, validator, value)
     FormattingInterface.__init__(self, multiFormat, format)
     SpellCheckTextCtrlMixin.__init__(self)
Example #3
0
        def __init__(self, parent, style = 0, value = '', validator = wx.DefaultValidator):
            ExpandoTextCtrl.__init__(self, parent, wx.ID_ANY, value, wx.DefaultPosition, wx.DefaultSize, style, validator, value)

            SpellCheckTextCtrlMixin.__init__(self)