/[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.8 by xabbu, Wed Aug 25 23:46:05 2004 UTC revision 1.16 by joko, Mon Aug 30 13:06:40 2004 UTC
# Line 1  Line 1 
1  #Boa:MDIParent:fraggleViewport  #Boa:MDIParent:fraggleViewport
2    
3    # $Id$
4    # $Log$
5    # Revision 1.16  2004/08/30 13:06:40  joko
6    # U now gets preferences via self.engine
7    #
8    # Revision 1.15  2004/08/27 21:14:02  xabbu
9    # TopicDetails can now be closed.
10    # GUI change on Preferences Dialog in order to prepare multiple server profiles.
11    # Small bugfixes to get the new topic windows working on posix platform.
12    #
13    # Revision 1.14  2004/08/27 04:39:06  joko
14    # cleanup
15    #
16    # Revision 1.13  2004/08/27 03:25:44  joko
17    # added FraggleTaskBarMenu
18    #
19    # Revision 1.12  2004/08/27 00:05:22  joko
20    # fix for icon-path and wxTaskBarIcon-events
21    #
22    # Revision 1.11  2004/08/26 23:10:12  xabbu
23    # xmlrpc class added
24    #
25    # Revision 1.10  2004/08/26 18:19:27  joko
26    # now using FraggleTopicFrame
27    #
28    # Revision 1.9  2004/08/26 15:21:13  joko
29    # renamed namespaces
30    # added key shortcuts to menu-items
31    # correct "showAbout" code
32    #
33    
34  import os  import os
35  from wxPython.wx import *  from wxPython.wx import *
36    from wxPython.stc import *
37    
38    from fraggleConstants import *
39  import fraggleDialogPrefs  import fraggleDialogPrefs
40  import fraggleCtlPreferences  import FraggleAboutDialog
41  import fraggleDialogs  import FraggleTopicFrame
42    import FraggleXMLRPC
43    
44  def create(parent):  def create(parent):
45      return fraggleViewport(parent)      return fraggleViewport(parent)
# Line 15  def create(parent): Line 49  def create(parent):
49  [wxID_FRAGGLEVIEWPORTMENU1FPREFS, wxID_FRAGGLEVIEWPORTMENU1ITEMS1,  [wxID_FRAGGLEVIEWPORTMENU1FPREFS, wxID_FRAGGLEVIEWPORTMENU1ITEMS1,
50  ] = map(lambda _init_coll_menu1_Items: wxNewId(), range(2))  ] = map(lambda _init_coll_menu1_Items: wxNewId(), range(2))
51    
52  [wxID_FRAGGLEVIEWPORTMENU2CONT, wxID_FRAGGLEVIEWPORTMENU2ABOUT,  [wxID_FRAGGLEVIEWPORTMENU2ABOUT, wxID_FRAGGLEVIEWPORTMENU2CONT,
53  ] = map(lambda _init_coll_menu1_Items: wxNewId(), range(2))  ] = map(lambda _init_coll_menu2_Items: wxNewId(), range(2))
54    
55    [wxID_FRAGGLEVIEWPORTMENU2ABOUT, wxID_FRAGGLEVIEWPORTMENU2CONT,
56    ] = map(lambda _init_coll_menu2_Items: wxNewId(), range(2))
57    
58    [wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT,
59     wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE,
60     wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSSYNC,
61    ] = map(lambda _init_coll_FraggleTaskBarMenu_Items: wxNewId(), range(3))
62    
63  class fraggleViewport(wxMDIParentFrame):  class fraggleViewport(wxMDIParentFrame):
64        def _init_coll_FraggleTaskBarMenu_Items(self, parent):
65            # generated method, don't edit
66    
67            parent.Append(helpString='Restore',
68                  id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE,
69                  item='Restore', kind=wxITEM_NORMAL)
70            parent.Append(helpString='Sync enabled',
71                  id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSSYNC,
72                  item='Sync enabled', kind=wxITEM_CHECK)
73            parent.Append(helpString='Exit',
74                  id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, item='Exit',
75                  kind=wxITEM_NORMAL)
76    
77        def _init_coll_menu2_Items(self, parent):
78            # generated method, don't edit
79    
80            parent.Append(helpString='Contents', id=wxID_FRAGGLEVIEWPORTMENU2CONT,
81                  item='Contents', kind=wxITEM_NORMAL)
82            parent.Append(helpString='About', id=wxID_FRAGGLEVIEWPORTMENU2ABOUT,
83                  item='About', kind=wxITEM_NORMAL)
84    
85      def _init_coll_menu1_Items(self, parent):      def _init_coll_menu1_Items(self, parent):
86          # generated method, don't edit          # generated method, don't edit
87            
88          parent.Append(helpString='Configure Netfraggle',          parent.Append(helpString='Configure Netfraggle',
89                id=wxID_FRAGGLEVIEWPORTMENU1FPREFS, item='Preferences',                id=wxID_FRAGGLEVIEWPORTMENU1FPREFS, item='Preferences',
90                kind=wxITEM_NORMAL)                kind=wxITEM_NORMAL)
# Line 29  class fraggleViewport(wxMDIParentFrame): Line 92  class fraggleViewport(wxMDIParentFrame):
92                id=wxID_FRAGGLEVIEWPORTMENU1ITEMS1, item='Exit',                id=wxID_FRAGGLEVIEWPORTMENU1ITEMS1, item='Exit',
93                kind=wxITEM_NORMAL)                kind=wxITEM_NORMAL)
94    
         EVT_MENU(self, wxID_FRAGGLEVIEWPORTMENU1FPREFS, self.OnMenu1items0Menu)  
         EVT_MENU(self, wxID_FRAGGLEVIEWPORTMENU1ITEMS1, self.OnMenu1items1Menu)  
   
     def _init_coll_menu2_Items(self, parent):  
         # generated method, don't edit  
           
         parent.Append(helpString='Contents',  
               id=wxID_FRAGGLEVIEWPORTMENU2CONT, item='Contents',  
               kind=wxITEM_NORMAL)  
         parent.Append(helpString='About',  
               id=wxID_FRAGGLEVIEWPORTMENU2ABOUT, item='About',  
               kind=wxITEM_NORMAL)  
   
         EVT_MENU(self, wxID_FRAGGLEVIEWPORTMENU2CONT, self.OnMenu2items0Menu)  
         EVT_MENU(self, wxID_FRAGGLEVIEWPORTMENU2ABOUT, self.OnMenu2items1Menu)  
   
