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

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

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

revision 1.15 by xabbu, Fri Aug 27 21:14:02 2004 UTC revision 1.17 by xabbu, Wed Sep 1 21:43:30 2004 UTC
# Line 2  Line 2 
2    
3  # $Id$  # $Id$
4  # $Log$  # $Log$
5    # Revision 1.17  2004/09/01 21:43:30  xabbu
6    # +Moved funtion getDefaultDir from FraggleCtlPreferences to FraggleEngine for more convenience
7    # +FraggleCtlModules class creation for handling content modules
8    #
9    # Revision 1.16  2004/08/30 13:06:40  joko
10    # U now gets preferences via self.engine
11    #
12  # Revision 1.15  2004/08/27 21:14:02  xabbu  # Revision 1.15  2004/08/27 21:14:02  xabbu
13  # TopicDetails can now be closed.  # TopicDetails can now be closed.
14  # GUI change on Preferences Dialog in order to prepare multiple server profiles.  # GUI change on Preferences Dialog in order to prepare multiple server profiles.
# Line 34  from wxPython.stc import * Line 41  from wxPython.stc import *
41    
42  from fraggleConstants import *  from fraggleConstants import *
43  import fraggleDialogPrefs  import fraggleDialogPrefs
 import fraggleCtlPreferences  
44  import FraggleAboutDialog  import FraggleAboutDialog
45  import FraggleTopicFrame  import FraggleTopicFrame
46  import FraggleXMLRPC  import FraggleXMLRPC
# Line 123  class fraggleViewport(wxMDIParentFrame): Line 129  class fraggleViewport(wxMDIParentFrame):
129          self.SetClientSize(wxSize(427, 246))          self.SetClientSize(wxSize(427, 246))
130          self.SetMenuBar(self.menuBar1)          self.SetMenuBar(self.menuBar1)
131    
132        def __init_modules__(self):
133            self.modulesCtl = self.engine.modules
134            self.dialogModules = FraggleDialogModules.create(self)
135            
136      def __init_preferences__(self):      def __init_preferences__(self):
137          self.preferencesCtl = fraggleCtlPreferences.create(self)          self.preferencesCtl = self.engine.preferences
138          self.dialogPrefs = fraggleDialogPrefs.create(self)          self.dialogPrefs = fraggleDialogPrefs.create(self)
139          self.dialogPrefs.loadConfig()          self.dialogPrefs.loadConfig()
140          self.dialogPrefs.updateConfig()          self.dialogPrefs.updateConfig()
141    
142          # new as of 2004-08-26: TopicFrame          # new as of 2004-08-26: TopicFrame
143          # new as of 2004-08-27: pass configList to TopicFrame          # new as of 2004-08-27: pass configList to TopicFrame
144          self.topicFrame = FraggleTopicFrame.create(self, self.preferencesCtl.configList)          self.topicFrame = FraggleTopicFrame.create(self)
145          self.topicFrame.Move(wxPoint(5, 5))          self.topicFrame.Move(wxPoint(5, 5))
146                    
147          #frame.Show()          #frame.Show()
# Line 154  class fraggleViewport(wxMDIParentFrame): Line 164  class fraggleViewport(wxMDIParentFrame):
164              EVT_MENU(self.tbicon, wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, self.OnTaskBarAppExit)              EVT_MENU(self.tbicon, wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, self.OnTaskBarAppExit)
165                            
166      def __init__(self, parent):      def __init__(self, parent):
167            import __main__
168            self.engine = __main__.engine
169          self._init_ctrls(parent)          self._init_ctrls(parent)
170          self.__init_preferences__()          self.__init_preferences__()
171          self.__init_taskbar_icon__()          self.__init_taskbar_icon__()

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.17

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