2 |
|
|
3 |
# $Id$ |
# $Id$ |
4 |
# $Log$ |
# $Log$ |
5 |
|
# Revision 1.15 2004/08/27 21:14:02 xabbu |
6 |
|
# TopicDetails can now be closed. |
7 |
|
# GUI change on Preferences Dialog in order to prepare multiple server profiles. |
8 |
|
# Small bugfixes to get the new topic windows working on posix platform. |
9 |
|
# |
10 |
|
# Revision 1.14 2004/08/27 04:39:06 joko |
11 |
|
# cleanup |
12 |
|
# |
13 |
|
# Revision 1.13 2004/08/27 03:25:44 joko |
14 |
|
# added FraggleTaskBarMenu |
15 |
|
# |
16 |
|
# Revision 1.12 2004/08/27 00:05:22 joko |
17 |
|
# fix for icon-path and wxTaskBarIcon-events |
18 |
|
# |
19 |
# Revision 1.11 2004/08/26 23:10:12 xabbu |
# Revision 1.11 2004/08/26 23:10:12 xabbu |
20 |
# xmlrpc class added |
# xmlrpc class added |
21 |
# |
# |
32 |
from wxPython.wx import * |
from wxPython.wx import * |
33 |
from wxPython.stc import * |
from wxPython.stc import * |
34 |
|
|
35 |
|
from fraggleConstants import * |
36 |
import fraggleDialogPrefs |
import fraggleDialogPrefs |
37 |
import fraggleCtlPreferences |
import fraggleCtlPreferences |
38 |
import FraggleAboutDialog |
import FraggleAboutDialog |
42 |
def create(parent): |
def create(parent): |
43 |
return fraggleViewport(parent) |
return fraggleViewport(parent) |
44 |
|
|
45 |
[wxID_FRAGGLEVIEWPORT, wxID_FRAGGLEVIEWPORTBUTTONSYNC, |
[wxID_FRAGGLEVIEWPORT] = map(lambda _init_ctrls: wxNewId(), range(1)) |
|
wxID_FRAGGLEVIEWPORTSTYLEDTEXTCTRL1, |
|
|
] = map(lambda _init_ctrls: wxNewId(), range(3)) |
|
46 |
|
|
47 |
[wxID_FRAGGLEVIEWPORTMENU1FPREFS, wxID_FRAGGLEVIEWPORTMENU1ITEMS1, |
[wxID_FRAGGLEVIEWPORTMENU1FPREFS, wxID_FRAGGLEVIEWPORTMENU1ITEMS1, |
48 |
] = map(lambda _init_coll_menu1_Items: wxNewId(), range(2)) |
] = map(lambda _init_coll_menu1_Items: wxNewId(), range(2)) |
53 |
[wxID_FRAGGLEVIEWPORTMENU2ABOUT, wxID_FRAGGLEVIEWPORTMENU2CONT, |
[wxID_FRAGGLEVIEWPORTMENU2ABOUT, wxID_FRAGGLEVIEWPORTMENU2CONT, |
54 |
] = map(lambda _init_coll_menu2_Items: wxNewId(), range(2)) |
] = map(lambda _init_coll_menu2_Items: wxNewId(), range(2)) |
55 |
|
|
56 |
|
[wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, |
57 |
|
wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE, |
58 |
|
wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSSYNC, |
59 |
|
] = map(lambda _init_coll_FraggleTaskBarMenu_Items: wxNewId(), range(3)) |
60 |
|
|
61 |
class fraggleViewport(wxMDIParentFrame): |
class fraggleViewport(wxMDIParentFrame): |
62 |
|
def _init_coll_FraggleTaskBarMenu_Items(self, parent): |
63 |
|
# generated method, don't edit |
64 |
|
|
65 |
|
parent.Append(helpString='Restore', |
66 |
|
id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE, |
67 |
|
item='Restore', kind=wxITEM_NORMAL) |
68 |
|
parent.Append(helpString='Sync enabled', |
69 |
|
id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSSYNC, |
70 |
|
item='Sync enabled', kind=wxITEM_CHECK) |
71 |
|
parent.Append(helpString='Exit', |
72 |
|
id=wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, item='Exit', |
73 |
|
kind=wxITEM_NORMAL) |
74 |
|
|
75 |
def _init_coll_menu2_Items(self, parent): |
def _init_coll_menu2_Items(self, parent): |
76 |
# generated method, don't edit |
# generated method, don't edit |
77 |
|
|
107 |
self.menu2 = wxMenu(title='') |
self.menu2 = wxMenu(title='') |
108 |
self._init_coll_menu2_Items(self.menu2) |
self._init_coll_menu2_Items(self.menu2) |
109 |
|
|
110 |
|
self.FraggleTaskBarMenu = wxMenu(title=u'NetFraggle') |
111 |
|
self._init_coll_FraggleTaskBarMenu_Items(self.FraggleTaskBarMenu) |
112 |
|
|
113 |
self._init_coll_menuBar1_Menus(self.menuBar1) |
self._init_coll_menuBar1_Menus(self.menuBar1) |
114 |
|
|
115 |
def _init_ctrls(self, prnt): |
def _init_ctrls(self, prnt): |
116 |
# generated method, don't edit |
# generated method, don't edit |
117 |
wxMDIParentFrame.__init__(self, id=wxID_FRAGGLEVIEWPORT, |
wxMDIParentFrame.__init__(self, id=wxID_FRAGGLEVIEWPORT, |
118 |
name='fraggleViewport', parent=prnt, pos=wxPoint(525, 292), |
name='fraggleViewport', parent=prnt, pos=wxPoint(335, 382), |
119 |
size=wxSize(341, 296), |
size=wxSize(427, 269), |
120 |
style=wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, |
style=wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, |
121 |
title='NetFraggle 0.0.1') |
title='NetFraggle 0.0.1') |
122 |
self._init_utils() |
self._init_utils() |
123 |
self.SetClientSize(wxSize(341, 273)) |
self.SetClientSize(wxSize(427, 246)) |
124 |
self.SetMenuBar(self.menuBar1) |
self.SetMenuBar(self.menuBar1) |
125 |
|
|
|
self.buttonsync = wxButton(id=wxID_FRAGGLEVIEWPORTBUTTONSYNC, |
|
|
label='Sync', name='buttonsync', parent=self, pos=wxPoint(104, |
|
|
240), size=wxSize(136, 24), style=0) |
|
|
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) |
|
|
|
|
126 |
def __init_preferences__(self): |
def __init_preferences__(self): |
127 |
self.preferencesCtl = fraggleCtlPreferences.create(self) |
self.preferencesCtl = fraggleCtlPreferences.create(self) |
128 |
self.dialogPrefs = fraggleDialogPrefs.create(self) |
self.dialogPrefs = fraggleDialogPrefs.create(self) |
130 |
self.dialogPrefs.updateConfig() |
self.dialogPrefs.updateConfig() |
131 |
|
|
132 |
# new as of 2004-08-26: TopicFrame |
# new as of 2004-08-26: TopicFrame |
133 |
self.topicFrame = FraggleTopicFrame.create(self) |
# new as of 2004-08-27: pass configList to TopicFrame |
134 |
self.topicFrame.Move(wxPoint(10, 10)) |
self.topicFrame = FraggleTopicFrame.create(self, self.preferencesCtl.configList) |
135 |
|
self.topicFrame.Move(wxPoint(5, 5)) |
136 |
|
|
137 |
#frame.Show() |
#frame.Show() |
138 |
#frame.Destroy() |
#frame.Destroy() |
139 |
def __init_xmlrpc__(self): |
def __init_xmlrpc__(self): |
140 |
self.xml_rpc = FraggleXMLRPC.create(self, self.preferencesCtl.configList) |
#self.xml_rpc = FraggleXMLRPC.create(self, self.preferencesCtl.configList) |
141 |
|
pass |
142 |
|
|
143 |
def __init_taskbar_icon__(self): |
def __init_taskbar_icon__(self): |
144 |
if os.name == 'posix': |
if os.name == 'posix': |
145 |
pass |
pass |
146 |
elif os.name == 'nt': |
elif os.name == 'nt': |
147 |
self.tbicon = wxTaskBarIcon() |
self.tbicon = wxTaskBarIcon() |
148 |
icon = wxIcon('mixxx.ico', wxBITMAP_TYPE_ICO) |
#icon = wxIcon('mixxx.ico', wxBITMAP_TYPE_ICO) |
149 |
|
icon = wxIcon(os.path.join(APPLOCATION, 'mixxx.ico'), wxBITMAP_TYPE_ICO) |
150 |
self.tbicon.SetIcon(icon, '') |
self.tbicon.SetIcon(icon, '') |
151 |
wxEVT_TASKBAR_LEFT_DCLICK(self.tbicon, self.OnTaskBarLeftDClick) |
EVT_TASKBAR_LEFT_DCLICK(self.tbicon, self.OnTaskBarLeftDClick) |
152 |
wxEVT_TASKBAR_RIGHT_UP(self.tbicon, self.OnTaskBarRightClick) |
EVT_TASKBAR_RIGHT_UP(self.tbicon, self.OnTaskBarRightClick) |
153 |
|
EVT_MENU(self.tbicon, wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSRESTORE, self.OnTaskBarAppRestore) |
154 |
|
EVT_MENU(self.tbicon, wxID_FRAGGLEVIEWPORTFRAGGLETASKBARMENUITEMSEXIT, self.OnTaskBarAppExit) |
155 |
|
|
156 |
def __init__(self, parent): |
def __init__(self, parent): |
157 |
self._init_ctrls(parent) |
self._init_ctrls(parent) |
158 |
self.__init_preferences__() |
self.__init_preferences__() |
185 |
dlg.Destroy() |
dlg.Destroy() |
186 |
|
|
187 |
def OnTaskBarLeftDClick(self, event): |
def OnTaskBarLeftDClick(self, event): |
188 |
event.Skip() |
#event.Skip() |
189 |
|
#self.SetFocus() |
190 |
|
if self.IsIconized(): |
191 |
|
self.Restore() |
192 |
|
else: |
193 |
|
self.Iconize() |
194 |
|
|
195 |
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() |
|
196 |
|
#event.Skip() |
197 |
|
self.tbicon.PopupMenu(self.FraggleTaskBarMenu) |
198 |
|
|
199 |
|
def OnTaskBarAppRestore(self, event): |
200 |
|
self.Restore() |
201 |
|
#event.Skip() |
202 |
|
|
203 |
|
def OnTaskBarAppExit(self, event): |
204 |
|
#event.Skip() |
205 |
|
#self.Destroy() |
206 |
|
self.Close(True) |
207 |
|
|