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

Diff of /nfo/projects/netfraggle/bin/fraggleDialogPrefs.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by xabbu, Sun Aug 29 22:52:40 2004 UTC revision 1.11 by xabbu, Wed Sep 1 20:56:32 2004 UTC
# Line 11  def create(parent): Line 11  def create(parent):
11  [wxID_FRAGGLEDIALOGPREFS, wxID_FRAGGLEDIALOGPREFSBTSAVE,  [wxID_FRAGGLEDIALOGPREFS, wxID_FRAGGLEDIALOGPREFSBTSAVE,
12   wxID_FRAGGLEDIALOGPREFSBUTTON1, wxID_FRAGGLEDIALOGPREFSBUTTONPROFILEDEL,   wxID_FRAGGLEDIALOGPREFSBUTTON1, wxID_FRAGGLEDIALOGPREFSBUTTONPROFILEDEL,
13   wxID_FRAGGLEDIALOGPREFSBUTTONPROFILELOAD,   wxID_FRAGGLEDIALOGPREFSBUTTONPROFILELOAD,
14   wxID_FRAGGLEDIALOGPREFSBUTTONPROFILESAVE,   wxID_FRAGGLEDIALOGPREFSBUTTONPROFILESAVE, wxID_FRAGGLEDIALOGPREFSBUTTONTEST,
15   wxID_FRAGGLEDIALOGPREFSCOMBOBOXPROFILE, wxID_FRAGGLEDIALOGPREFSSTATICTEXT1,   wxID_FRAGGLEDIALOGPREFSCOMBOBOXPROFILE, wxID_FRAGGLEDIALOGPREFSSTATICTEXT1,
16   wxID_FRAGGLEDIALOGPREFSSTATICTEXT2, wxID_FRAGGLEDIALOGPREFSSTATICTEXT3,   wxID_FRAGGLEDIALOGPREFSSTATICTEXT2, wxID_FRAGGLEDIALOGPREFSSTATICTEXT3,
17   wxID_FRAGGLEDIALOGPREFSSTATICTEXT4, wxID_FRAGGLEDIALOGPREFSSTATICTEXT5,   wxID_FRAGGLEDIALOGPREFSSTATICTEXT4, wxID_FRAGGLEDIALOGPREFSSTATICTEXT5,
# Line 19  def create(parent): Line 19  def create(parent):
19   wxID_FRAGGLEDIALOGPREFSTEXTCTRLRETRIEVAL,   wxID_FRAGGLEDIALOGPREFSTEXTCTRLRETRIEVAL,
20   wxID_FRAGGLEDIALOGPREFSTEXTCTRLSERVER,   wxID_FRAGGLEDIALOGPREFSTEXTCTRLSERVER,
21   wxID_FRAGGLEDIALOGPREFSTEXTCTRLUSERNAME,   wxID_FRAGGLEDIALOGPREFSTEXTCTRLUSERNAME,
22  ] = map(lambda _init_ctrls: wxNewId(), range(17))  ] = map(lambda _init_ctrls: wxNewId(), range(18))
23    
24  class fraggleDialogPrefs(wxDialog):  class fraggleDialogPrefs(wxDialog):
     def _init_utils(self):  
         # generated method, don't edit  
         pass  
   
