예제 #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)
예제 #2
0
 def __init__(self, items=None, setfunc=None):
     # setfunc(newindex)
     GUISelectableList.__init__(self, items=items)
     self.setfunc = setfunc
예제 #3
0
 def __init__(self, panel):
     self.panel = panel
     GUISelectableList.__init__(self)
예제 #4
0
 def __init__(self, panel):
     self.panel = panel
     GUISelectableList.__init__(self)
예제 #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)
예제 #6
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self)
예제 #7
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self, [c.NAME for c in dialog.categories])
예제 #8
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self)
예제 #9
0
 def __init__(self, dialog):
     self.dialog = dialog
     GUISelectableList.__init__(self, [c.NAME for c in dialog.categories])
예제 #10
0
파일: base.py 프로젝트: tautonic/moneyguru
 def __init__(self, items=None, setfunc=None):
     # setfunc(newindex)
     GUISelectableList.__init__(self, items=items)
     self.setfunc = setfunc