Mercurial > libervia-backend
annotate frontends/wix/main_window.py @ 75:7322a41f8a8e
Basic user joined/left management
- plugin XEP-0045: user joined./left signal is sended
- wix: user are adder/removed when these signals are catched
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 29 Mar 2010 16:54:53 +1100 |
parents | f271fff3a713 |
children | 9681f18d06bd |
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) | |
52 | 112 |
0 | 113 self.Show() |
114 | |
68 | 115 def plug_profile(self, profile_key='@DEFAULT@'): |
116 """Hide profile panel then plug profile""" | |
117 self.profile_pan.Hide() | |
118 self.contactList.Show() | |
119 self.sizer.Layout() | |
120 for i in range(self.menuBar.GetMenuCount()): | |
121 self.menuBar.EnableTop(i, True) | |
122 super(MainWindow, self).plug_profile(profile_key) | |
123 if not self.bridge.isConnected(profile_key): | |
124 self.bridge.connect(profile_key) | |
125 | |
0 | 126 def createMenus(self): |
70 | 127 info(_("Creating menus")) |
0 | 128 connectMenu = wx.Menu() |
70 | 129 connectMenu.Append(idCONNECT, _("&Connect CTRL-c"),_(" Connect to the server")) |
130 connectMenu.Append(idDISCONNECT, _("&Disconnect CTRL-d"),_(" Disconnect from the server")) | |
131 connectMenu.Append(idPARAM,_("&Parameters"),_(" Configure the program")) | |
0 | 132 connectMenu.AppendSeparator() |
70 | 133 connectMenu.Append(idEXIT,_("E&xit"),_(" Terminate the program")) |
0 | 134 contactMenu = wx.Menu() |
70 | 135 contactMenu.Append(idADD_CONTACT, _("&Add contact"),_(" Add a contact to your list")) |
136 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
|
137 contactMenu.AppendSeparator() |
70 | 138 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
|
139 communicationMenu = wx.Menu() |
72 | 140 communicationMenu.Append(idJOIN_ROOM, _("&Join Room"),_(" Join a Multi-User Chat room")) |
70 | 141 communicationMenu.Append(idFIND_GATEWAYS, _("&Find Gateways"),_(" Find gateways to legacy IM")) |
68 | 142 self.menuBar = wx.MenuBar() |
70 | 143 self.menuBar.Append(connectMenu,_("&General")) |
144 self.menuBar.Append(contactMenu,_("&Contacts")) | |
145 self.menuBar.Append(communicationMenu,_("&Communication")) | |
68 | 146 self.SetMenuBar(self.menuBar) |
0 | 147 |
148 #events | |
149 wx.EVT_MENU(self, idCONNECT, self.onConnectRequest) | |
1 | 150 wx.EVT_MENU(self, idDISCONNECT, self.onDisconnectRequest) |
0 | 151 wx.EVT_MENU(self, idPARAM, self.onParam) |
152 wx.EVT_MENU(self, idEXIT, self.onExit) | |
153 wx.EVT_MENU(self, idADD_CONTACT, self.onAddContact) | |
154 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
|
155 wx.EVT_MENU(self, idSHOW_PROFILE, self.onShowProfile) |
72 | 156 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
|
157 wx.EVT_MENU(self, idFIND_GATEWAYS, self.onFindGateways) |
0 | 158 |
159 | |
67
0e50dd3a234a
message sending bug fixes + sortilege update
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
160 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
|
161 QuickApp.newMessage(self, from_jid, msg, type, to_jid, profile) |
0 | 162 |
72 | 163 def roomJoined(self, room_id, room_service, room_nicks, user_nick, profile): |
164 super(MainWindow, self).roomJoined(room_id, room_service, room_nicks, user_nick, profile) | |
165 | |
0 | 166 def showAlert(self, message): |
167 # TODO: place this in a separate class | |
168 popup=wx.PopupWindow(self) | |
169 ### following code come from wxpython demo | |
170 popup.SetBackgroundColour("CADET BLUE") | |
171 st = wx.StaticText(popup, -1, message, pos=(10,10)) | |
172 sz = st.GetBestSize() | |
173 popup.SetSize( (sz.width+20, sz.height+20) ) | |
174 x=(wx.DisplaySize()[0]-popup.GetSize()[0])/2 | |
175 popup.SetPosition((x,0)) | |
176 popup.Show() | |
177 wx.CallLater(5000,popup.Destroy) | |
178 | |
179 def showDialog(self, message, title="", type="info"): | |
180 if type == 'info': | |
181 flags = wx.OK | wx.ICON_INFORMATION | |
182 elif type == 'error': | |
183 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
|
184 elif type == 'yes/no': |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
185 flags = wx.YES_NO | wx.ICON_QUESTION |
0 | 186 else: |
187 flags = wx.OK | wx.ICON_INFORMATION | |
70 | 188 error(_('unmanaged dialog type: %s'), type) |
0 | 189 dlg = wx.MessageDialog(self, message, title, flags) |
190 answer = dlg.ShowModal() | |
191 dlg.Destroy() | |
192 return True if (answer == wx.ID_YES or answer == wx.ID_OK) else False | |
193 | |
194 def setStatusOnline(self, online=True): | |
195 """enable/disable controls, must be called when local user online status change""" | |
196 if online: | |
197 self.SetStatusText(msgONLINE) | |
198 self.tools.Enable() | |
199 else: | |
200 self.SetStatusText(msgOFFLINE) | |
201 self.tools.Disable() | |
202 return | |
203 | |
204 def askConfirmation(self, type, id, data): | |
205 #TODO: refactor this in QuickApp | |
70 | 206 debug (_("Confirmation asked")) |
0 | 207 answer_data={} |
208 if type == "FILE_TRANSFERT": | |
70 | 209 debug (_("File transfert confirmation asked")) |
210 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"]}, | |
211 _('File Request'), | |
0 | 212 wx.YES_NO | wx.ICON_QUESTION |
213 ) | |
214 answer=dlg.ShowModal() | |
215 if answer==wx.ID_YES: | |
70 | 216 filename = wx.FileSelector(_("Where do you want to save the file ?"), flags = wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT) |
0 | 217 if filename: |
218 answer_data["dest_path"] = filename | |
219 self.bridge.confirmationAnswer(id, True, answer_data) | |
70 | 220 self.waitProgress(id, _("File Transfer"), _("Copying %s") % os.path.basename(filename)) |
0 | 221 else: |
222 answer = wx.ID_NO | |
223 if answer==wx.ID_NO: | |
224 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
|
225 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
226 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
|
227 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
228 elif type == "YES/NO": |
70 | 229 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
|
230 dlg = wx.MessageDialog(self, data["message"], |
70 | 231 _('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
|
232 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
|
233 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
234 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
|
235 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
|
236 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
|
237 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
|
238 self.bridge.confirmationAnswer(id, False, {}) |
0 | 239 |
240 dlg.Destroy() | |
241 | |
22
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
242 def actionResult(self, type, id, data): |
70 | 243 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
|
244 if not id in self.current_action_ids: |
70 | 245 debug (_('unknown id, ignoring')) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
246 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
|
247 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
|
248 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
|
249 elif type == "SUCCESS": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
250 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
|
251 dlg = wx.MessageDialog(self, data["message"], |
70 | 252 _('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
|
253 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
|
254 ) |
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.ShowModal() |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
256 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
|
257 elif type == "ERROR": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
258 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
|
259 dlg = wx.MessageDialog(self, data["message"], |
70 | 260 _('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
|
261 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
|
262 ) |
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.ShowModal() |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
264 dlg.Destroy() |
33
b9bb5d8e0cc7
In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents:
28
diff
changeset
|
265 elif type == "FORM": |
b9bb5d8e0cc7
In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents:
28
diff
changeset
|
266 self.current_action_ids.remove(id) |
70 | 267 debug (_("Form received")) |
268 form=Form(self, title=_('Registration'), target = data['target'], type = data['type'], xml_data = data['xml']) | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
269 elif type == "RESULT": |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
270 self.current_action_ids.remove(id) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
271 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
|
272 callback = self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
273 del self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
274 callback(data) |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
275 elif type == "DICT_DICT": |
28 | 276 self.current_action_ids.remove(id) |
277 if self.current_action_ids_cb.has_key(id): | |
278 callback = self.current_action_ids_cb[id] | |
279 del self.current_action_ids_cb[id] | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
280 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
|
281 else: |
70 | 282 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
|
283 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
|
284 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
285 |
0 | 286 |
287 def progressCB(self, id, title, message): | |
288 data = self.bridge.getProgress(id) | |
289 if data: | |
290 if not data['position']: | |
291 data['position'] = '0' | |
292 if not self.pbar: | |
293 #first answer, we must construct the bar | |
294 self.pbar = wx.ProgressDialog(title, message, int(data['size']), None, | |
295 wx.PD_SMOOTH | wx.PD_ELAPSED_TIME | wx.PD_ESTIMATED_TIME | wx.PD_REMAINING_TIME) | |
296 self.pbar.finish_value = int(data['size']) | |
297 | |
298 self.pbar.Update(int(data['position'])) | |
299 elif self.pbar: | |
300 self.pbar.Update(self.pbar.finish_value) | |
301 return | |
302 | |
303 wx.CallLater(10, self.progressCB, id, title, message) | |
304 | |
305 def waitProgress (self, id, title, message): | |
306 self.pbar = None | |
307 wx.CallLater(10, self.progressCB, id, title, message) | |
308 | |
309 | |
310 | |
311 ### events ### | |
312 | |
313 def onContactActivated(self, jid): | |
70 | 314 debug (_("onContactActivated: %s"), jid) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
315 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
|
316 self.chat_wins[jid.short].Hide() |
0 | 317 else: |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
318 self.chat_wins[jid.short].Show() |
0 | 319 |
320 def onConnectRequest(self, e): | |
68 | 321 self.bridge.connect(self.profile) |
0 | 322 |
1 | 323 def onDisconnectRequest(self, e): |
68 | 324 self.bridge.disconnect(self.profile) |
1 | 325 |
0 | 326 def __updateStatus(self): |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
327 show = filter(lambda x:x[1] == self.statusBox.GetValue(), const_STATUS)[0][0] |
0 | 328 status = self.statusTxt.GetValue() |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
329 self.bridge.setPresence(show=show, statuses={'default':status}) #FIXME: manage multilingual statuses |
0 | 330 |
331 def onStatusChange(self, e): | |
70 | 332 debug(_("Status change request")) |
0 | 333 self.__updateStatus() |
334 | |
335 def onParam(self, e): | |
70 | 336 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
|
337 param=Param(self) |
0 | 338 |
339 def onExit(self, e): | |
340 self.Close() | |
341 | |
342 def onAddContact(self, e): | |
70 | 343 debug(_("Add contact request")) |
0 | 344 dlg = wx.TextEntryDialog( |
70 | 345 self, _('Please enter new contact JID'), |
346 _('Adding a contact'), _('name@server.tld')) | |
0 | 347 |
348 if dlg.ShowModal() == wx.ID_OK: | |
349 jid=JID(dlg.GetValue()) | |
350 if jid.is_valid(): | |
351 self.bridge.addContact(jid.short) | |
352 else: | |
70 | 353 error (_("'%s' is an invalid JID !"), jid) |
0 | 354 #TODO: notice the user |
355 | |
356 dlg.Destroy() | |
357 | |
358 def onRemoveContact(self, e): | |
70 | 359 debug(_("Remove contact request")) |
0 | 360 target = self.contactList.getSelection() |
361 if not target: | |
70 | 362 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
363 _('Error'), | |
0 | 364 wx.OK | wx.ICON_ERROR |
365 ) | |
366 dlg.ShowModal() | |
367 dlg.Destroy() | |
368 return | |
369 | |
70 | 370 dlg = wx.MessageDialog(self, _("Are you sure you want to delete %s from your roster list ?") % target.short, |
371 _('Contact suppression'), | |
0 | 372 wx.YES_NO | wx.ICON_QUESTION |
373 ) | |
374 | |
375 if dlg.ShowModal() == wx.ID_YES: | |
70 | 376 info(_("Unsubscribing %s presence"), target.short) |
0 | 377 self.bridge.delContact(target.short) |
378 | |
379 dlg.Destroy() | |
380 | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
381 def onShowProfile(self, e): |
70 | 382 debug(_("Show contact's profile request")) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
383 target = self.contactList.getSelection() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
384 if not target: |
70 | 385 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
386 _('Error'), | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
387 wx.OK | wx.ICON_ERROR |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
388 ) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
389 dlg.ShowModal() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
390 dlg.Destroy() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
391 return |
64 | 392 id = self.bridge.getCard(target.short) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
393 self.current_action_ids.add(id) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
394 self.current_action_ids_cb[id] = self.onProfileReceived |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
395 |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
396 def onProfileReceived(self, data): |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
397 """Called when a profile is received""" |
70 | 398 debug (_('Profile received: [%s]') % data) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
399 profile=Profile(self, data) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
400 |
72 | 401 def onJoinRoom(self, e): |
402 warning('FIXME: temporary menu, must be improved') | |
403 self.bridge.joinMUC("conference.necton2.int", "test", "Goffi \o/", self.profile) | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
404 |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
405 def onFindGateways(self, e): |
70 | 406 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
|
407 id = self.bridge.findGateways(self.profiles[self.profile]['whoami'].domain) |
28 | 408 self.current_action_ids.add(id) |
409 self.current_action_ids_cb[id] = self.onGatewaysFound | |
410 | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
411 def onGatewaysFound(self, data): |
28 | 412 """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
|
413 target = data['__private__']['target'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
414 del data['__private__'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
415 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
|
416 |
0 | 417 def onClose(self, e): |
70 | 418 info(_("Exiting...")) |
0 | 419 e.Skip() |
11 | 420 |
421 def onTrayClick(self, e): | |
70 | 422 debug(_("Tray Click")) |
11 | 423 if self.IsShown(): |
424 self.Hide() | |
425 else: | |
426 self.Show() | |
427 self.Raise() | |
428 e.Skip() | |
0 | 429 |