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,
     })
 def writeImports(self):
     return '\n'.join( (PanelDTC.writeImports(self),
                       'import wx.lib.throbber'))
 def __init__(self, name, designer, parent, ctrlClass):
     PanelDTC.__init__(self, name, designer, parent, ctrlClass)
     self.editors.update({'Bitmaps': BitmapsConstrPropEdit})
 def __init__(self, name, designer, parent, ctrlClass):
     PanelDTC.__init__(self, name, designer, parent, ctrlClass)
 def writeImports(self):
     return '\n'.join( (PanelDTC.writeImports(self),
                       'import wx.lib.filebrowsebutton'))