/[cvs]/nfo/projects/netfraggle/bin/FraggleDialogModules.py
ViewVC logotype

Contents of /nfo/projects/netfraggle/bin/FraggleDialogModules.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations)
Sun Sep 5 10:09:26 2004 UTC (19 years, 10 months ago) by xabbu
Branch: MAIN
Changes since 1.3: +6 -3 lines
File MIME type: text/x-python
+ Bug that menues where displayed incorrectly on nt like os resolved.
+ Removed OS dependend menu creation in faggleMain -> moved to fraggleViewPort
+ Modules configuration dialog can be displayed by selecting Files->Modules now

1 #Boa:Dialog:FraggleDialogModules
2
3 from wxPython.wx import *
4
5 import FraggleCtlModules
6
7 def create(parent):
8 return FraggleDialogModules(parent)
9
10 [wxID_FRAGGLEDIALOGMODULES, wxID_FRAGGLEDIALOGMODULESBUTTON1,
11 wxID_FRAGGLEDIALOGMODULESBUTTONSAVECLOSE,
12 wxID_FRAGGLEDIALOGMODULESCHECKLISTBOXMODULES,
13 ] = map(lambda _init_ctrls: wxNewId(), range(4))
14
15 class FraggleDialogModules(wxDialog):
16
17 def _init_ctrls(self, prnt):
18 # generated method, don't edit
19 wxDialog.__init__(self, id=wxID_FRAGGLEDIALOGMODULES,
20 name='FraggleDialogModules', parent=prnt, pos=wxPoint(256, 167),
21 size=wxSize(197, 315), style=wxDEFAULT_DIALOG_STYLE,
22 title='Module Setup')
23 self.SetClientSize(wxSize(189, 288))
24
25 self.checkListBoxModules = wxCheckListBox(choices=[],
26 id=wxID_FRAGGLEDIALOGMODULESCHECKLISTBOXMODULES,
27 name='checkListBoxModules', parent=self, pos=wxPoint(8, 8),
28 size=wxSize(168, 248), style=0, validator=wxDefaultValidator)
29 EVT_CHECKLISTBOX(self.checkListBoxModules,
30 wxID_FRAGGLEDIALOGMODULESCHECKLISTBOXMODULES,
31 self.OnCheckListBoxModulesChecklistbox)
32
33 self.buttonSaveClose = wxButton(id=wxID_FRAGGLEDIALOGMODULESBUTTONSAVECLOSE,
34 label='Save and Close', name='buttonSaveClose', parent=self,
35 pos=wxPoint(8, 264), size=wxSize(88, 16), style=0)
36
37 self.button1 = wxButton(id=wxID_FRAGGLEDIALOGMODULESBUTTON1,
38 label='Cancel', name='button1', parent=self, pos=wxPoint(104,
39 264), size=wxSize(72, 16), style=0)
40
41 def __init_listbox__(self,parent):
42 #print self.modulesCtl.modules.keys()
43 try:
44 for i in self.modulesCtl.modules.keys():
45 self.checkListBoxModules.Append(i)
46 except AttributeError:
47 print "No Modules found"
48
49 def __init__(self, parent):
50 self.modulesCtl = parent.engine.modules
51 self._init_ctrls(parent)
52 self.__init_listbox__(parent)
53
54 def OnCheckListBoxModulesChecklistbox(self, event):
55 event.Skip()
56
57

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed