/[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.11 by xabbu, Thu Aug 26 23:10:12 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
13    # TopicDetails can now be closed.
14    # GUI change on Preferences Dialog in order to prepare multiple server profiles.
15    # Small bugfixes to get the new topic windows working on posix platform.
16    #
17    # Revision 1.14  2004/08/27 04:39:06  joko
18    # cleanup
19    #
20    # Revision 1.13  2004/08/27 03:25:44  joko
21    # added FraggleTaskBarMenu
22    #
23    # Revision 1.12  2004/08/27 00:05:22  joko
24    # fix for icon-path and wxTaskBarIcon-events
25    #
26  # Revision 1.11  2004/08/26 23:10:12  xabbu  # Revision 1.11  2004/08/26 23:10:12  xabbu
27  # xmlrpc class added  # xmlrpc class added
28  #  #
# Line 18  import os Line 39  import os
39  from wxPython.wx import *  from wxPython.wx import *
40  from wxPython.stc import *  from wxPython.stc import *
41    
42    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 27  import FraggleXMLRPC Line 48  import FraggleXMLRPC
48  def create(parent):  def create(parent):
49      return fraggleViewport(parent)      return fraggleViewport(parent)
50    
51  [wxID_FRAGGLEVIEWPORT, wxID_FRAGGLEVIEWPORTBUTTONSYNC,  [wxID_FRAGGLEVIEWPORT] = map(lambda _init_ctrls: wxNewId(), range(1))
  wxID_FRAGGLEVIEWPORTSTYLEDTEXTCTRL1,  
 ] = map(lambda _init_ctrls: wxNewId(), range(3))  
52    
53  [wxID_FRAGGLEVIEWPORTMENU1FPREFS, wxID_FRAGGLEVIEWPORTMENU1ITEMS1,  [wxID_FRAGGLEVIEWPORTMENU1FPREFS, wxID_FRAGGLEVIEWPORTMENU1ITEMS1,
54  ] = map(lambda _init_coll_menu1_Items: wxNewId(), range(2))  ] = map(lambda _init_coll_menu1_Items: wxNewId(), range(2))
# Line 40  def create(parent): Line 59  def create(parent):
59  [wxID_FRAGGLEVIEWPORTMENU2ABOUT, wxID_FRAGGLEVIEWPORTMENU2CONT,  [wxID_FRAGGLEVIEWPORTMENU2ABOUT, wxID_FRAGGLEVIEWPORTMENU2CONT,
60  ] = map(lambda _init_coll_menu2_Items: wxNewId(), range(2))  ] = map(lambda _init_coll_menu2_Items: wxNewId(), range(2))
61    
62    [wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT,
63     wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE,
64     wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSSYNC,
65    ] = map(lambda _init_coll_FraggleTaskBarMenu_Items: wxNewId(), range(3))
66    
67  class fraggleViewport(wxMDIParentFrame):  class fraggleViewport(wxMDIParentFrame):
68        def _init_coll_FraggleTaskBarMenu_Items(self, parent):
69            # generated method, don't edit
70    
71            parent.Append(helpString='Restore',
72                  id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE,
73                  item='Restore', kind=wxITEM_NORMAL)
74            parent.Append(helpString='Sync enabled',
75                  id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSSYNC,
76                  item='Sync enabled', kind=wxITEM_CHECK)
77            parent.Append(helpString='Exit',
78                  id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, item='Exit',
79                  kind=wxITEM_NORMAL)
80    
81      def _init_coll_menu2_Items(self, parent):      def _init_coll_menu2_Items(self, parent):
82          # generated method, don't edit          # generated method, don't edit
83    
# Line 76  class fraggleViewport(wxMDIParentFrame): Line 113  class fraggleViewport(wxMDIParentFrame):
113          self.menu2 = wxMenu(title='')          self.menu2 = wxMenu(title='')
114          self._init_coll_menu2_Items(self.menu2)          self._init_coll_menu2_Items(self.menu2)
115    
116            self.FraggleTaskBarMenu = wxMenu(title=u'NetFraggle')
117            self._init_coll_FraggleTaskBarMenu_Items(self.FraggleTaskBarMenu)
118    
119          self._init_coll_menuBar1_Menus(self.menuBar1)          self._init_coll_menuBar1_Menus(self.menuBar1)
120    
121      def _init_ctrls(self, prnt):      def _init_ctrls(self, prnt):
122          # generated method, don't edit          # generated method, don't edit
123          wxMDIParentFrame.__init__(self, id=wxID_FRAGGLEVIEWPORT,          wxMDIParentFrame.__init__(self, id=wxID_FRAGGLEVIEWPORT,
124                name='fraggleViewport', parent=prnt, pos=wxPoint(525, 292),                name='fraggleViewport', parent=prnt, pos=wxPoint(335, 382),
125                size=wxSize(341, 296),                size=wxSize(427, 269),
126                style=wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,                style=wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
127                title='NetFraggle 0.0.1')                title='NetFraggle 0.0.1')
128          self._init_utils()          self._init_utils()
129          self.SetClientSize(wxSize(341, 273))          self.SetClientSize(wxSize(427, 246))
130          self.SetMenuBar(self.menuBar1)          self.SetMenuBar(self.menuBar1)
131    
132          self.buttonsync = wxButton(id=wxID_FRAGGLEVIEWPORTBUTTONSYNC,      def __init_modules__(self):
133                label='Sync', name='buttonsync', parent=self, pos=wxPoint(104,          self.modulesCtl = self.engine.modules
134                240), size=wxSize(136, 24), style=0)          self.dialogModules = FraggleDialogModules.create(self)
135          EVT_BUTTON(self.buttonsync, wxID_FRAGGLEVIEWPORTBUTTONSYNC,          
               self.OnButtonsyncButton)  
   
         self.styledTextCtrl1 = wxStyledTextCtrl(id=wxID_FRAGGLEVIEWPORTSTYLEDTEXTCTRL1,  
               name='styledTextCtrl1', parent=self, pos=wxPoint(8, 16),  
               size=wxSize(328, 216), style=0)  
   
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
144          self.topicFrame = FraggleTopicFrame.create(self)          self.topicFrame = FraggleTopicFrame.create(self)
145          self.topicFrame.Move(wxPoint(10, 10))          self.topicFrame.Move(wxPoint(5, 5))
146                    
147          #frame.Show()          #frame.Show()
148          #frame.Destroy()          #frame.Destroy()
149      def __init_xmlrpc__(self):      def __init_xmlrpc__(self):
150          self.xml_rpc = FraggleXMLRPC.create(self, self.preferencesCtl.configList)          #self.xml_rpc = FraggleXMLRPC.create(self, self.preferencesCtl.configList)
151            pass
152                    
153      def __init_taskbar_icon__(self):      def __init_taskbar_icon__(self):
154          if os.name == 'posix':          if os.name == 'posix':
155              pass              pass
156          elif os.name == 'nt':          elif os.name == 'nt':
157              self.tbicon = wxTaskBarIcon()              self.tbicon = wxTaskBarIcon()
158              icon = wxIcon('mixxx.ico', wxBITMAP_TYPE_ICO)              #icon = wxIcon('mixxx.ico', wxBITMAP_TYPE_ICO)
159                icon = wxIcon(os.path.join(APPLOCATION, 'mixxx.ico'), wxBITMAP_TYPE_ICO)
160              self.tbicon.SetIcon(icon, '')              self.tbicon.SetIcon(icon, '')
161              wxEVT_TASKBAR_LEFT_DCLICK(self.tbicon, self.OnTaskBarLeftDClick)              EVT_TASKBAR_LEFT_DCLICK(self.tbicon, self.OnTaskBarLeftDClick)
162              wxEVT_TASKBAR_RIGHT_UP(self.tbicon, self.OnTaskBarRightClick)              EVT_TASKBAR_RIGHT_UP(self.tbicon, self.OnTaskBarRightClick)
163                    EVT_MENU(self.tbicon, wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE, self.OnTaskBarAppRestore)
164                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__()
# Line 156  class fraggleViewport(wxMDIParentFrame): Line 197  class fraggleViewport(wxMDIParentFrame):
197          dlg.Destroy()          dlg.Destroy()
198    
199      def OnTaskBarLeftDClick(self, event):      def OnTaskBarLeftDClick(self, event):
200          event.Skip()          #event.Skip()
201            #self.SetFocus()
202            if self.IsIconized():
203                self.Restore()
204            else:
205                self.Iconize()
206                    
207      def OnTaskBarRightClick(self, event):      def OnTaskBarRightClick(self, event):
         event.Skip()  
   
     def OnButtonsyncButton(self, event):  
         fragglexml = self.xml_rpc.FraggleSync()  
         print fragglexml  
         import codecs  
         (UTF8_encode, UTF8_decode,  
             UTF8_streamreader, UTF8_streamwriter) = codecs.lookup('UTF-8')          
         text = UTF8_decode(repr(fragglexml))[0]  
         text = fragglexml.data  
         self.styledTextCtrl1.AddText(text)  
         event.Skip()  
208            #event.Skip()
209            self.tbicon.PopupMenu(self.FraggleTaskBarMenu)
210            
211        def OnTaskBarAppRestore(self, event):
212            self.Restore()
213            #event.Skip()
214    
215        def OnTaskBarAppExit(self, event):
216            #event.Skip()
217            #self.Destroy()
218            self.Close(True)
219            

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

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