95      def _init_coll_menuBar1_Menus(self, parent):      def _init_coll_menuBar1_Menus(self, parent):
96          # generated method, don't edit          # generated method, don't edit
97    
98          parent.Append(menu=self.menu1, title='&File')          parent.Append(menu=self.menu1, title='&File')
99          parent.Append(menu=self.menu2, title='&help')          parent.Append(menu=self.menu2, title='&Help')
100    
101      def _init_utils(self):      def _init_utils(self):
102          # generated method, don't edit          # generated method, don't edit
# Line 58  class fraggleViewport(wxMDIParentFrame): Line 105  class fraggleViewport(wxMDIParentFrame):
105    
106          self.menu1 = wxMenu(title='')          self.menu1 = wxMenu(title='')
107          self._init_coll_menu1_Items(self.menu1)          self._init_coll_menu1_Items(self.menu1)
108    
109          self.menu2 = wxMenu(title='')          self.menu2 = wxMenu(title='')
110          self._init_coll_menu2_Items(self.menu2)          self._init_coll_menu2_Items(self.menu2)
111    
112            self.FraggleTaskBarMenu = wxMenu(title=u'NetFraggle')
113            self._init_coll_FraggleTaskBarMenu_Items(self.FraggleTaskBarMenu)
114    
115          self._init_coll_menuBar1_Menus(self.menuBar1)          self._init_coll_menuBar1_Menus(self.menuBar1)
116    
117      def _init_ctrls(self, prnt):      def _init_ctrls(self, prnt):
118          # generated method, don't edit          # generated method, don't edit
119          wxMDIParentFrame.__init__(self, id=wxID_FRAGGLEVIEWPORT,          wxMDIParentFrame.__init__(self, id=wxID_FRAGGLEVIEWPORT,
120                name='fraggleViewport', parent=prnt, pos=wxPoint(277, 313),                name='fraggleViewport', parent=prnt, pos=wxPoint(335, 382),
121                size=wxSize(683, 307),                size=wxSize(427, 269),
122                style=wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,                style=wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
123                title='wxMDIParentFrame1')                title='NetFraggle 0.0.1')
124          self._init_utils()          self._init_utils()
125          self.SetClientSize(wxSize(683, 284))          self.SetClientSize(wxSize(427, 246))
126          self.SetMenuBar(self.menuBar1)          self.SetMenuBar(self.menuBar1)
127    
128      def __init_preferences__(self):      def __init_preferences__(self):
129          self.preferencesCtl = fraggleCtlPreferences.create(self)          self.preferencesCtl = self.engine.preferences
130          self.dialogPrefs = fraggleDialogPrefs.create(self)          self.dialogPrefs = fraggleDialogPrefs.create(self)
131          self.dialogPrefs.loadConfig()          self.dialogPrefs.loadConfig()
132          self.dialogPrefs.updateConfig()          self.dialogPrefs.updateConfig()
133    
134            # new as of 2004-08-26: TopicFrame
135            # new as of 2004-08-27: pass configList to TopicFrame
136            self.topicFrame = FraggleTopicFrame.create(self)
137            self.topicFrame.Move(wxPoint(5, 5))
138            
139            #frame.Show()
140            #frame.Destroy()
141        def __init_xmlrpc__(self):
142            #self.xml_rpc = FraggleXMLRPC.create(self, self.preferencesCtl.configList)
143            pass
144                    
145        def __init_taskbar_icon__(self):
146            if os.name == 'posix':
147                pass
148            elif os.name == 'nt':
149                self.tbicon = wxTaskBarIcon()
150                #icon = wxIcon('mixxx.ico', wxBITMAP_TYPE_ICO)
151                icon = wxIcon(os.path.join(APPLOCATION, 'mixxx.ico'), wxBITMAP_TYPE_ICO)
152                self.tbicon.SetIcon(icon, '')
153                EVT_TASKBAR_LEFT_DCLICK(self.tbicon, self.OnTaskBarLeftDClick)
154                EVT_TASKBAR_RIGHT_UP(self.tbicon, self.OnTaskBarRightClick)
155                EVT_MENU(self.tbicon, wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE, self.OnTaskBarAppRestore)
156                EVT_MENU(self.tbicon, wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, self.OnTaskBarAppExit)
157                
158      def __init__(self, parent):      def __init__(self, parent):
159            import __main__
160            self.engine = __main__.engine
161          self._init_ctrls(parent)          self._init_ctrls(parent)
162          self.__init_preferences__()          self.__init_preferences__()
163            self.__init_taskbar_icon__()
164            self.__init_xmlrpc__()
165                    
   
