annotate frontends/wix/main_window.py @ 25:53e921c8a357

new plugin: gateways plugin, and first implementation of findGateways - test menu in Wix - new actionResultExt method, for sending dictionary of dictionaries - new getNextId method, for accessing sat ids from plugins.
author Goffi <goffi@goffi.org>
date Fri, 04 Dec 2009 08:47:44 +0100
parents 925ab466c5ec
children c2b131e4e262
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
goffi@necton2
parents:
diff changeset
1 #!/usr/bin/python
goffi@necton2
parents:
diff changeset
2 # -*- coding: utf-8 -*-
goffi@necton2
parents:
diff changeset
3
goffi@necton2
parents:
diff changeset
4 """
goffi@necton2
parents:
diff changeset
5 wix: a SAT frontend
goffi@necton2
parents:
diff changeset
6 Copyright (C) 2009 Jérôme Poisson (goffi@goffi.org)
goffi@necton2
parents:
diff changeset
7
goffi@necton2
parents:
diff changeset
8 This program is free software: you can redistribute it and/or modify
goffi@necton2
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
goffi@necton2
parents:
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
goffi@necton2
parents:
diff changeset
11 (at your option) any later version.
goffi@necton2
parents:
diff changeset
12
goffi@necton2
parents:
diff changeset
13 This program is distributed in the hope that it will be useful,
goffi@necton2
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
goffi@necton2
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
goffi@necton2
parents:
diff changeset
16 GNU General Public License for more details.
goffi@necton2
parents:
diff changeset
17
goffi@necton2
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
goffi@necton2
parents:
diff changeset
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
goffi@necton2
parents:
diff changeset
20 """
goffi@necton2
parents:
diff changeset
21
goffi@necton2
parents:
diff changeset
22
goffi@necton2
parents:
diff changeset
23 import wx
goffi@necton2
parents:
diff changeset
24 from chat import Chat
goffi@necton2
parents:
diff changeset
25 from param import Param
goffi@necton2
parents:
diff changeset
26 import gobject
goffi@necton2
parents:
diff changeset
27 import os.path
goffi@necton2
parents:
diff changeset
28 import pdb
goffi@necton2
parents:
diff changeset
29 from tools.jid import JID
goffi@necton2
parents:
diff changeset
30 from logging import debug, info, error
goffi@necton2
parents:
diff changeset
31 from quick_frontend.quick_chat_list import QuickChatList
goffi@necton2
parents:
diff changeset
32 from quick_frontend.quick_contact_list import QuickContactList
goffi@necton2
parents:
diff changeset
33 from quick_frontend.quick_app import QuickApp
goffi@necton2
parents:
diff changeset
34
goffi@necton2
parents:
diff changeset
35
goffi@necton2
parents:
diff changeset
36 msgOFFLINE = "offline"
goffi@necton2
parents:
diff changeset
37 msgONLINE = "online"
goffi@necton2
parents:
diff changeset
38 idCONNECT = 1
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
39 idDISCONNECT = 2
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
40 idEXIT = 3
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
41 idPARAM = 4
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
42 idADD_CONTACT = 5
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
43 idREMOVE_CONTACT = 6
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
44 idFIND_GATEWAYS = 7
0
goffi@necton2
parents:
diff changeset
45 const_DEFAULT_GROUP = "Unclassed"
goffi@necton2
parents:
diff changeset
46 const_STATUS = {"Online":"",
goffi@necton2
parents:
diff changeset
47 "Want to discuss":"chat",
goffi@necton2
parents:
diff changeset
48 "AFK":"away",
goffi@necton2
parents:
diff changeset
49 "Do Not Disturb":"dnd",
goffi@necton2
parents:
diff changeset
50 "Away":"xa"}
goffi@necton2
parents:
diff changeset
51
goffi@necton2
parents:
diff changeset
52 class ChatList(QuickChatList):
goffi@necton2
parents:
diff changeset
53 """This class manage the list of chat windows"""
goffi@necton2
parents:
diff changeset
54
goffi@necton2
parents:
diff changeset
55 def __init__(self, host):
goffi@necton2
parents:
diff changeset
56 QuickChatList.__init__(self, host)
goffi@necton2
parents:
diff changeset
57
goffi@necton2
parents:
diff changeset
58 def createChat(self, name):
goffi@necton2
parents:
diff changeset
59 return Chat(name, self.host)
goffi@necton2
parents:
diff changeset
60
goffi@necton2
parents:
diff changeset
61
goffi@necton2
parents:
diff changeset
62
goffi@necton2
parents:
diff changeset
63 class ContactList(wx.TreeCtrl, QuickContactList):
goffi@necton2
parents:
diff changeset
64 """Customized control to manage contacts."""
goffi@necton2
parents:
diff changeset
65
goffi@necton2
parents:
diff changeset
66 def __init__(self, parent):
goffi@necton2
parents:
diff changeset
67 wx.TreeCtrl.__init__(self, parent, style = wx.TR_HIDE_ROOT | wx.TR_HAS_BUTTONS)
goffi@necton2
parents:
diff changeset
68 QuickContactList.__init__(self)
goffi@necton2
parents:
diff changeset
69 self.jid_ids={}
goffi@necton2
parents:
diff changeset
70 self.groups={}
goffi@necton2
parents:
diff changeset
71 self.root=self.AddRoot("")
goffi@necton2
parents:
diff changeset
72 self.Bind(wx.EVT_TREE_ITEM_ACTIVATED, self.onActivated, self)
goffi@necton2
parents:
diff changeset
73
goffi@necton2
parents:
diff changeset
74 #icons
goffi@necton2
parents:
diff changeset
75 isz = (16,16)
goffi@necton2
parents:
diff changeset
76 il = wx.ImageList(isz[0], isz[1])
goffi@necton2
parents:
diff changeset
77 self.icon_online = il.Add(wx.ArtProvider_GetBitmap(wx.ART_TICK_MARK, wx.ART_OTHER, isz))
goffi@necton2
parents:
diff changeset
78 self.icon_unavailable = il.Add(wx.ArtProvider_GetBitmap(wx.ART_CROSS_MARK, wx.ART_OTHER, isz))
goffi@necton2
parents:
diff changeset
79 self.AssignImageList(il)
goffi@necton2
parents:
diff changeset
80
goffi@necton2
parents:
diff changeset
81 self.__addNode(const_DEFAULT_GROUP)
goffi@necton2
parents:
diff changeset
82
goffi@necton2
parents:
diff changeset
83 def __addNode(self, label):
goffi@necton2
parents:
diff changeset
84 """Add an item container"""
goffi@necton2
parents:
diff changeset
85 ret=self.AppendItem(self.root, label)
goffi@necton2
parents:
diff changeset
86 self.SetPyData(ret, "[node]")
goffi@necton2
parents:
diff changeset
87 self.SetItemBold(ret)
goffi@necton2
parents:
diff changeset
88 self.groups[label]=ret
goffi@necton2
parents:
diff changeset
89
goffi@necton2
parents:
diff changeset
90 def replace(self, jid, name="", show="", status="", group=""):
goffi@necton2
parents:
diff changeset
91 debug("status = %s show = %s",status, show)
goffi@necton2
parents:
diff changeset
92 if not self.jid_ids.has_key(jid):
goffi@necton2
parents:
diff changeset
93 self.add(jid, name, show, status, group)
goffi@necton2
parents:
diff changeset
94 else:
goffi@necton2
parents:
diff changeset
95 debug ("updating %s",jid)
goffi@necton2
parents:
diff changeset
96 self.__presentItem(jid, name, show, status, group)
goffi@necton2
parents:
diff changeset
97
goffi@necton2
parents:
diff changeset
98 def __presentItem(self, jid, name, show, status, group):
goffi@necton2
parents:
diff changeset
99 """Make a nice presentation of the contact in the list."""
goffi@necton2
parents:
diff changeset
100 id=self.jid_ids[jid]
goffi@necton2
parents:
diff changeset
101 label= "%s [%s] \n %s" % ((name or jid), (show or "online"), status)
goffi@necton2
parents:
diff changeset
102 self.SetItemText(id, label)
goffi@necton2
parents:
diff changeset
103
goffi@necton2
parents:
diff changeset
104 # icon
goffi@necton2
parents:
diff changeset
105 if not show or show=="chat":
goffi@necton2
parents:
diff changeset
106 self.SetItemImage(id, self.icon_online)
goffi@necton2
parents:
diff changeset
107 else:
goffi@necton2
parents:
diff changeset
108 self.SetItemImage(id, self.icon_unavailable)
goffi@necton2
parents:
diff changeset
109
goffi@necton2
parents:
diff changeset
110 #colour
goffi@necton2
parents:
diff changeset
111 if not show:
goffi@necton2
parents:
diff changeset
112 self.SetItemTextColour(id, wx.BLACK)
goffi@necton2
parents:
diff changeset
113 elif show=="chat":
goffi@necton2
parents:
diff changeset
114 self.SetItemTextColour(id, wx.GREEN)
goffi@necton2
parents:
diff changeset
115 elif show=="away":
goffi@necton2
parents:
diff changeset
116 self.SetItemTextColour(id, wx.BLUE)
goffi@necton2
parents:
diff changeset
117 else:
goffi@necton2
parents:
diff changeset
118 self.SetItemTextColour(id, wx.RED)
goffi@necton2
parents:
diff changeset
119
goffi@necton2
parents:
diff changeset
120 def add(self, jid, name="", show="", status="", group=""):
goffi@necton2
parents:
diff changeset
121 """add a contact to the list"""
goffi@necton2
parents:
diff changeset
122 debug ("adding %s",jid)
goffi@necton2
parents:
diff changeset
123 dest_group=group or const_DEFAULT_GROUP
goffi@necton2
parents:
diff changeset
124 if not self.groups.has_key(dest_group):
goffi@necton2
parents:
diff changeset
125 self.__addNode(dest_group)
goffi@necton2
parents:
diff changeset
126 self.jid_ids[jid]=self.AppendItem(self.groups[dest_group], "")
goffi@necton2
parents:
diff changeset
127 self.__presentItem(jid, name, show, status, group)
goffi@necton2
parents:
diff changeset
128 self.SetPyData(self.jid_ids[jid], "[contact]"+jid)
goffi@necton2
parents:
diff changeset
129 self.EnsureVisible(self.jid_ids[jid])
goffi@necton2
parents:
diff changeset
130 self.Refresh() #FIXME: Best way ?
goffi@necton2
parents:
diff changeset
131
goffi@necton2
parents:
diff changeset
132 def remove(self, jid):
goffi@necton2
parents:
diff changeset
133 """remove a contact from the list"""
goffi@necton2
parents:
diff changeset
134 debug ("removing %s",jid)
goffi@necton2
parents:
diff changeset
135 self.Delete(self.jid_ids[jid])
goffi@necton2
parents:
diff changeset
136 del self.jid_ids[jid]
goffi@necton2
parents:
diff changeset
137 self.Refresh() #FIXME: Best way ?
goffi@necton2
parents:
diff changeset
138
goffi@necton2
parents:
diff changeset
139 def onActivated(self, event):
goffi@necton2
parents:
diff changeset
140 """Called when a contact is clicked or activated with keyboard."""
goffi@necton2
parents:
diff changeset
141 if self.GetPyData(event.GetItem()).startswith("[contact]"):
goffi@necton2
parents:
diff changeset
142 self.onActivatedCB(self.GetPyData(event.GetItem())[9:])
goffi@necton2
parents:
diff changeset
143 else:
goffi@necton2
parents:
diff changeset
144 event.Skip()
goffi@necton2
parents:
diff changeset
145
goffi@necton2
parents:
diff changeset
146 def getSelection(self):
goffi@necton2
parents:
diff changeset
147 """Return the selected contact, or an empty string if there is not"""
goffi@necton2
parents:
diff changeset
148 data = self.GetPyData(self.GetSelection())
goffi@necton2
parents:
diff changeset
149 if not data or not data.startswith("[contact]"):
goffi@necton2
parents:
diff changeset
150 return ""
goffi@necton2
parents:
diff changeset
151 return JID(data[9:])
goffi@necton2
parents:
diff changeset
152
goffi@necton2
parents:
diff changeset
153 def registerActivatedCB(self, cb):
goffi@necton2
parents:
diff changeset
154 """Register a callback with manage contact activation."""
goffi@necton2
parents:
diff changeset
155 self.onActivatedCB=cb
goffi@necton2
parents:
diff changeset
156
goffi@necton2
parents:
diff changeset
157 class MainWindow(wx.Frame, QuickApp):
goffi@necton2
parents:
diff changeset
158 """main app window"""
goffi@necton2
parents:
diff changeset
159
goffi@necton2
parents:
diff changeset
160 def __init__(self):
goffi@necton2
parents:
diff changeset
161 wx.Frame.__init__(self,None, title="SAT Wix", size=(400,200))
goffi@necton2
parents:
diff changeset
162
goffi@necton2
parents:
diff changeset
163
goffi@necton2
parents:
diff changeset
164 #Frame elements
goffi@necton2
parents:
diff changeset
165 self.contactList = ContactList(self)
goffi@necton2
parents:
diff changeset
166 self.contactList.registerActivatedCB(self.onContactActivated)
goffi@necton2
parents:
diff changeset
167 self.chat_wins=ChatList(self)
goffi@necton2
parents:
diff changeset
168 self.CreateStatusBar()
goffi@necton2
parents:
diff changeset
169 self.SetStatusText(msgOFFLINE)
goffi@necton2
parents:
diff changeset
170 self.createMenus()
goffi@necton2
parents:
diff changeset
171
goffi@necton2
parents:
diff changeset
172 #ToolBar
goffi@necton2
parents:
diff changeset
173 self.tools=self.CreateToolBar()
goffi@necton2
parents:
diff changeset
174 self.statusBox = wx.ComboBox(self.tools, -1, "Online", choices=const_STATUS.keys(),
goffi@necton2
parents:
diff changeset
175 style=wx.CB_DROPDOWN | wx.CB_READONLY)
goffi@necton2
parents:
diff changeset
176 self.tools.AddControl(self.statusBox)
goffi@necton2
parents:
diff changeset
177 self.tools.AddSeparator()
goffi@necton2
parents:
diff changeset
178 self.statusTxt=wx.TextCtrl(self.tools, -1, style = wx.TE_PROCESS_ENTER)
goffi@necton2
parents:
diff changeset
179 self.tools.AddControl(self.statusTxt)
goffi@necton2
parents:
diff changeset
180 self.Bind(wx.EVT_COMBOBOX, self.onStatusChange, self.statusBox)
goffi@necton2
parents:
diff changeset
181 self.Bind(wx.EVT_TEXT_ENTER, self.onStatusChange, self.statusTxt)
goffi@necton2
parents:
diff changeset
182 self.tools.Disable()
11
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
183
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
184 #tray icon
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
185 ticon = wx.Icon("images/tray_icon.xpm", wx.BITMAP_TYPE_XPM)
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
186 self.tray_icon = wx.TaskBarIcon()
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
187 self.tray_icon.SetIcon(ticon, "Wix jabber client")
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
188 wx.EVT_TASKBAR_LEFT_UP(self.tray_icon, self.onTrayClick)
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
189
0
goffi@necton2
parents:
diff changeset
190
goffi@necton2
parents:
diff changeset
191 #events
goffi@necton2
parents:
diff changeset
192 self.Bind(wx.EVT_CLOSE, self.onClose, self)
goffi@necton2
parents:
diff changeset
193
goffi@necton2
parents:
diff changeset
194 QuickApp.__init__(self)
goffi@necton2
parents:
diff changeset
195
goffi@necton2
parents:
diff changeset
196 self.Show()
goffi@necton2
parents:
diff changeset
197
goffi@necton2
parents:
diff changeset
198 def createMenus(self):
goffi@necton2
parents:
diff changeset
199 info("Creating menus")
goffi@necton2
parents:
diff changeset
200 connectMenu = wx.Menu()
goffi@necton2
parents:
diff changeset
201 connectMenu.Append(idCONNECT, "&Connect CTRL-c"," Connect to the server")
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
202 connectMenu.Append(idDISCONNECT, "&Disconnect CTRL-d"," Disconnect from the server")
0
goffi@necton2
parents:
diff changeset
203 connectMenu.Append(idPARAM,"&Parameters"," Configure the program")
goffi@necton2
parents:
diff changeset
204 connectMenu.AppendSeparator()
goffi@necton2
parents:
diff changeset
205 connectMenu.Append(idEXIT,"E&xit"," Terminate the program")
goffi@necton2
parents:
diff changeset
206 contactMenu = wx.Menu()
goffi@necton2
parents:
diff changeset
207 contactMenu.Append(idADD_CONTACT, "&Add contact"," Add a contact to your list")
goffi@necton2
parents:
diff changeset
208 contactMenu.Append(idREMOVE_CONTACT, "&Remove contact"," Remove the selected contact from your list")
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
209 communicationMenu = wx.Menu()
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
210 communicationMenu.Append(idFIND_GATEWAYS, "&Find Gateways"," Find gateways to legacy IM")
0
goffi@necton2
parents:
diff changeset
211 menuBar = wx.MenuBar()
goffi@necton2
parents:
diff changeset
212 menuBar.Append(connectMenu,"&General")
goffi@necton2
parents:
diff changeset
213 menuBar.Append(contactMenu,"&Contacts")
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
214 menuBar.Append(communicationMenu,"&Communication")
0
goffi@necton2
parents:
diff changeset
215 self.SetMenuBar(menuBar)
goffi@necton2
parents:
diff changeset
216
goffi@necton2
parents:
diff changeset
217 #events
goffi@necton2
parents:
diff changeset
218 wx.EVT_MENU(self, idCONNECT, self.onConnectRequest)
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
219 wx.EVT_MENU(self, idDISCONNECT, self.onDisconnectRequest)
0
goffi@necton2
parents:
diff changeset
220 wx.EVT_MENU(self, idPARAM, self.onParam)
goffi@necton2
parents:
diff changeset
221 wx.EVT_MENU(self, idEXIT, self.onExit)
goffi@necton2
parents:
diff changeset
222 wx.EVT_MENU(self, idADD_CONTACT, self.onAddContact)
goffi@necton2
parents:
diff changeset
223 wx.EVT_MENU(self, idREMOVE_CONTACT, self.onRemoveContact)
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
224 wx.EVT_MENU(self, idFIND_GATEWAYS, self.onFindGateways)
0
goffi@necton2
parents:
diff changeset
225
goffi@necton2
parents:
diff changeset
226
goffi@necton2
parents:
diff changeset
227 def newMessage(self, from_jid, msg, type, to_jid):
goffi@necton2
parents:
diff changeset
228 QuickApp.newMessage(self, from_jid, msg, type, to_jid)
goffi@necton2
parents:
diff changeset
229
goffi@necton2
parents:
diff changeset
230 def showAlert(self, message):
goffi@necton2
parents:
diff changeset
231 # TODO: place this in a separate class
goffi@necton2
parents:
diff changeset
232 popup=wx.PopupWindow(self)
goffi@necton2
parents:
diff changeset
233 ### following code come from wxpython demo
goffi@necton2
parents:
diff changeset
234 popup.SetBackgroundColour("CADET BLUE")
goffi@necton2
parents:
diff changeset
235 st = wx.StaticText(popup, -1, message, pos=(10,10))
goffi@necton2
parents:
diff changeset
236 sz = st.GetBestSize()
goffi@necton2
parents:
diff changeset
237 popup.SetSize( (sz.width+20, sz.height+20) )
goffi@necton2
parents:
diff changeset
238 x=(wx.DisplaySize()[0]-popup.GetSize()[0])/2
goffi@necton2
parents:
diff changeset
239 popup.SetPosition((x,0))
goffi@necton2
parents:
diff changeset
240 popup.Show()
goffi@necton2
parents:
diff changeset
241 wx.CallLater(5000,popup.Destroy)
goffi@necton2
parents:
diff changeset
242
goffi@necton2
parents:
diff changeset
243 def showDialog(self, message, title="", type="info"):
goffi@necton2
parents:
diff changeset
244 if type == 'info':
goffi@necton2
parents:
diff changeset
245 flags = wx.OK | wx.ICON_INFORMATION
goffi@necton2
parents:
diff changeset
246 elif type == 'error':
goffi@necton2
parents:
diff changeset
247 flags = wx.OK | wx.ICON_ERROR
goffi@necton2
parents:
diff changeset
248 elif type == 'question':
goffi@necton2
parents:
diff changeset
249 flags = wx.OK | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
250 else:
goffi@necton2
parents:
diff changeset
251 flags = wx.OK | wx.ICON_INFORMATION
goffi@necton2
parents:
diff changeset
252 dlg = wx.MessageDialog(self, message, title, flags)
goffi@necton2
parents:
diff changeset
253 answer = dlg.ShowModal()
goffi@necton2
parents:
diff changeset
254 dlg.Destroy()
goffi@necton2
parents:
diff changeset
255 return True if (answer == wx.ID_YES or answer == wx.ID_OK) else False
goffi@necton2
parents:
diff changeset
256
goffi@necton2
parents:
diff changeset
257 def setStatusOnline(self, online=True):
goffi@necton2
parents:
diff changeset
258 """enable/disable controls, must be called when local user online status change"""
goffi@necton2
parents:
diff changeset
259 if online:
goffi@necton2
parents:
diff changeset
260 self.SetStatusText(msgONLINE)
goffi@necton2
parents:
diff changeset
261 self.tools.Enable()
goffi@necton2
parents:
diff changeset
262 else:
goffi@necton2
parents:
diff changeset
263 self.SetStatusText(msgOFFLINE)
goffi@necton2
parents:
diff changeset
264 self.tools.Disable()
goffi@necton2
parents:
diff changeset
265 return
goffi@necton2
parents:
diff changeset
266
goffi@necton2
parents:
diff changeset
267
goffi@necton2
parents:
diff changeset
268 def presenceUpdate(self, jabber_id, type, show, status, priority):
goffi@necton2
parents:
diff changeset
269 QuickApp.presenceUpdate(self, jabber_id, type, show, status, priority)
goffi@necton2
parents:
diff changeset
270
goffi@necton2
parents:
diff changeset
271 def askConfirmation(self, type, id, data):
goffi@necton2
parents:
diff changeset
272 #TODO: refactor this in QuickApp
goffi@necton2
parents:
diff changeset
273 debug ("Confirmation asked")
goffi@necton2
parents:
diff changeset
274 answer_data={}
goffi@necton2
parents:
diff changeset
275 if type == "FILE_TRANSFERT":
goffi@necton2
parents:
diff changeset
276 debug ("File transfert confirmation asked")
goffi@necton2
parents:
diff changeset
277 dlg = wx.MessageDialog(self, "The contact %s wants to send you the file %s\nDo you accept ?" % (data["from"], data["filename"]),
goffi@necton2
parents:
diff changeset
278 'File Request',
goffi@necton2
parents:
diff changeset
279 wx.YES_NO | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
280 )
goffi@necton2
parents:
diff changeset
281 answer=dlg.ShowModal()
goffi@necton2
parents:
diff changeset
282 if answer==wx.ID_YES:
goffi@necton2
parents:
diff changeset
283 filename = wx.FileSelector("Where do you want to save the file ?", flags = wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
goffi@necton2
parents:
diff changeset
284 if filename:
goffi@necton2
parents:
diff changeset
285 answer_data["dest_path"] = filename
goffi@necton2
parents:
diff changeset
286 self.bridge.confirmationAnswer(id, True, answer_data)
goffi@necton2
parents:
diff changeset
287 self.waitProgress(id, "File Transfer", "Copying %s" % os.path.basename(filename))
goffi@necton2
parents:
diff changeset
288 else:
goffi@necton2
parents:
diff changeset
289 answer = wx.ID_NO
goffi@necton2
parents:
diff changeset
290 if answer==wx.ID_NO:
goffi@necton2
parents:
diff changeset
291 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
292
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
293 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
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 elif type == "YES/NO":
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
296 debug ("Yes/No confirmation asked")
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
297 dlg = wx.MessageDialog(self, data["message"],
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
298 'Confirmation',
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
299 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
300 )
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
301 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
302 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
303 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
304 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
305 self.bridge.confirmationAnswer(id, False, {})
0
goffi@necton2
parents:
diff changeset
306
goffi@necton2
parents:
diff changeset
307 dlg.Destroy()
goffi@necton2
parents:
diff changeset
308
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
309 def actionResult(self, type, id, data):
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
310 debug ("actionResult: type = [%s] id = [%s] data = [%s]" % (type, id, 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
311 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
312 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
313 elif type == "SUCCESS":
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
314 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
315 dlg = wx.MessageDialog(self, data["message"],
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
316 'Success',
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
317 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
318 )
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
319 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
320 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
321 elif type == "ERROR":
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
322 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
323 dlg = wx.MessageDialog(self, data["message"],
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
324 'Error',
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
325 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
326 )
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
327 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
328 dlg.Destroy()
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
329 elif type == "DICT_DICT":
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
330 print ("Dict of dict found as result")
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
331 else:
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
332 error ("FIXME FIXME FIXME: type [%s] not implemented" % type)
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
333 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
334
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
335
0
goffi@necton2
parents:
diff changeset
336
goffi@necton2
parents:
diff changeset
337 def progressCB(self, id, title, message):
goffi@necton2
parents:
diff changeset
338 data = self.bridge.getProgress(id)
goffi@necton2
parents:
diff changeset
339 if data:
goffi@necton2
parents:
diff changeset
340 if not data['position']:
goffi@necton2
parents:
diff changeset
341 data['position'] = '0'
goffi@necton2
parents:
diff changeset
342 if not self.pbar:
goffi@necton2
parents:
diff changeset
343 #first answer, we must construct the bar
goffi@necton2
parents:
diff changeset
344 self.pbar = wx.ProgressDialog(title, message, int(data['size']), None,
goffi@necton2
parents:
diff changeset
345 wx.PD_SMOOTH | wx.PD_ELAPSED_TIME | wx.PD_ESTIMATED_TIME | wx.PD_REMAINING_TIME)
goffi@necton2
parents:
diff changeset
346 self.pbar.finish_value = int(data['size'])
goffi@necton2
parents:
diff changeset
347
goffi@necton2
parents:
diff changeset
348 self.pbar.Update(int(data['position']))
goffi@necton2
parents:
diff changeset
349 elif self.pbar:
goffi@necton2
parents:
diff changeset
350 self.pbar.Update(self.pbar.finish_value)
goffi@necton2
parents:
diff changeset
351 return
goffi@necton2
parents:
diff changeset
352
goffi@necton2
parents:
diff changeset
353 wx.CallLater(10, self.progressCB, id, title, message)
goffi@necton2
parents:
diff changeset
354
goffi@necton2
parents:
diff changeset
355 def waitProgress (self, id, title, message):
goffi@necton2
parents:
diff changeset
356 self.pbar = None
goffi@necton2
parents:
diff changeset
357 wx.CallLater(10, self.progressCB, id, title, message)
goffi@necton2
parents:
diff changeset
358
goffi@necton2
parents:
diff changeset
359
goffi@necton2
parents:
diff changeset
360
goffi@necton2
parents:
diff changeset
361 ### events ###
goffi@necton2
parents:
diff changeset
362
goffi@necton2
parents:
diff changeset
363 def onContactActivated(self, jid):
goffi@necton2
parents:
diff changeset
364 debug ("onContactActivated: %s", jid)
goffi@necton2
parents:
diff changeset
365 if self.chat_wins[jid].IsShown():
goffi@necton2
parents:
diff changeset
366 self.chat_wins[jid].Hide()
goffi@necton2
parents:
diff changeset
367 else:
goffi@necton2
parents:
diff changeset
368 self.chat_wins[jid].Show()
goffi@necton2
parents:
diff changeset
369
goffi@necton2
parents:
diff changeset
370 def onConnectRequest(self, e):
goffi@necton2
parents:
diff changeset
371 self.bridge.connect()
goffi@necton2
parents:
diff changeset
372
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
373 def onDisconnectRequest(self, e):
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
374 self.bridge.disconnect()
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
375
0
goffi@necton2
parents:
diff changeset
376 def __updateStatus(self):
goffi@necton2
parents:
diff changeset
377 show = const_STATUS[self.statusBox.GetValue()]
goffi@necton2
parents:
diff changeset
378 status = self.statusTxt.GetValue()
goffi@necton2
parents:
diff changeset
379 self.bridge.setPresence(show=show, status=status)
goffi@necton2
parents:
diff changeset
380
goffi@necton2
parents:
diff changeset
381 def onStatusChange(self, e):
goffi@necton2
parents:
diff changeset
382 debug("Status change request")
goffi@necton2
parents:
diff changeset
383 self.__updateStatus()
goffi@necton2
parents:
diff changeset
384
goffi@necton2
parents:
diff changeset
385 def onParam(self, e):
goffi@necton2
parents:
diff changeset
386 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
387 param=Param(self)
0
goffi@necton2
parents:
diff changeset
388
goffi@necton2
parents:
diff changeset
389 def onExit(self, e):
goffi@necton2
parents:
diff changeset
390 self.Close()
goffi@necton2
parents:
diff changeset
391
goffi@necton2
parents:
diff changeset
392 def onAddContact(self, e):
goffi@necton2
parents:
diff changeset
393 debug("Add contact request")
goffi@necton2
parents:
diff changeset
394 dlg = wx.TextEntryDialog(
goffi@necton2
parents:
diff changeset
395 self, 'Please enter new contact JID',
goffi@necton2
parents:
diff changeset
396 'Adding a contact', 'name@server.ext')
goffi@necton2
parents:
diff changeset
397
goffi@necton2
parents:
diff changeset
398 if dlg.ShowModal() == wx.ID_OK:
goffi@necton2
parents:
diff changeset
399 jid=JID(dlg.GetValue())
goffi@necton2
parents:
diff changeset
400 if jid.is_valid():
goffi@necton2
parents:
diff changeset
401 self.bridge.addContact(jid.short)
goffi@necton2
parents:
diff changeset
402 else:
goffi@necton2
parents:
diff changeset
403 error ("'%s' is an invalid JID !", jid)
goffi@necton2
parents:
diff changeset
404 #TODO: notice the user
goffi@necton2
parents:
diff changeset
405
goffi@necton2
parents:
diff changeset
406 dlg.Destroy()
goffi@necton2
parents:
diff changeset
407
goffi@necton2
parents:
diff changeset
408 def onRemoveContact(self, e):
goffi@necton2
parents:
diff changeset
409 debug("Remove contact request")
goffi@necton2
parents:
diff changeset
410 target = self.contactList.getSelection()
goffi@necton2
parents:
diff changeset
411 if not target:
goffi@necton2
parents:
diff changeset
412 dlg = wx.MessageDialog(self, "You haven't selected any contact !",
goffi@necton2
parents:
diff changeset
413 'Error',
goffi@necton2
parents:
diff changeset
414 wx.OK | wx.ICON_ERROR
goffi@necton2
parents:
diff changeset
415 )
goffi@necton2
parents:
diff changeset
416 dlg.ShowModal()
goffi@necton2
parents:
diff changeset
417 dlg.Destroy()
goffi@necton2
parents:
diff changeset
418 return
goffi@necton2
parents:
diff changeset
419
goffi@necton2
parents:
diff changeset
420 dlg = wx.MessageDialog(self, "Are you sure you want to delete %s from your roster list ?" % target.short,
goffi@necton2
parents:
diff changeset
421 'Contact suppression',
goffi@necton2
parents:
diff changeset
422 wx.YES_NO | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
423 )
goffi@necton2
parents:
diff changeset
424
goffi@necton2
parents:
diff changeset
425 if dlg.ShowModal() == wx.ID_YES:
goffi@necton2
parents:
diff changeset
426 info("Unsubsribing %s presence", target.short)
goffi@necton2
parents:
diff changeset
427 self.bridge.delContact(target.short)
goffi@necton2
parents:
diff changeset
428
goffi@necton2
parents:
diff changeset
429 dlg.Destroy()
goffi@necton2
parents:
diff changeset
430
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
431 def onFindGateways(self, e):
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
432 debug("Find Gateways request")
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
433 id = self.bridge.findGateways(self.whoami.domain)
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
434 print "Find Gateways id=", id
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
435
0
goffi@necton2
parents:
diff changeset
436 def onClose(self, e):
goffi@necton2
parents:
diff changeset
437 info("Exiting...")
goffi@necton2
parents:
diff changeset
438 e.Skip()
11
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
439
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
440 def onTrayClick(self, e):
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
441 debug("Tray Click")
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
442 if self.IsShown():
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
443 self.Hide()
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
444 else:
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
445 self.Show()
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
446 self.Raise()
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
447 e.Skip()
0
goffi@necton2
parents:
diff changeset
448