25      def _init_ctrls(self, prnt):      def _init_ctrls(self, prnt):
26          # generated method, don't edit          # generated method, don't edit
27          wxDialog.__init__(self, id=wxID_FRAGGLEDIALOGPREFS,          wxDialog.__init__(self, id=wxID_FRAGGLEDIALOGPREFS,
28                name='fraggleDialogPrefs', parent=prnt, pos=wxPoint(283, 313),                name='fraggleDialogPrefs', parent=prnt, pos=wxPoint(482, 310),
29                size=wxSize(366, 233), style=wxDEFAULT_DIALOG_STYLE,                size=wxSize(366, 233), style=wxDEFAULT_DIALOG_STYLE,
30                title='Netfraggle Preferences')                title='Netfraggle Preferences')
31          self._init_utils()          self._init_utils()
# Line 86  class fraggleDialogPrefs(wxDialog): Line 82  class fraggleDialogPrefs(wxDialog):
82    
83          self.comboBoxProfile = wxComboBox(choices=[],          self.comboBoxProfile = wxComboBox(choices=[],
84                id=wxID_FRAGGLEDIALOGPREFSCOMBOBOXPROFILE, name='comboBoxProfile',                id=wxID_FRAGGLEDIALOGPREFSCOMBOBOXPROFILE, name='comboBoxProfile',
85                parent=self, pos=wxPoint(80, 8), size=wxSize(124, 16), style=0,                parent=self, pos=wxPoint(80, 8), size=wxSize(124, 21), style=0,
86                validator=wxDefaultValidator, value='')                validator=wxDefaultValidator, value='')
87          self.comboBoxProfile.SetLabel('')          self.comboBoxProfile.SetLabel('')
88            EVT_COMBOBOX(self.comboBoxProfile,
89                  wxID_FRAGGLEDIALOGPREFSCOMBOBOXPROFILE,
90                  self.OnComboboxprofileCombobox)
91    
92          self.staticText6 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT6,          self.staticText6 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT6,
93                label='Profile', name='staticText6', parent=self, pos=wxPoint(16,                label='Profile', name='staticText6', parent=self, pos=wxPoint(16,
# Line 115  class fraggleDialogPrefs(wxDialog): Line 114  class fraggleDialogPrefs(wxDialog):
114                wxID_FRAGGLEDIALOGPREFSBUTTONPROFILELOAD,                wxID_FRAGGLEDIALOGPREFSBUTTONPROFILELOAD,
115                self.OnButtonprofileloadButton)                self.OnButtonprofileloadButton)
116    
117            self.buttonTest = wxButton(id=wxID_FRAGGLEDIALOGPREFSBUTTONTEST,
118                  label=u'&Test Account', name=u'buttonTest', parent=self,
119                  pos=wxPoint(264, 208), size=wxSize(96, 16), style=0)
120            EVT_BUTTON(self.buttonTest, wxID_FRAGGLEDIALOGPREFSBUTTONTEST,
121                  self.OnButtonTestButton)
122    
123        def _init_utils(self):
124            # generated method, don't edit
125            pass
126    
127      def __init_profiles(self):      def __init_profiles(self):
128          list = self.parent.preferencesCtl.getProfileList()          list = self.parent.preferencesCtl.getProfileList()
129          print list          print list
# Line 123  class fraggleDialogPrefs(wxDialog): Line 132  class fraggleDialogPrefs(wxDialog):
132                    
133      def __init__(self, parent):      def __init__(self, parent):
134          self.parent = parent          self.parent = parent
135            import __main__
136            self.engine = __main__.engine
137          self._init_ctrls(parent)          self._init_ctrls(parent)
138          self.__init_profiles()          self.__init_profiles()
139                    
# Line 144  class fraggleDialogPrefs(wxDialog): Line 155  class fraggleDialogPrefs(wxDialog):
155          event.Skip()          event.Skip()
156    
157      def loadConfig(self):      def loadConfig(self):
158          engine = FraggleEngine()          prefsfile = os.path.join(self.parent.preferencesCtl.getDefaultDir(), 'prefs.xml')
         prefsfile = os.path.join(engine.getDefaultDir(), 'prefs.xml')  
159          self.parent.preferencesCtl.loadConfig(prefsfile)          self.parent.preferencesCtl.loadConfig(prefsfile)
160                    
161      def updateConfig(self):      def updateConfig(self):
# Line 184  class fraggleDialogPrefs(wxDialog): Line 194  class fraggleDialogPrefs(wxDialog):
194          event.Skip()          event.Skip()
195    
196      def OnButtonprofiledelButton(self, event):      def OnButtonprofiledelButton(self, event):
197          #self.parent.preferencesCtl.deleteProfile(self.comboBoxProfile.GetValue())          self.parent.preferencesCtl.deleteProfile(self.comboBoxProfile.GetValue())
198          #self.comboBoxProfile.Remove(self.comboBoxProfile.GetValue())          self.comboBoxProfile.Delete(self.comboBoxProfile.FindString(self.comboBoxProfile.GetValue()))
199            self.parent.preferencesCtl.saveProfiles()
200            self.updateConfig()
201          event.Skip()          event.Skip()
           
202    
203        def OnComboboxprofileCombobox(self, event):
204            event.Skip()
205    
206        def OnButtonTestButton(self, event):
207            #event.Skip()
208            if self.engine.authenticate(self.textCtrlServer.GetValue(), self.textCtrlUsername.GetValue(), self.textCtrlPassword.GetValue()):
209                wxMessageBox("Authentication successful!")
210            else:
211                wxMessageBox("Authentication failed!")

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.11

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