166      def OnMenu1items0Menu(self, event):      def OnMenu1items0Menu(self, event):
167          try:          try:
168              self.dialogPrefs.ShowModal()              self.dialogPrefs.ShowModal()
169          finally:          finally:
170              pass              self.dialogPrefs.Hide()
171          event.Skip()          event.Skip()
172    
173      def OnMenu1items1Menu(self, event):      def OnMenu1items1Menu(self, event):
# Line 105  class fraggleViewport(wxMDIParentFrame): Line 183  class fraggleViewport(wxMDIParentFrame):
183          event.Skip()          event.Skip()
184    
185      def OnMenu2items1Menu(self, event):      def OnMenu2items1Menu(self, event):
186          #self.Destroy()          """Show about screen"""
187            dlg = FraggleAboutDialog.create(self)
188            dlg.ShowModal()
189            dlg.Destroy()
190    
191        def OnTaskBarLeftDClick(self, event):
192            #event.Skip()
193            #self.SetFocus()
194            if self.IsIconized():
195                self.Restore()
196            else:
197                self.Iconize()
198            
199        def OnTaskBarRightClick(self, event):
200            #event.Skip()
201            self.tbicon.PopupMenu(self.FraggleTaskBarMenu)
202            
203        def OnTaskBarAppRestore(self, event):
204            self.Restore()
205          #event.Skip()          #event.Skip()
         fraggleDialogs.AboutDialog()  
206    
207        def OnTaskBarAppExit(self, event):
208            #event.Skip()
209            #self.Destroy()
210            self.Close(True)
211            

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.16

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