Mercurial > libervia-backend
annotate frontends/wix/main_window.py @ 182:556c2bd7c344
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 18 Aug 2010 12:45:48 +0800 |
parents | fdb961f27ae9 |
children | 9ee4a1d0d7fb |
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 | |
103 | 30 from xmlui import XMLUI |
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 | |
80 #ToolBar | |
81 self.tools=self.CreateToolBar() | |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
82 self.statusBox = wx.ComboBox(self.tools, -1, "Online", choices=[status[1] for status in const_STATUS], |
0 | 83 style=wx.CB_DROPDOWN | wx.CB_READONLY) |
84 self.tools.AddControl(self.statusBox) | |
85 self.tools.AddSeparator() | |
86 self.statusTxt=wx.TextCtrl(self.tools, -1, style = wx.TE_PROCESS_ENTER) | |
87 self.tools.AddControl(self.statusTxt) | |
88 self.Bind(wx.EVT_COMBOBOX, self.onStatusChange, self.statusBox) | |
89 self.Bind(wx.EVT_TEXT_ENTER, self.onStatusChange, self.statusTxt) | |
90 self.tools.Disable() | |
11 | 91 |
92 #tray icon | |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
93 ticon = wx.Icon(IMAGE_DIR+'/crystal/tray_icon.xpm', wx.BITMAP_TYPE_XPM) |
11 | 94 self.tray_icon = wx.TaskBarIcon() |
70 | 95 self.tray_icon.SetIcon(ticon, _("Wix jabber client")) |
11 | 96 wx.EVT_TASKBAR_LEFT_UP(self.tray_icon, self.onTrayClick) |
97 | |
0 | 98 |
99 #events | |
100 self.Bind(wx.EVT_CLOSE, self.onClose, self) | |
101 | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
105
diff
changeset
|
102 |
0 | 103 QuickApp.__init__(self) |
68 | 104 |
101 | 105 #menus |
106 self.createMenus() | |
107 for i in range(self.menuBar.GetMenuCount()): | |
108 self.menuBar.EnableTop(i, False) | |
109 | |
68 | 110 #profile panel |
111 self.profile_pan = ProfileManager(self) | |
112 #self.profile_pan.Hide() #gof: | |
113 self.sizer.Add(self.profile_pan, 1, flag=wx.EXPAND) | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
105
diff
changeset
|
114 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
105
diff
changeset
|
115 self.postInit() |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
105
diff
changeset
|
116 |
0 | 117 self.Show() |
118 | |
68 | 119 def plug_profile(self, profile_key='@DEFAULT@'): |
120 """Hide profile panel then plug profile""" | |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
121 debug (_('plugin profile %s' % profile_key)) |
68 | 122 self.profile_pan.Hide() |
123 self.contactList.Show() | |
124 self.sizer.Layout() | |
125 for i in range(self.menuBar.GetMenuCount()): | |
126 self.menuBar.EnableTop(i, True) | |
127 super(MainWindow, self).plug_profile(profile_key) | |
128 if not self.bridge.isConnected(profile_key): | |
129 self.bridge.connect(profile_key) | |
130 | |
0 | 131 def createMenus(self): |
70 | 132 info(_("Creating menus")) |
0 | 133 connectMenu = wx.Menu() |
70 | 134 connectMenu.Append(idCONNECT, _("&Connect CTRL-c"),_(" Connect to the server")) |
135 connectMenu.Append(idDISCONNECT, _("&Disconnect CTRL-d"),_(" Disconnect from the server")) | |
136 connectMenu.Append(idPARAM,_("&Parameters"),_(" Configure the program")) | |
0 | 137 connectMenu.AppendSeparator() |
70 | 138 connectMenu.Append(idEXIT,_("E&xit"),_(" Terminate the program")) |
0 | 139 contactMenu = wx.Menu() |
70 | 140 contactMenu.Append(idADD_CONTACT, _("&Add contact"),_(" Add a contact to your list")) |
141 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
|
142 contactMenu.AppendSeparator() |
70 | 143 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
|
144 communicationMenu = wx.Menu() |
72 | 145 communicationMenu.Append(idJOIN_ROOM, _("&Join Room"),_(" Join a Multi-User Chat room")) |
70 | 146 communicationMenu.Append(idFIND_GATEWAYS, _("&Find Gateways"),_(" Find gateways to legacy IM")) |
68 | 147 self.menuBar = wx.MenuBar() |
70 | 148 self.menuBar.Append(connectMenu,_("&General")) |
149 self.menuBar.Append(contactMenu,_("&Contacts")) | |
150 self.menuBar.Append(communicationMenu,_("&Communication")) | |
68 | 151 self.SetMenuBar(self.menuBar) |
0 | 152 |
101 | 153 #additionals menus |
154 #FIXME: do this in a more generic way (in quickapp) | |
155 add_menus = self.bridge.getMenus() | |
156 for menu in add_menus: | |
157 category,item,type = menu | |
158 assert(type=="NORMAL") #TODO: manage other types | |
159 menu_idx = self.menuBar.FindMenu(category) | |
160 current_menu = None | |
161 if menu_idx == wx.NOT_FOUND: | |
162 #the menu is new, we create it | |
163 current_menu = wx.Menu() | |
164 self.menuBar.Append(current_menu, category) | |
165 else: | |
166 current_menu = self.menuBar.GetMenu(menu_idx) | |
167 assert(current_menu != None) | |
168 item_id = wx.NewId() | |
169 help_string = self.bridge.getMenuHelp(category, item, type) | |
170 current_menu.Append(item_id, item, help = help_string) | |
171 #now we register the event | |
172 def event_answer(e): | |
173 id = self.bridge.callMenu(category, item, type) | |
174 self.current_action_ids.add(id) | |
175 wx.EVT_MENU(self, item_id, event_answer) | |
176 | |
177 | |
0 | 178 #events |
179 wx.EVT_MENU(self, idCONNECT, self.onConnectRequest) | |
1 | 180 wx.EVT_MENU(self, idDISCONNECT, self.onDisconnectRequest) |
0 | 181 wx.EVT_MENU(self, idPARAM, self.onParam) |
182 wx.EVT_MENU(self, idEXIT, self.onExit) | |
183 wx.EVT_MENU(self, idADD_CONTACT, self.onAddContact) | |
184 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
|
185 wx.EVT_MENU(self, idSHOW_PROFILE, self.onShowProfile) |
72 | 186 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
|
187 wx.EVT_MENU(self, idFIND_GATEWAYS, self.onFindGateways) |
0 | 188 |
189 | |
67
0e50dd3a234a
message sending bug fixes + sortilege update
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
190 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
|
191 QuickApp.newMessage(self, from_jid, msg, type, to_jid, profile) |
0 | 192 |
72 | 193 def roomJoined(self, room_id, room_service, room_nicks, user_nick, profile): |
194 super(MainWindow, self).roomJoined(room_id, room_service, room_nicks, user_nick, profile) | |
195 | |
0 | 196 def showAlert(self, message): |
197 # TODO: place this in a separate class | |
198 popup=wx.PopupWindow(self) | |
199 ### following code come from wxpython demo | |
200 popup.SetBackgroundColour("CADET BLUE") | |
201 st = wx.StaticText(popup, -1, message, pos=(10,10)) | |
202 sz = st.GetBestSize() | |
203 popup.SetSize( (sz.width+20, sz.height+20) ) | |
204 x=(wx.DisplaySize()[0]-popup.GetSize()[0])/2 | |
205 popup.SetPosition((x,0)) | |
206 popup.Show() | |
207 wx.CallLater(5000,popup.Destroy) | |
208 | |
182
556c2bd7c344
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
180
diff
changeset
|
209 def showDialog(self, message, title="", type="info", answer_cb = None, answer_data = None): |
0 | 210 if type == 'info': |
211 flags = wx.OK | wx.ICON_INFORMATION | |
212 elif type == 'error': | |
213 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
|
214 elif type == 'yes/no': |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
215 flags = wx.YES_NO | wx.ICON_QUESTION |
0 | 216 else: |
217 flags = wx.OK | wx.ICON_INFORMATION | |
70 | 218 error(_('unmanaged dialog type: %s'), type) |
0 | 219 dlg = wx.MessageDialog(self, message, title, flags) |
220 answer = dlg.ShowModal() | |
221 dlg.Destroy() | |
182
556c2bd7c344
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
180
diff
changeset
|
222 if answer_cb: |
556c2bd7c344
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
180
diff
changeset
|
223 data = [answer_data] if answer_data else [] |
556c2bd7c344
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
180
diff
changeset
|
224 answer_cb(True if (answer == wx.ID_YES or answer == wx.ID_OK) else False, *data) |
0 | 225 |
226 def setStatusOnline(self, online=True): | |
227 """enable/disable controls, must be called when local user online status change""" | |
228 if online: | |
229 self.SetStatusText(msgONLINE) | |
230 self.tools.Enable() | |
231 else: | |
232 self.SetStatusText(msgOFFLINE) | |
233 self.tools.Disable() | |
234 return | |
235 | |
236 def askConfirmation(self, type, id, data): | |
237 #TODO: refactor this in QuickApp | |
70 | 238 debug (_("Confirmation asked")) |
0 | 239 answer_data={} |
240 if type == "FILE_TRANSFERT": | |
70 | 241 debug (_("File transfert confirmation asked")) |
242 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"]}, | |
243 _('File Request'), | |
0 | 244 wx.YES_NO | wx.ICON_QUESTION |
245 ) | |
246 answer=dlg.ShowModal() | |
247 if answer==wx.ID_YES: | |
70 | 248 filename = wx.FileSelector(_("Where do you want to save the file ?"), flags = wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT) |
0 | 249 if filename: |
250 answer_data["dest_path"] = filename | |
251 self.bridge.confirmationAnswer(id, True, answer_data) | |
70 | 252 self.waitProgress(id, _("File Transfer"), _("Copying %s") % os.path.basename(filename)) |
0 | 253 else: |
254 answer = wx.ID_NO | |
255 if answer==wx.ID_NO: | |
256 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
|
257 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
258 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
|
259 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
260 elif type == "YES/NO": |
70 | 261 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
|
262 dlg = wx.MessageDialog(self, data["message"], |
70 | 263 _('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
|
264 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
|
265 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
266 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
|
267 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
|
268 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
|
269 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
|
270 self.bridge.confirmationAnswer(id, False, {}) |
0 | 271 |
272 dlg.Destroy() | |
273 | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
274 def actionResult(self, type, id, data): |
70 | 275 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
|
276 if not id in self.current_action_ids: |
70 | 277 debug (_('unknown id, ignoring')) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
278 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
|
279 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
|
280 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
|
281 elif type == "SUCCESS": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
282 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
|
283 dlg = wx.MessageDialog(self, data["message"], |
70 | 284 _('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
|
285 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
|
286 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
287 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
|
288 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
|
289 elif type == "ERROR": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
290 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
|
291 dlg = wx.MessageDialog(self, data["message"], |
70 | 292 _('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
|
293 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
|
294 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
295 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
|
296 dlg.Destroy() |
103 | 297 elif type == "XMLUI": |
33
b9bb5d8e0cc7
In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents:
28
diff
changeset
|
298 self.current_action_ids.remove(id) |
103 | 299 debug (_("XML user interface received")) |
91 | 300 misc = {} |
301 #FIXME FIXME FIXME: must clean all this crap ! | |
302 title = _('Form') | |
303 if data['type'] == _('registration'): | |
103 | 304 title = _('Registration') |
91 | 305 misc['target'] = data['target'] |
306 misc['action_back'] = self.bridge.gatewayRegister | |
103 | 307 XMLUI(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
|
308 elif type == "RESULT": |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
309 self.current_action_ids.remove(id) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
310 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
|
311 callback = self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
312 del self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
313 callback(data) |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
314 elif type == "DICT_DICT": |
28 | 315 self.current_action_ids.remove(id) |
316 if self.current_action_ids_cb.has_key(id): | |
317 callback = self.current_action_ids_cb[id] | |
318 del self.current_action_ids_cb[id] | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
319 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
|
320 else: |
70 | 321 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
|
322 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
|
323 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
324 |
0 | 325 |
326 def progressCB(self, id, title, message): | |
327 data = self.bridge.getProgress(id) | |
328 if data: | |
329 if not self.pbar: | |
330 #first answer, we must construct the bar | |
180
fdb961f27ae9
Primitivus: file sending and progress management
Goffi <goffi@goffi.org>
parents:
120
diff
changeset
|
331 self.pbar = wx.ProgressDialog(title, message, float(data['size']), None, |
0 | 332 wx.PD_SMOOTH | wx.PD_ELAPSED_TIME | wx.PD_ESTIMATED_TIME | wx.PD_REMAINING_TIME) |
180
fdb961f27ae9
Primitivus: file sending and progress management
Goffi <goffi@goffi.org>
parents:
120
diff
changeset
|
333 self.pbar.finish_value = float(data['size']) |
0 | 334 |
335 self.pbar.Update(int(data['position'])) | |
336 elif self.pbar: | |
337 self.pbar.Update(self.pbar.finish_value) | |
338 return | |
339 | |
340 wx.CallLater(10, self.progressCB, id, title, message) | |
341 | |
342 def waitProgress (self, id, title, message): | |
343 self.pbar = None | |
344 wx.CallLater(10, self.progressCB, id, title, message) | |
345 | |
346 | |
347 | |
348 ### events ### | |
349 | |
350 def onContactActivated(self, jid): | |
70 | 351 debug (_("onContactActivated: %s"), jid) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
352 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
|
353 self.chat_wins[jid.short].Hide() |
0 | 354 else: |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
355 self.chat_wins[jid.short].Show() |
0 | 356 |
357 def onConnectRequest(self, e): | |
68 | 358 self.bridge.connect(self.profile) |
0 | 359 |
1 | 360 def onDisconnectRequest(self, e): |
68 | 361 self.bridge.disconnect(self.profile) |
1 | 362 |
0 | 363 def __updateStatus(self): |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
364 show = filter(lambda x:x[1] == self.statusBox.GetValue(), const_STATUS)[0][0] |
0 | 365 status = self.statusTxt.GetValue() |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
366 self.bridge.setPresence(show=show, statuses={'default':status}, profile_key=self.profile) #FIXME: manage multilingual statuses |
0 | 367 |
368 def onStatusChange(self, e): | |
70 | 369 debug(_("Status change request")) |
0 | 370 self.__updateStatus() |
371 | |
372 def onParam(self, e): | |
70 | 373 debug(_("Param request")) |
105 | 374 #xmlui = self.bridge.getParamsUI(self.profile) |
375 #XMLUI(self, xml_data = xmlui) | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
376 param=Param(self) |
0 | 377 |
378 def onExit(self, e): | |
379 self.Close() | |
380 | |
381 def onAddContact(self, e): | |
70 | 382 debug(_("Add contact request")) |
0 | 383 dlg = wx.TextEntryDialog( |
70 | 384 self, _('Please enter new contact JID'), |
385 _('Adding a contact'), _('name@server.tld')) | |
0 | 386 |
387 if dlg.ShowModal() == wx.ID_OK: | |
388 jid=JID(dlg.GetValue()) | |
389 if jid.is_valid(): | |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
390 self.bridge.addContact(jid.short, profile_key=self.profile) |
0 | 391 else: |
70 | 392 error (_("'%s' is an invalid JID !"), jid) |
0 | 393 #TODO: notice the user |
394 | |
395 dlg.Destroy() | |
396 | |
397 def onRemoveContact(self, e): | |
70 | 398 debug(_("Remove contact request")) |
0 | 399 target = self.contactList.getSelection() |
400 if not target: | |
70 | 401 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
402 _('Error'), | |
0 | 403 wx.OK | wx.ICON_ERROR |
404 ) | |
405 dlg.ShowModal() | |
406 dlg.Destroy() | |
407 return | |
408 | |
70 | 409 dlg = wx.MessageDialog(self, _("Are you sure you want to delete %s from your roster list ?") % target.short, |
410 _('Contact suppression'), | |
0 | 411 wx.YES_NO | wx.ICON_QUESTION |
412 ) | |
413 | |
414 if dlg.ShowModal() == wx.ID_YES: | |
70 | 415 info(_("Unsubscribing %s presence"), target.short) |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
416 self.bridge.delContact(target.short, profile_key=self.profile) |
0 | 417 |
418 dlg.Destroy() | |
419 | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
420 def onShowProfile(self, e): |
70 | 421 debug(_("Show contact's profile request")) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
422 target = self.contactList.getSelection() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
423 if not target: |
70 | 424 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
425 _('Error'), | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
426 wx.OK | wx.ICON_ERROR |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
427 ) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
428 dlg.ShowModal() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
429 dlg.Destroy() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
430 return |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
431 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
|
432 self.current_action_ids.add(id) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
433 self.current_action_ids_cb[id] = self.onProfileReceived |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
434 |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
435 def onProfileReceived(self, data): |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
436 """Called when a profile is received""" |
70 | 437 debug (_('Profile received: [%s]') % data) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
438 profile=Profile(self, data) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
439 |
72 | 440 def onJoinRoom(self, e): |
441 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
|
442 #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
|
443 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
|
444 self, _("Please enter MUC's JID"), |
120 | 445 _('Entering a MUC room'), 'test@conference.necton2.int') |
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
|
446 #_('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
|
447 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
|
448 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
|
449 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
|
450 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
|
451 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
|
452 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
|
453 |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
454 def onFindGateways(self, e): |
70 | 455 debug(_("Find Gateways request")) |
102 | 456 id = self.bridge.findGateways(self.profiles[self.profile]['whoami'].domain, self.profile) |
28 | 457 self.current_action_ids.add(id) |
458 self.current_action_ids_cb[id] = self.onGatewaysFound | |
459 | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
460 def onGatewaysFound(self, data): |
28 | 461 """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
|
462 target = data['__private__']['target'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
463 del data['__private__'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
464 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
|
465 |
0 | 466 def onClose(self, e): |
70 | 467 info(_("Exiting...")) |
0 | 468 e.Skip() |
11 | 469 |
470 def onTrayClick(self, e): | |
70 | 471 debug(_("Tray Click")) |
11 | 472 if self.IsShown(): |
473 self.Hide() | |
474 else: | |
475 self.Show() | |
476 self.Raise() | |
477 e.Skip() | |
0 | 478 |