Mercurial > libervia-backend
annotate frontends/src/wix/main_window.py @ 723:f02e2c277f0c
bridge: fixed bridge_constructor
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 01 Dec 2013 17:28:30 +0100 |
parents | f7878ad3c846 |
children | 6246eb6d64a0 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
4 # wix: a SAT frontend |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
5 # Copyright (C) 2009, 2010, 2011, 2012, 2013 Jérôme Poisson (goffi@goffi.org) |
0 | 6 |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
7 # This program is free software: you can redistribute it and/or modify |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
8 # it under the terms of the GNU Affero General Public License as published by |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
9 # the Free Software Foundation, either version 3 of the License, or |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
10 # (at your option) any later version. |
0 | 11 |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
12 # This program is distributed in the hope that it will be useful, |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
15 # GNU Affero General Public License for more details. |
0 | 16 |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
17 # You should have received a copy of the GNU Affero General Public License |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
587
diff
changeset
|
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
0 | 19 |
20 | |
227 | 21 from sat_frontends.quick_frontend.quick_chat_list import QuickChatList |
22 from sat_frontends.quick_frontend.quick_app import QuickApp | |
0 | 23 import wx |
227 | 24 from sat_frontends.wix.contact_list import ContactList |
25 from sat_frontends.wix.chat import Chat | |
26 from sat_frontends.wix.param import Param | |
27 from sat_frontends.wix.xmlui import XMLUI | |
28 from sat_frontends.wix.gateways import GatewaysManager | |
29 from sat_frontends.wix.profile import Profile | |
30 from sat_frontends.wix.profile_manager import ProfileManager | |
0 | 31 import os.path |
225
fd9b7834d98a
distutils installation script, draft
Goffi <goffi@goffi.org>
parents:
223
diff
changeset
|
32 from sat.tools.jid import JID |
72 | 33 from logging import debug, info, warning, error |
227 | 34 import sat_frontends.wix.constants |
0 | 35 |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
36 idCONNECT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
37 idDISCONNECT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
38 idEXIT,\ |
191 | 39 idABOUT,\ |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
40 idPARAM,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
41 idADD_CONTACT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
42 idREMOVE_CONTACT,\ |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
43 idSHOW_PROFILE,\ |
72 | 44 idJOIN_ROOM,\ |
191 | 45 idFIND_GATEWAYS = range(10) |
0 | 46 |
47 class ChatList(QuickChatList): | |
48 """This class manage the list of chat windows""" | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
49 |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
50 def createChat(self, target): |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
51 return Chat(target, self.host) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
52 |
0 | 53 class MainWindow(wx.Frame, QuickApp): |
54 """main app window""" | |
55 | |
56 def __init__(self): | |
366
0806a65a5fa9
wix: updated paths to use media_dir
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
57 QuickApp.__init__(self) |
68 | 58 wx.Frame.__init__(self,None, title="SàT Wix", size=(300,500)) |
0 | 59 |
68 | 60 #sizer |
61 self.sizer = wx.BoxSizer(wx.VERTICAL) | |
62 self.SetSizer(self.sizer) | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
63 |
0 | 64 #Frame elements |
501
e9634d2e7b38
core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1:
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
65 self.contact_list = ContactList(self, self) |
e9634d2e7b38
core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1:
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
66 self.contact_list.registerActivatedCB(self.onContactActivated) |
e9634d2e7b38
core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1:
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
67 self.contact_list.Hide() |
e9634d2e7b38
core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1:
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
68 self.sizer.Add(self.contact_list, 1, flag=wx.EXPAND) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
69 |
0 | 70 self.chat_wins=ChatList(self) |
71 self.CreateStatusBar() | |
72 | |
73 #ToolBar | |
74 self.tools=self.CreateToolBar() | |
679
59c9a7ff903d
wix, misc: use picture of dimension 32x32 for tray icon + better PEP-8 compliance
souliane <souliane@mailoo.org>
parents:
653
diff
changeset
|
75 self.statusBox = wx.ComboBox(self.tools, -1, "Online", choices=[status[1] for status in const_STATUS], |
0 | 76 style=wx.CB_DROPDOWN | wx.CB_READONLY) |
77 self.tools.AddControl(self.statusBox) | |
78 self.tools.AddSeparator() | |
79 self.statusTxt=wx.TextCtrl(self.tools, -1, style = wx.TE_PROCESS_ENTER) | |
80 self.tools.AddControl(self.statusTxt) | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
81 self.Bind(wx.EVT_COMBOBOX, self.onStatusChange, self.statusBox) |
0 | 82 self.Bind(wx.EVT_TEXT_ENTER, self.onStatusChange, self.statusTxt) |
83 self.tools.Disable() | |
366
0806a65a5fa9
wix: updated paths to use media_dir
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
84 |
11 | 85 #tray icon |
679
59c9a7ff903d
wix, misc: use picture of dimension 32x32 for tray icon + better PEP-8 compliance
souliane <souliane@mailoo.org>
parents:
653
diff
changeset
|
86 ticon = wx.Icon(os.path.join(self.media_dir, 'icons/crystal/32/tray_icon.xpm'), wx.BITMAP_TYPE_XPM) |
11 | 87 self.tray_icon = wx.TaskBarIcon() |
70 | 88 self.tray_icon.SetIcon(ticon, _("Wix jabber client")) |
11 | 89 wx.EVT_TASKBAR_LEFT_UP(self.tray_icon, self.onTrayClick) |
90 | |
0 | 91 |
92 #events | |
93 self.Bind(wx.EVT_CLOSE, self.onClose, self) | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
94 |
101 | 95 #menus |
96 self.createMenus() | |
97 for i in range(self.menuBar.GetMenuCount()): | |
98 self.menuBar.EnableTop(i, False) | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
99 |
68 | 100 #profile panel |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
101 self.profile_pan = ProfileManager(self) |
68 | 102 self.sizer.Add(self.profile_pan, 1, flag=wx.EXPAND) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
103 |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
105
diff
changeset
|
104 self.postInit() |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
105
diff
changeset
|
105 |
0 | 106 self.Show() |
107 | |
68 | 108 def plug_profile(self, profile_key='@DEFAULT@'): |
109 """Hide profile panel then plug profile""" | |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
110 debug (_('plugin profile %s' % profile_key)) |
68 | 111 self.profile_pan.Hide() |
501
e9634d2e7b38
core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1:
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
112 self.contact_list.Show() |
68 | 113 self.sizer.Layout() |
114 for i in range(self.menuBar.GetMenuCount()): | |
115 self.menuBar.EnableTop(i, True) | |
116 super(MainWindow, self).plug_profile(profile_key) | |
117 | |
0 | 118 def createMenus(self): |
70 | 119 info(_("Creating menus")) |
0 | 120 connectMenu = wx.Menu() |
70 | 121 connectMenu.Append(idCONNECT, _("&Connect CTRL-c"),_(" Connect to the server")) |
122 connectMenu.Append(idDISCONNECT, _("&Disconnect CTRL-d"),_(" Disconnect from the server")) | |
123 connectMenu.Append(idPARAM,_("&Parameters"),_(" Configure the program")) | |
0 | 124 connectMenu.AppendSeparator() |
191 | 125 connectMenu.Append(idABOUT,_("A&bout"),_(" About %s") % APP_NAME) |
70 | 126 connectMenu.Append(idEXIT,_("E&xit"),_(" Terminate the program")) |
0 | 127 contactMenu = wx.Menu() |
70 | 128 contactMenu.Append(idADD_CONTACT, _("&Add contact"),_(" Add a contact to your list")) |
129 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
|
130 contactMenu.AppendSeparator() |
70 | 131 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
|
132 communicationMenu = wx.Menu() |
72 | 133 communicationMenu.Append(idJOIN_ROOM, _("&Join Room"),_(" Join a Multi-User Chat room")) |
70 | 134 communicationMenu.Append(idFIND_GATEWAYS, _("&Find Gateways"),_(" Find gateways to legacy IM")) |
68 | 135 self.menuBar = wx.MenuBar() |
70 | 136 self.menuBar.Append(connectMenu,_("&General")) |
137 self.menuBar.Append(contactMenu,_("&Contacts")) | |
138 self.menuBar.Append(communicationMenu,_("&Communication")) | |
68 | 139 self.SetMenuBar(self.menuBar) |
0 | 140 |
101 | 141 #additionals menus |
142 #FIXME: do this in a more generic way (in quickapp) | |
143 add_menus = self.bridge.getMenus() | |
144 for menu in add_menus: | |
145 category,item,type = menu | |
146 assert(type=="NORMAL") #TODO: manage other types | |
147 menu_idx = self.menuBar.FindMenu(category) | |
148 current_menu = None | |
149 if menu_idx == wx.NOT_FOUND: | |
150 #the menu is new, we create it | |
151 current_menu = wx.Menu() | |
152 self.menuBar.Append(current_menu, category) | |
153 else: | |
154 current_menu = self.menuBar.GetMenu(menu_idx) | |
155 assert(current_menu != None) | |
156 item_id = wx.NewId() | |
157 help_string = self.bridge.getMenuHelp(category, item, type) | |
158 current_menu.Append(item_id, item, help = help_string) | |
159 #now we register the event | |
160 def event_answer(e): | |
219
782319a64ac6
primitivus, wix: added forgotten profile
Goffi <goffi@goffi.org>
parents:
204
diff
changeset
|
161 id = self.bridge.callMenu(category, item, type, self.profile) |
101 | 162 self.current_action_ids.add(id) |
163 wx.EVT_MENU(self, item_id, event_answer) | |
164 | |
165 | |
0 | 166 #events |
167 wx.EVT_MENU(self, idCONNECT, self.onConnectRequest) | |
1 | 168 wx.EVT_MENU(self, idDISCONNECT, self.onDisconnectRequest) |
0 | 169 wx.EVT_MENU(self, idPARAM, self.onParam) |
191 | 170 wx.EVT_MENU(self, idABOUT, self.onAbout) |
0 | 171 wx.EVT_MENU(self, idEXIT, self.onExit) |
172 wx.EVT_MENU(self, idADD_CONTACT, self.onAddContact) | |
173 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
|
174 wx.EVT_MENU(self, idSHOW_PROFILE, self.onShowProfile) |
72 | 175 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
|
176 wx.EVT_MENU(self, idFIND_GATEWAYS, self.onFindGateways) |
0 | 177 |
178 | |
513
8ee9113d307b
core, quick_frontend, primitivus, wixi, bridge: fixed delayed message timestamp:
Goffi <goffi@goffi.org>
parents:
510
diff
changeset
|
179 def newMessage(self, from_jid, to_jid, msg, _type, extra, profile): |
8ee9113d307b
core, quick_frontend, primitivus, wixi, bridge: fixed delayed message timestamp:
Goffi <goffi@goffi.org>
parents:
510
diff
changeset
|
180 QuickApp.newMessage(self, from_jid, to_jid, msg, _type, extra, profile) |
0 | 181 |
182 def showAlert(self, message): | |
183 # TODO: place this in a separate class | |
184 popup=wx.PopupWindow(self) | |
185 ### following code come from wxpython demo | |
186 popup.SetBackgroundColour("CADET BLUE") | |
187 st = wx.StaticText(popup, -1, message, pos=(10,10)) | |
188 sz = st.GetBestSize() | |
189 popup.SetSize( (sz.width+20, sz.height+20) ) | |
190 x=(wx.DisplaySize()[0]-popup.GetSize()[0])/2 | |
191 popup.SetPosition((x,0)) | |
192 popup.Show() | |
193 wx.CallLater(5000,popup.Destroy) | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
194 |
182
556c2bd7c344
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
180
diff
changeset
|
195 def showDialog(self, message, title="", type="info", answer_cb = None, answer_data = None): |
0 | 196 if type == 'info': |
197 flags = wx.OK | wx.ICON_INFORMATION | |
198 elif type == 'error': | |
199 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
|
200 elif type == 'yes/no': |
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
201 flags = wx.YES_NO | wx.ICON_QUESTION |
0 | 202 else: |
203 flags = wx.OK | wx.ICON_INFORMATION | |
70 | 204 error(_('unmanaged dialog type: %s'), type) |
0 | 205 dlg = wx.MessageDialog(self, message, title, flags) |
206 answer = dlg.ShowModal() | |
207 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
|
208 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
|
209 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
|
210 answer_cb(True if (answer == wx.ID_YES or answer == wx.ID_OK) else False, *data) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
211 |
0 | 212 def setStatusOnline(self, online=True): |
213 """enable/disable controls, must be called when local user online status change""" | |
214 if online: | |
215 self.SetStatusText(msgONLINE) | |
216 self.tools.Enable() | |
217 else: | |
218 self.SetStatusText(msgOFFLINE) | |
219 self.tools.Disable() | |
220 return | |
221 | |
542
3eeb6c865e4d
frontends: incoming files transfer management:
Goffi <goffi@goffi.org>
parents:
538
diff
changeset
|
222 def askConfirmation(self, confirmation_id, confirmation_type, data, profile): |
0 | 223 #TODO: refactor this in QuickApp |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
224 if not self.check_profile(profile): |
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
225 return |
70 | 226 debug (_("Confirmation asked")) |
0 | 227 answer_data={} |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
228 if confirmation_type == "FILE_TRANSFER": |
391 | 229 debug (_("File transfer confirmation asked")) |
70 | 230 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"]}, |
231 _('File Request'), | |
0 | 232 wx.YES_NO | wx.ICON_QUESTION |
233 ) | |
234 answer=dlg.ShowModal() | |
235 if answer==wx.ID_YES: | |
70 | 236 filename = wx.FileSelector(_("Where do you want to save the file ?"), flags = wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT) |
0 | 237 if filename: |
238 answer_data["dest_path"] = filename | |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
239 self.bridge.confirmationAnswer(confirmation_id, True, answer_data, profile) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
240 self.waitProgress(confirmation_id, _("File Transfer"), _("Copying %s") % os.path.basename(filename), profile) |
0 | 241 else: |
242 answer = wx.ID_NO | |
243 if answer==wx.ID_NO: | |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
244 self.bridge.confirmationAnswer(confirmation_id, False, answer_data, profile) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
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 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
|
247 |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
248 elif confirmation_type == "YES/NO": |
70 | 249 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
|
250 dlg = wx.MessageDialog(self, data["message"], |
70 | 251 _('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
|
252 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
|
253 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
254 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
|
255 if answer==wx.ID_YES: |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
256 self.bridge.confirmationAnswer(confirmation_id, True, {}, profile) |
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 if answer==wx.ID_NO: |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
258 self.bridge.confirmationAnswer(confirmation_id, False, {}, profile) |
0 | 259 |
260 dlg.Destroy() | |
261 | |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
262 def actionResult(self, type, id, data, profile): |
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
263 if not self.check_profile(profile): |
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
264 return |
70 | 265 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
|
266 if not id in self.current_action_ids: |
70 | 267 debug (_('unknown id, ignoring')) |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
268 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
|
269 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
|
270 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
|
271 elif type == "SUCCESS": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
272 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
|
273 dlg = wx.MessageDialog(self, data["message"], |
70 | 274 _('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
|
275 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
|
276 ) |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
277 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
|
278 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
|
279 elif type == "ERROR": |
23
925ab466c5ec
better presentation for register new account
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
280 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
|
281 dlg = wx.MessageDialog(self, data["message"], |
70 | 282 _('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
|
283 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
|
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 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
|
286 dlg.Destroy() |
103 | 287 elif type == "XMLUI": |
33
b9bb5d8e0cc7
In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents:
28
diff
changeset
|
288 self.current_action_ids.remove(id) |
103 | 289 debug (_("XML user interface received")) |
91 | 290 misc = {} |
291 #FIXME FIXME FIXME: must clean all this crap ! | |
292 title = _('Form') | |
293 if data['type'] == _('registration'): | |
103 | 294 title = _('Registration') |
91 | 295 misc['target'] = data['target'] |
296 misc['action_back'] = self.bridge.gatewayRegister | |
103 | 297 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
|
298 elif type == "RESULT": |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
299 self.current_action_ids.remove(id) |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
300 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
|
301 callback = self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
302 del self.current_action_ids_cb[id] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
303 callback(data) |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
304 elif type == "DICT_DICT": |
28 | 305 self.current_action_ids.remove(id) |
306 if self.current_action_ids_cb.has_key(id): | |
307 callback = self.current_action_ids_cb[id] | |
308 del self.current_action_ids_cb[id] | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
309 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
|
310 else: |
70 | 311 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
|
312 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
|
313 |
bb72c29f3432
added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
314 |
0 | 315 |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
316 def progressCB(self, progress_id, title, message, profile): |
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
317 data = self.bridge.getProgress(progress_id, profile) |
0 | 318 if data: |
319 if not self.pbar: | |
320 #first answer, we must construct the bar | |
180
fdb961f27ae9
Primitivus: file sending and progress management
Goffi <goffi@goffi.org>
parents:
120
diff
changeset
|
321 self.pbar = wx.ProgressDialog(title, message, float(data['size']), None, |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
322 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
|
323 self.pbar.finish_value = float(data['size']) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
324 |
0 | 325 self.pbar.Update(int(data['position'])) |
326 elif self.pbar: | |
327 self.pbar.Update(self.pbar.finish_value) | |
328 return | |
329 | |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
330 wx.CallLater(10, self.progressCB, progress_id, title, message, profile) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
331 |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
332 def waitProgress (self, progress_id, title, message, profile): |
0 | 333 self.pbar = None |
538
2c4016921403
core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles
Goffi <goffi@goffi.org>
parents:
513
diff
changeset
|
334 wx.CallLater(10, self.progressCB, progress_id, title, message, profile) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
335 |
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
336 |
0 | 337 |
338 ### events ### | |
339 | |
340 def onContactActivated(self, jid): | |
70 | 341 debug (_("onContactActivated: %s"), jid) |
688
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
342 if self.chat_wins[jid.bare].IsShown(): |
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
343 self.chat_wins[jid.bare].Hide() |
0 | 344 else: |
688
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
345 self.chat_wins[jid.bare].Show() |
0 | 346 |
347 def onConnectRequest(self, e): | |
68 | 348 self.bridge.connect(self.profile) |
0 | 349 |
1 | 350 def onDisconnectRequest(self, e): |
68 | 351 self.bridge.disconnect(self.profile) |
1 | 352 |
0 | 353 def __updateStatus(self): |
51
8c67ea98ab91
frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents:
42
diff
changeset
|
354 show = filter(lambda x:x[1] == self.statusBox.GetValue(), const_STATUS)[0][0] |
0 | 355 status = self.statusTxt.GetValue() |
89
23caf1051099
multi-profile/subscription misc fixes
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
356 self.bridge.setPresence(show=show, statuses={'default':status}, profile_key=self.profile) #FIXME: manage multilingual statuses |
0 | 357 |
358 def onStatusChange(self, e): | |
70 | 359 debug(_("Status change request")) |
0 | 360 self.__updateStatus() |
361 | |
362 def onParam(self, e): | |
70 | 363 debug(_("Param request")) |
641
49587e170f53
core: added the security_limit to setParam
souliane <souliane@mailoo.org>
parents:
634
diff
changeset
|
364 #xmlui = self.bridge.getParamsUI(profile_key=self.profile) |
105 | 365 #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
|
366 param=Param(self) |
0 | 367 |
191 | 368 def onAbout(self, e): |
369 about = wx.AboutDialogInfo() | |
370 about.SetName(APP_NAME) | |
371 about.SetVersion (unicode(self.bridge.getVersion())) | |
572 | 372 about.SetCopyright(u"(C) 2009, 2010, 2011, 2012, 2013 Jérôme Poisson aka Goffi") |
191 | 373 about.SetDescription( _(u"%(name)s is a SàT (Salut à Toi) frontend\n"+ |
374 u"%(name)s is based on WxPython, and is the standard graphic interface of SàT") % {'name':APP_NAME}) | |
375 about.SetWebSite(("http://www.goffi.org", "Goffi's non-hebdo (french)")) | |
376 about.SetDevelopers([ "Goffi (Jérôme Poisson)"]) | |
377 try: | |
378 with open(LICENCE_PATH,"r") as licence: | |
379 about.SetLicence(''.join(licence.readlines())) | |
380 except: | |
381 pass | |
382 | |
383 wx.AboutBox(about) | |
384 | |
0 | 385 def onExit(self, e): |
386 self.Close() | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
387 |
0 | 388 def onAddContact(self, e): |
70 | 389 debug(_("Add contact request")) |
0 | 390 dlg = wx.TextEntryDialog( |
70 | 391 self, _('Please enter new contact JID'), |
392 _('Adding a contact'), _('name@server.tld')) | |
0 | 393 |
394 if dlg.ShowModal() == wx.ID_OK: | |
395 jid=JID(dlg.GetValue()) | |
396 if jid.is_valid(): | |
688
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
397 self.bridge.addContact(jid.bare, profile_key=self.profile) |
0 | 398 else: |
70 | 399 error (_("'%s' is an invalid JID !"), jid) |
0 | 400 #TODO: notice the user |
401 | |
402 dlg.Destroy() | |
403 | |
404 def onRemoveContact(self, e): | |
70 | 405 debug(_("Remove contact request")) |
501
e9634d2e7b38
core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1:
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
406 target = self.contact_list.getSelection() |
0 | 407 if not target: |
70 | 408 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
409 _('Error'), | |
0 | 410 wx.OK | wx.ICON_ERROR |
411 ) | |
412 dlg.ShowModal() | |
413 dlg.Destroy() | |
414 return | |
415 | |
688
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
416 dlg = wx.MessageDialog(self, _("Are you sure you want to delete %s from your roster list ?") % target.bare, |
70 | 417 _('Contact suppression'), |
0 | 418 wx.YES_NO | wx.ICON_QUESTION |
419 ) | |
420 | |
421 if dlg.ShowModal() == wx.ID_YES: | |
688
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
422 info(_("Unsubscribing %s presence"), target.bare) |
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
423 self.bridge.delContact(target.bare, profile_key=self.profile) |
0 | 424 |
425 dlg.Destroy() | |
426 | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
427 def onShowProfile(self, e): |
70 | 428 debug(_("Show contact's profile request")) |
501
e9634d2e7b38
core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1:
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
429 target = self.contact_list.getSelection() |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
430 if not target: |
70 | 431 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"), |
432 _('Error'), | |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
433 wx.OK | wx.ICON_ERROR |
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 dlg.ShowModal() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
436 dlg.Destroy() |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
437 return |
688
f7878ad3c846
tools: renamed tools.jid.JID attribute "short" to "bare"
souliane <souliane@mailoo.org>
parents:
679
diff
changeset
|
438 _id = self.bridge.getCard(target.bare, profile_key=self.profile) |
491
1e4731f1e1d7
wix: renamed id variable to avoid reserved name
Goffi <goffi@goffi.org>
parents:
480
diff
changeset
|
439 self.current_action_ids.add(_id) |
1e4731f1e1d7
wix: renamed id variable to avoid reserved name
Goffi <goffi@goffi.org>
parents:
480
diff
changeset
|
440 self.current_action_ids_cb[_id] = self.onProfileReceived |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
441 |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
442 def onProfileReceived(self, data): |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
443 """Called when a profile is received""" |
70 | 444 debug (_('Profile received: [%s]') % data) |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
445 profile=Profile(self, data) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
446 |
72 | 447 def onJoinRoom(self, e): |
448 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
|
449 #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
|
450 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
|
451 self, _("Please enter MUC's JID"), |
204 | 452 #_('Entering a MUC room'), 'test@conference.necton2.int') |
453 _('Entering a MUC room'), 'room@muc_service.server.tld') | |
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
|
454 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
|
455 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
|
456 if room_jid.is_valid(): |
405
10b4f577d0c0
MUC update to follow wokkel's MUC branch update
Goffi <goffi@goffi.org>
parents:
391
diff
changeset
|
457 self.bridge.joinMUC(room_jid, self.profiles[self.profile]['whoami'].node, {}, self.profile) |
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
|
458 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
|
459 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
|
460 |
25
53e921c8a357
new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents:
23
diff
changeset
|
461 def onFindGateways(self, e): |
70 | 462 debug(_("Find Gateways request")) |
491
1e4731f1e1d7
wix: renamed id variable to avoid reserved name
Goffi <goffi@goffi.org>
parents:
480
diff
changeset
|
463 _id = self.bridge.findGateways(self.profiles[self.profile]['whoami'].domain, self.profile) |
1e4731f1e1d7
wix: renamed id variable to avoid reserved name
Goffi <goffi@goffi.org>
parents:
480
diff
changeset
|
464 self.current_action_ids.add(_id) |
1e4731f1e1d7
wix: renamed id variable to avoid reserved name
Goffi <goffi@goffi.org>
parents:
480
diff
changeset
|
465 self.current_action_ids_cb[_id] = self.onGatewaysFound |
28 | 466 |
42
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
467 def onGatewaysFound(self, data): |
28 | 468 """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
|
469 target = data['__private__']['target'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
470 del data['__private__'] |
874de3020e1c
Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
471 gatewayManager = GatewaysManager(self, data, server=target) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
472 |
0 | 473 def onClose(self, e): |
183
9ee4a1d0d7fb
Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents:
182
diff
changeset
|
474 QuickApp.onExit(self) |
70 | 475 info(_("Exiting...")) |
183
9ee4a1d0d7fb
Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents:
182
diff
changeset
|
476 for win in self.chat_wins: |
9ee4a1d0d7fb
Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents:
182
diff
changeset
|
477 self.chat_wins[win].Destroy() |
628
42ee0b0b0a15
wix: fixed application quitting (fix bug 25)
Goffi <goffi@goffi.org>
parents:
609
diff
changeset
|
478 self.tray_icon.Destroy() |
0 | 479 e.Skip() |
11 | 480 |
481 def onTrayClick(self, e): | |
70 | 482 debug(_("Tray Click")) |
11 | 483 if self.IsShown(): |
484 self.Hide() | |
485 else: | |
486 self.Show() | |
487 self.Raise() | |
488 e.Skip() | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
489 |
653
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
490 def chatStateReceived(self, from_jid_s, state, profile): |
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
491 """Signal observer to display a contact chat state |
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
492 @param from_jid_s: contact who sent his new state |
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
493 @state: state |
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
494 @profile: current profile |
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
495 """ |
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
496 print "TODO: chatStateReceived not implemented yet" |
e2eff3c7ad02
wix: bug fix at startup when the method chatStateReceived doesn't exist
souliane <souliane@mailoo.org>
parents:
641
diff
changeset
|
497 pass |