예제 #1
0
 def __init__(self, name, designer, parent, ctrlClass):
     PanelDTC.__init__(self, name, designer, parent, ctrlClass)
     StrPropEdit = PropertyEditors.StrConstrPropEdit
     self.editors.update({
         'LabelText': StrPropEdit, 'ButtonText': StrPropEdit,
         'ToolTip': StrPropEdit, 'DialogTitle': StrPropEdit,
         'StartDirectory': StrPropEdit, 'InitialValue': StrPropEdit, 
         'FileMask': StrPropEdit,
     })
예제 #2
0
 def writeImports(self):
     return '\n'.join( (PanelDTC.writeImports(self),
                       'import wx.lib.throbber'))
예제 #3
0
 def __init__(self, name, designer, parent, ctrlClass):
     PanelDTC.__init__(self, name, designer, parent, ctrlClass)
     self.editors.update({'Bitmaps': BitmapsConstrPropEdit})
예제 #4
0
 def __init__(self, name, designer, parent, ctrlClass):
     PanelDTC.__init__(self, name, designer, parent, ctrlClass)
예제 #5
0
 def writeImports(self):
     return '\n'.join( (PanelDTC.writeImports(self),
                       'import wx.lib.filebrowsebutton'))