Ejemplo n.º 1
0
 def __init__(self, panel):
     self.panel = panel
     account_types_desc = [ACCOUNT_TYPE_DESC[at] for at in AccountType.InOrder]
     GUISelectableList.__init__(self, account_types_desc)
Ejemplo n.º 2
0
 def __init__(self, items=None, setfunc=None):
     # setfunc(newindex)
     GUISelectableList.__init__(self, items=items)
     self.setfunc = setfunc
Ejemplo n.º 3
0
 def __init__(self, panel):
     self.panel = panel
     GUISelectableList.__init__(self)
Ejemplo n.º 4
0
 def __init__(self, panel):
     self.panel = panel
     GUISelectableList.__init__(self)
Ejemplo n.º 5
0
 def __init__(self, panel):
     self.panel = panel
     account_types_desc = [
         ACCOUNT_TYPE_DESC[at] for at in AccountType.InOrder
     ]
     GUISelectableList.__init__(self, account_types_desc)
Ejemplo n.º 6
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self)
Ejemplo n.º 7
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self, [c.NAME for c in dialog.categories])
Ejemplo n.º 8
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self)
Ejemplo n.º 9
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self, [c.NAME for c in dialog.categories])
Ejemplo n.º 10
0
 def __init__(self, items=None, setfunc=None):
     # setfunc(newindex)
     GUISelectableList.__init__(self, items=items)
     self.setfunc = setfunc