Mercurial > libervia-backend
annotate frontends/wix/main_window.py @ 91:39c672544593
Tarot: bidding phase
- quick_app: command line is now parsed, "profile" option allow to select it
- xml_tools: list-single is now managed
- plugin tarot: method and signal to manage contract (contrat): tarotChooseContrat & tarotGameContratChoosed
- wix: Q&D Form hack to manage more generic form (not only registration), used to show contract selection form
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 27 May 2010 19:26:19 +0930 |
parents | 4020931569b8 |
children | 783e9d6980ec |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 wix: a SAT frontend | |
57 | 6 Copyright (C) 2009, 2010 Jérôme Poisson (goffi@goffi.org) |
0 | 7 |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
22 | |
70 | 23 from quick_frontend.quick_chat_list import QuickChatList |
24 from quick_frontend.quick_app import QuickApp | |
25 from quick_frontend.quick_contact_management import QuickContactManagement | |
0 | 26 import wx |
72 | 27 from contact_list import ContactList |
0 | 28 from chat import Chat |
29 from param import Param | |
35
c45deebb40a5
Wix: Registration form management (not finished yet)
Goffi <goffi@goffi.org>
parents:
33
diff
changeset
|
30 from form import Form |
28 | 31 from gateways import GatewaysManager |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
32 from profile import Profile |
68 | 33 from profile_manager import ProfileManager |
0 | 34 import gobject |
35 import os.path | |
36 import pdb | |
37 from tools.jid import JID | |
72 | 38 from logging import debug, info, warning, error |
39 import constants | |
0 | 40 |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
41 idCONNECT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
42 idDISCONNECT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
43 idEXIT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
44 idPARAM,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
45 idADD_CONTACT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
46 idREMOVE_CONTACT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
47 idSHOW_PROFILE,\ |
72 | 48 idJOIN_ROOM,\ |
49 idFIND_GATEWAYS = range(9) | |
0 | 50 |
51 class ChatList(QuickChatList): | |
52 """This class manage the list of chat windows""" | |
53 | |
54 def __init__(self, host): | |
55 QuickChatList.__init__(self, host) | |
56 | |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
57 def createChat(self, target): |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
58 return Chat(target, self.host) |
0 | 59 |
60 class MainWindow(wx.Frame, QuickApp): | |
61 """main app window""" | |
62 | |
63 def __init__(self): | |
68 | 64 wx.Frame.__init__(self,None, title="SàT Wix", size=(300,500)) |
56 | 65 self.CM = QuickContactManagement() #FIXME: not the best place |
0 | 66 |
68 | 67 #sizer |
68 self.sizer = wx.BoxSizer(wx.VERTICAL) | |
69 self.SetSizer(self.sizer) | |
70 | |
0 | 71 #Frame elements |
72 | 72 self.contactList = ContactList(self, self) |
0 | 73 self.contactList.registerActivatedCB(self.onContactActivated) |
68 | 74 self.contactList.Hide() |
75 self.sizer.Add(self.contactList, 1, flag=wx.EXPAND) | |
76 | |
0 | 77 self.chat_wins=ChatList(self) |
78 self.CreateStatusBar() | |
79 self.createMenus() | |
68 | 80 for i in range(self.menuBar.GetMenuCount()): |
81 self.menuBar.EnableTop(i, False) | |
0 | 82 |
83 #ToolBar | |
84 self.tools=self.CreateToolBar() | |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
85 self.statusBox = wx.ComboBox(self.tools, -1, "Online", choices=[status[1] for status in const_STATUS], |
0 | 86 style=wx.CB_DROPDOWN | wx.CB_READONLY) |
87 self.tools.AddControl(self.statusBox) | |
88 self.tools.AddSeparator() | |
89 self.statusTxt=wx.TextCtrl(self.tools, -1, style = wx.TE_PROCESS_ENTER) | |
90 self.tools.AddControl(self.statusTxt) | |
91 self.Bind(wx.EVT_COMBOBOX, self.onStatusChange, self.statusBox) | |
92 self.Bind(wx.EVT_TEXT_ENTER, self.onStatusChange, self.statusTxt) | |
93 self.tools.Disable() | |
11 | 94 |
95 #tray icon | |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
96 ticon = wx.Icon(IMAGE_DIR+'/crystal/tray_icon.xpm', wx.BITMAP_TYPE_XPM) |
11 | 97 self.tray_icon = wx.TaskBarIcon() |
70 | 98 self.tray_icon.SetIcon(ticon, _("Wix jabber client")) |
11 | 99 wx.EVT_TASKBAR_LEFT_UP(self.tray_icon, self.onTrayClick) |
100 | |
0 | 101 |
102 #events | |
103 self.Bind(wx.EVT_CLOSE, self.onClose, self) | |
104 | |
105 QuickApp.__init__(self) | |
68 | 106 #self.plug_profile() #gof: |
107 | |
108 #profile panel | |
109 self.profile_pan = ProfileManager(self) | |
110 #self.profile_pan.Hide() #gof: | |
111 self.sizer.Add(self.profile_pan, 1, flag=wx.EXPAND) | |
91 | 112 if self.options.profile: #TODO: move this to quick_app |
113 self.plug_profile(self.options.profile) | |
114 | |
81 | 115 |
0 | 116 self.Show() |
117 | |
68 | 118 def plug_profile(self, profile_key='@DEFAULT@'): |
119 """Hide profile panel then plug profile""" | |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
120 debug (_('plugin profile %s' % profile_key)) |
68 | 121 self.profile_pan.Hide() |
122 self.contactList.Show() | |
123 self.sizer.Layout() | |
124 for i in range(self.menuBar.GetMenuCount()): | |
125 self.menuBar.EnableTop(i, True) | |
126 super(MainWindow, self).plug_profile(profile_key) | |
127 if not self.bridge.isConnected(profile_key): | |
128 self.bridge.connect(profile_key) | |
129 | |
0 | 130 def createMenus(self): |
70 | 131 info(_("Creating menus")) |
0 | 132 connectMenu = wx.Menu() |
70 | 133 connectMenu.Append(idCONNECT, _("&Connect CTRL-c"),_(" Connect to the server")) |
134 connectMenu.Append(idDISCONNECT, _("&Disconnect CTRL-d"),_(" Disconnect from the server")) | |
135 connectMenu.Append(idPARAM,_("&Parameters"),_(" Configure the program")) | |
0 | 136 connectMenu.AppendSeparator() |
70 | 137 connectMenu.Append(idEXIT,_("E&xit"),_(" Terminate the program")) |
0 | 138 contactMenu = wx.Menu() |
70 | 139 contactMenu.Append(idADD_CONTACT, _("&Add contact"),_(" Add a contact to your list")) |
140 contactMenu.Append(idREMOVE_CONTACT, _("&Remove contact"),_(" Remove the selected contact from your list")) | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
141 contactMenu.AppendSeparator() |
70 | 142 contactMenu.Append(idSHOW_PROFILE, _("&Show profile"), _(" Show contact's profile")) |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
143 communicationMenu = wx.Menu() |
72 | 144 communicationMenu.Append(idJOIN_ROOM, _("&Join Room"),_(" Join a Multi-User Chat room")) |
70 | 145 communicationMenu.Append(idFIND_GATEWAYS, _("&Find Gateways"),_(" Find gateways to legacy IM")) |
68 | 146 self.menuBar = wx.MenuBar() |
70 | 147 self.menuBar.Append(connectMenu,_("&General")) |
148 self.menuBar.Append(contactMenu,_("&Contacts")) | |
149 self.menuBar.Append(communicationMenu,_("&Communication")) | |
68 | 150 self.SetMenuBar(self.menuBar) |
0 | 151 |
152 #events | |
153 wx.EVT_MENU(self, idCONNECT, self.onConnectRequest) | |
1 | 154 wx.EVT_MENU(self, idDISCONNECT, self.onDisconnectRequest) |
0 | 155 wx.EVT_MENU(self, idPARAM, self.onParam) |
156 wx.EVT_MENU(self, idEXIT, self.onExit) | |
157 wx.EVT_MENU(self, idADD_CONTACT, self.onAddContact) | |
158 wx.EVT_MENU(self, idREMOVE_CONTACT, self.onRemoveContact) | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
159 wx.EVT_MENU(self, idSHOW_PROFILE, self.onShowProfile) |
72 | 160 wx.EVT_MENU(self, idJOIN_ROOM, self.onJoinRoom) |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
161 wx.EVT_MENU(self, idFIND_GATEWAYS, self.onFindGateways) |
0 | 162 |
163 | |
67
0e50dd3a234a
message sending bug fixes + sortilege update
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
164 def newMessage(self, from_jid, msg, type, to_jid, profile): |
0e50dd3a234a
message sending bug fixes + sortilege update
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
165 QuickApp.newMessage(self, from_jid, msg, type, to_jid, profile) |
0 | 166 |
72 | 167 def roomJoined(self, room_id, room_service, room_nicks, user_nick, profile): |
168 super(MainWindow, self).roomJoined(room_id, room_service, room_nicks, user_nick, profile) | |
169 | |
0 | 170 def showAlert(self, message): |
171 # TODO: place this in a separate class | |
172 popup=wx.PopupWindow(self) | |
173 ### following code come from wxpython demo | |
174 popup.SetBackgroundColour("CADET BLUE") | |
175 st = wx.StaticText(popup, -1, message, pos=(10,10)) | |
176 sz = st.GetBestSize() | |
177 popup.SetSize( (sz.width+20, sz.height+20) ) | |
178 x=(wx.DisplaySize()[0]-popup.GetSize()[0])/2 | |
179 popup.SetPosition((x,0)) | |
180 popup.Show() | |
181 wx.CallLater(5000,popup.Destroy) | |
182 | |
183 def showDialog(self, message, title="", type="info"): | |
184 if type == 'info': | |
185 flags = wx.OK | wx.ICON_INFORMATION | |
186 elif type == 'error': | |
187 flags = wx.OK | wx.ICON_ERROR | |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
188 elif type == 'yes/no': |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
189 flags = wx.YES_NO | wx.ICON_QUESTION |
0 | 190 else: |
191 flags = wx.OK | wx.ICON_INFORMATION | |
70 | 192 error(_('unmanaged dialog type: %s'), type) |
0 | 193 dlg = wx.MessageDialog(self, message, title, flags) |
194 answer = dlg.ShowModal() | |
195 dlg.Destroy() | |
196 return True if (answer == wx.ID_YES or answer == wx.ID_OK) else False | |
197 | |
198 def setStatusOnline(self, online=True): | |
199 """enable/disable controls, must be called when local user online status change""" | |
200 if online: | |
201 self.SetStatusText(msgONLINE) | |
202 self.tools.Enable() | |
203 else: | |
204 self.SetStatusText(msgOFFLINE) | |
205 self.tools.Disable() | |
206 return | |
207 | |
208 def askConfirmation(self, type, id, data): | |
209 #TODO: refactor this in QuickApp | |
70 | 210 debug (_("Confirmation asked")) |
0 | 211 answer_data={} |
212 if type == "FILE_TRANSFERT": | |
70 | 213 debug (_("File transfert confirmation asked")) |
214 dlg = wx.MessageDialog(self, _("The contact %(jid)s wants to send you the file %(filename)s\nDo you accept ?") % {'jid':data["from"], 'filename':data["filename"]}, | |
215 _('File Request'), | |
0 | 216 wx.YES_NO | wx.ICON_QUESTION |
217 ) | |
218 answer=dlg.ShowModal() | |
219 if answer==wx.ID_YES: | |
70 | 220 filename = wx.FileSelector(_("Where do you want to save the file ?"), flags = wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT) |
0 | 221 if filename: |
222 answer_data["dest_path"] = filename | |
223 self.bridge.confirmationAnswer(id, True, answer_data) | |
70 | 224 self.waitProgress(id, _("File Transfer"), _("Copying %s") % os.path.basename(filename)) |
0 | 225 else: |
226 answer = wx.ID_NO | |
227 if answer==wx.ID_NO: | |
228 self.bridge.confirmationAnswer(id, False, answer_data) | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
229 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
230 dlg.Destroy() |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
231 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
232 elif type == "YES/NO": |
70 | 233 debug (_("Yes/No confirmation asked")) |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
234 dlg = wx.MessageDialog(self, data["message"], |
70 | 235 _('Confirmation'), |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
236 wx.YES_NO | wx.ICON_QUESTION |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
237 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
238 answer=dlg.ShowModal() |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
239 if answer==wx.ID_YES: |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
240 self.bridge.confirmationAnswer(id, True, {}) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
241 if answer==wx.ID_NO: |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
242 self.bridge.confirmationAnswer(id, False, {}) |
0 | 243 |
244 dlg.Destroy() | |
245 | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
246 def actionResult(self, type, id, data): |
70 | 247 debug (_("actionResult: type = [%(type)s] id = [%(id)s] data = [%(data)s]") % {'type':type, 'id':id, 'data':data}) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
248 if not id in self.current_action_ids: |
70 | 249 debug (_('unknown id, ignoring')) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
250 return |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
251 if type == "SUPPRESS": |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
252 self.current_action_ids.remove(id) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
253 elif type == "SUCCESS": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
254 self.current_action_ids.remove(id) |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
255 dlg = wx.MessageDialog(self, data["message"], |
70 | 256 _('Success'), |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
257 wx.OK | wx.ICON_INFORMATION |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
258 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
259 dlg.ShowModal() |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
260 dlg.Destroy() |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
261 elif type == "ERROR": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
262 self.current_action_ids.remove(id) |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
263 dlg = wx.MessageDialog(self, data["message"], |
70 | 264 _('Error'), |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
265 wx.OK | wx.ICON_ERROR |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
266 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
267 dlg.ShowModal() |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
268 dlg.Destroy() |
33
b9bb5d8e0cc7
In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents:
28
diff
changeset
|
269 elif type == "FORM": |
b9bb5d8e0cc7
In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents:
28
diff
changeset
|
270 self.current_action_ids.remove(id) |
70 | 271 debug (_("Form received")) |
91 | 272 misc = {} |
273 #FIXME FIXME FIXME: must clean all this crap ! | |
274 title = _('Form') | |
275 if data['type'] == _('registration'): | |
276 title = 'Registration' | |
277 misc['target'] = data['target'] | |
278 misc['action_back'] = self.bridge.gatewayRegister | |
279 form=Form(self, title=title, xml_data = data['xml'], misc = misc) | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
280 elif type == "RESULT": |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
281 self.current_action_ids.remove(id) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
282 if self.current_action_ids_cb.has_key(id): |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
283 callback = self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
284 del self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
285 callback(data) |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
286 elif type == "DICT_DICT": |
28 | 287 self.current_action_ids.remove(id) |
288 if self.current_action_ids_cb.has_key(id): | |
289 callback = self.current_action_ids_cb[id] | |
290 del self.current_action_ids_cb[id] | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
291 callback(data) |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
292 else: |
70 | 293 error (_("FIXME FIXME FIXME: type [%s] not implemented") % type) |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
294 raise NotImplementedError |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
295 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
296 |
0 | 297 |
298 def progressCB(self, id, title, message): | |
299 data = self.bridge.getProgress(id) | |
300 if data: | |
301 if not data['position']: | |
302 data['position'] = '0' | |
303 if not self.pbar: | |
304 #first answer, we must construct the bar | |
305 self.pbar = wx.ProgressDialog(title, message, int(data['size']), None, | |
306 wx.PD_SMOOTH | wx.PD_ELAPSED_TIME | wx.PD_ESTIMATED_TIME | wx.PD_REMAINING_TIME) | |
307 self.pbar.finish_value = int(data['size']) | |
308 | |
309 self.pbar.Update(int(data['position'])) | |
310 elif self.pbar: | |
311 self.pbar.Update(self.pbar.finish_value) | |
312 return | |
313 | |
314 wx.CallLater(10, self.progressCB, id, title, message) | |
315 | |
316 def waitProgress (self, id, title, message): | |
317 self.pbar = None | |
318 wx.CallLater(10, self.progressCB, id, title, message) | |
319 | |
320 | |
321 | |
322 ### events ### | |
323 | |
324 def onContactActivated(self, jid): | |
70 | 325 debug (_("onContactActivated: %s"), jid) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
326 if self.chat_wins[jid.short].IsShown(): |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
327 self.chat_wins[jid.short].Hide() |
0 | 328 else: |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
329 self.chat_wins[jid.short].Show() |
0 | 330 |
331 def onConnectRequest(self, e): | |
68 | 332 self.bridge.connect(self.profile) |
0 | 333 |
1 | 334 def onDisconnectRequest(self, e): |
68 | 335 self.bridge.disconnect(self.profile) |
1 | 336 |
0 | 337 def __updateStatus(self): |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
338 show = filter(lambda x:x[1] == self.statusBox.GetValue(), const_STATUS)[0][0] |
0 | 339 status = self.statusTxt.GetValue() |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
340 self.bridge.setPresence(show=show, statuses={'default':status}, profile_key=self.profile) #FIXME: manage multilingual statuses |
0 | 341 |
342 def onStatusChange(self, e): | |
70 | 343 debug(_("Status change request")) |
0 | 344 self.__updateStatus() |
345 | |
346 def onParam(self, e): | |
70 | 347 debug(_("Param request")) |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
348 param=Param(self) |
0 | 349 |
350 def onExit(self, e): | |
351 self.Close() | |
352 | |
353 def onAddContact(self, e): | |
70 | 354 debug(_("Add contact request")) |
0 | 355 dlg = wx.TextEntryDialog( |
70 | 356 self, _('Please enter new contact JID'), |
357 _('Adding a contact'), _('name@server.tld')) | |
0 | 358 |
359 if dlg.ShowModal() == wx.ID_OK: | |
360 jid=JID(dlg.GetValue()) | |
361 if jid.is_valid(): | |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
362 self.bridge.addContact(jid.short, profile_key=self.profile) |
0 | 363 else: |
70 | 364 error (_("'%s' is an invalid JID !"), jid) |
0 | 365 #TODO: notice the user |
366 | |
367 dlg.Destroy() | |
368 | |
369 def onRemoveContact(self, e): | |
70 | 370 debug(_("Remove contact request")) |
0 | 371 target = self.contactList.getSelection() |
372 if not target: | |
70 | 373 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
374 _('Error'), | |
0 | 375 wx.OK | wx.ICON_ERROR |
376 ) | |
377 dlg.ShowModal() | |
378 dlg.Destroy() | |
379 return | |
380 | |
70 | 381 dlg = wx.MessageDialog(self, _("Are you sure you want to delete %s from your roster list ?") % target.short, |
382 _('Contact suppression'), | |
0 | 383 wx.YES_NO | wx.ICON_QUESTION |
384 ) | |
385 | |
386 if dlg.ShowModal() == wx.ID_YES: | |
70 | 387 info(_("Unsubscribing %s presence"), target.short) |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
388 self.bridge.delContact(target.short, profile_key=self.profile) |
0 | 389 |
390 dlg.Destroy() | |
391 | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
392 def onShowProfile(self, e): |
70 | 393 debug(_("Show contact's profile request")) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
394 target = self.contactList.getSelection() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
395 if not target: |
70 | 396 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
397 _('Error'), | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
398 wx.OK | wx.ICON_ERROR |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
399 ) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
400 dlg.ShowModal() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
401 dlg.Destroy() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
402 return |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
403 id = self.bridge.getCard(target.short, profile_key=self.profile) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
404 self.current_action_ids.add(id) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
405 self.current_action_ids_cb[id] = self.onProfileReceived |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
406 |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
407 def onProfileReceived(self, data): |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
408 """Called when a profile is received""" |
70 | 409 debug (_('Profile received: [%s]') % data) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
410 profile=Profile(self, data) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
411 |
72 | 412 def onJoinRoom(self, e): |
413 warning('FIXME: temporary menu, must be improved') | |
80
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
414 #TODO: a proper MUC room joining dialog with nickname etc |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
415 dlg = wx.TextEntryDialog( |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
416 self, _("Please enter MUC's JID"), |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
417 _('Entering a MUC room'), _('test@conference.necton2.int')) |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
418 #_('Entering a MUC room'), _('room@muc_service.server.tld')) |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
419 if dlg.ShowModal() == wx.ID_OK: |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
420 room_jid=JID(dlg.GetValue()) |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
421 if room_jid.is_valid(): |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
422 self.bridge.joinMUC(room_jid.domain, room_jid.node, self.profiles[self.profile]['whoami'].node, self.profile) |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
423 else: |
9681f18d06bd
wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents:
75
diff
changeset
|
424 error (_("'%s' is an invalid JID !"), room_jid) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
425 |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
426 def onFindGateways(self, e): |
70 | 427 debug(_("Find Gateways request")) |
66
8147b4f40809
SàT: multi-profile: DBus signals and frontend adaptation (first draft)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
428 id = self.bridge.findGateways(self.profiles[self.profile]['whoami'].domain) |
28 | 429 self.current_action_ids.add(id) |
430 self.current_action_ids_cb[id] = self.onGatewaysFound | |
431 | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
432 def onGatewaysFound(self, data): |
28 | 433 """Called when SàT has found the server gateways""" |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
434 target = data['__private__']['target'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
435 del data['__private__'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
436 gatewayManager = GatewaysManager(self, data, server=target) |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
437 |
0 | 438 def onClose(self, e): |
70 | 439 info(_("Exiting...")) |
0 | 440 e.Skip() |
11 | 441 |
442 def onTrayClick(self, e): | |
70 | 443 debug(_("Tray Click")) |
11 | 444 if self.IsShown(): |
445 self.Hide() | |
446 else: | |
447 self.Show() | |
448 self.Raise() | |
449 e.Skip() | |
0 | 450 |