annotate frontends/wix/main_window.py @ 1:a06a151fc31f

Disconnect first draft
author Goffi <goffi@goffi.org>
date Sun, 18 Oct 2009 23:20:45 +0200
parents c4bc297b82f0
children 37153f3a3dc1
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
0
goffi@necton2
parents:
diff changeset
44 const_DEFAULT_GROUP = "Unclassed"
goffi@necton2
parents:
diff changeset
45 const_STATUS = {"Online":"",
goffi@necton2
parents:
diff changeset
46 "Want to discuss":"chat",
goffi@necton2
parents:
diff changeset
47 "AFK":"away",
goffi@necton2
parents:
diff changeset
48 "Do Not Disturb":"dnd",
goffi@necton2
parents:
diff changeset
49 "Away":"xa"}
goffi@necton2
parents:
diff changeset
50
goffi@necton2
parents:
diff changeset
51 class ChatList(QuickChatList):
goffi@necton2
parents:
diff changeset
52 """This class manage the list of chat windows"""
goffi@necton2
parents:
diff changeset
53
goffi@necton2
parents:
diff changeset
54 def __init__(self, host):
goffi@necton2
parents:
diff changeset
55 QuickChatList.__init__(self, host)
goffi@necton2
parents:
diff changeset
56
goffi@necton2
parents:
diff changeset
57 def createChat(self, name):
goffi@necton2
parents:
diff changeset
58 return Chat(name, self.host)
goffi@necton2
parents:
diff changeset
59
goffi@necton2
parents:
diff changeset
60
goffi@necton2
parents:
diff changeset
61
goffi@necton2
parents:
diff changeset
62 class ContactList(wx.TreeCtrl, QuickContactList):
goffi@necton2
parents:
diff changeset
63 """Customized control to manage contacts."""
goffi@necton2
parents:
diff changeset
64
goffi@necton2
parents:
diff changeset
65 def __init__(self, parent):
goffi@necton2
parents:
diff changeset
66 wx.TreeCtrl.__init__(self, parent, style = wx.TR_HIDE_ROOT | wx.TR_HAS_BUTTONS)
goffi@necton2
parents:
diff changeset
67 QuickContactList.__init__(self)
goffi@necton2
parents:
diff changeset
68 self.jid_ids={}
goffi@necton2
parents:
diff changeset
69 self.groups={}
goffi@necton2
parents:
diff changeset
70 self.root=self.AddRoot("")
goffi@necton2
parents:
diff changeset
71 self.Bind(wx.EVT_TREE_ITEM_ACTIVATED, self.onActivated, self)
goffi@necton2
parents:
diff changeset
72
goffi@necton2
parents:
diff changeset
73 #icons
goffi@necton2
parents:
diff changeset
74 isz = (16,16)
goffi@necton2
parents:
diff changeset
75 il = wx.ImageList(isz[0], isz[1])
goffi@necton2
parents:
diff changeset
76 self.icon_online = il.Add(wx.ArtProvider_GetBitmap(wx.ART_TICK_MARK, wx.ART_OTHER, isz))
goffi@necton2
parents:
diff changeset
77 self.icon_unavailable = il.Add(wx.ArtProvider_GetBitmap(wx.ART_CROSS_MARK, wx.ART_OTHER, isz))
goffi@necton2
parents:
diff changeset
78 self.AssignImageList(il)
goffi@necton2
parents:
diff changeset
79
goffi@necton2
parents:
diff changeset
80 self.__addNode(const_DEFAULT_GROUP)
goffi@necton2
parents:
diff changeset
81
goffi@necton2
parents:
diff changeset
82 def __addNode(self, label):
goffi@necton2
parents:
diff changeset
83 """Add an item container"""
goffi@necton2
parents:
diff changeset
84 ret=self.AppendItem(self.root, label)
goffi@necton2
parents:
diff changeset
85 self.SetPyData(ret, "[node]")
goffi@necton2
parents:
diff changeset
86 self.SetItemBold(ret)
goffi@necton2
parents:
diff changeset
87 self.groups[label]=ret
goffi@necton2
parents:
diff changeset
88
goffi@necton2
parents:
diff changeset
89 def replace(self, jid, name="", show="", status="", group=""):
goffi@necton2
parents:
diff changeset
90 debug("status = %s show = %s",status, show)
goffi@necton2
parents:
diff changeset
91 if not self.jid_ids.has_key(jid):
goffi@necton2
parents:
diff changeset
92 self.add(jid, name, show, status, group)
goffi@necton2
parents:
diff changeset
93 else:
goffi@necton2
parents:
diff changeset
94 debug ("updating %s",jid)
goffi@necton2
parents:
diff changeset
95 self.__presentItem(jid, name, show, status, group)
goffi@necton2
parents:
diff changeset
96
goffi@necton2
parents:
diff changeset
97 def __presentItem(self, jid, name, show, status, group):
goffi@necton2
parents:
diff changeset
98 """Make a nice presentation of the contact in the list."""
goffi@necton2
parents:
diff changeset
99 id=self.jid_ids[jid]
goffi@necton2
parents:
diff changeset
100 label= "%s [%s] \n %s" % ((name or jid), (show or "online"), status)
goffi@necton2
parents:
diff changeset
101 self.SetItemText(id, label)
goffi@necton2
parents:
diff changeset
102
goffi@necton2
parents:
diff changeset
103 # icon
goffi@necton2
parents:
diff changeset
104 if not show or show=="chat":
goffi@necton2
parents:
diff changeset
105 self.SetItemImage(id, self.icon_online)
goffi@necton2
parents:
diff changeset
106 else:
goffi@necton2
parents:
diff changeset
107 self.SetItemImage(id, self.icon_unavailable)
goffi@necton2
parents:
diff changeset
108
goffi@necton2
parents:
diff changeset
109 #colour
goffi@necton2
parents:
diff changeset
110 if not show:
goffi@necton2
parents:
diff changeset
111 self.SetItemTextColour(id, wx.BLACK)
goffi@necton2
parents:
diff changeset
112 elif show=="chat":
goffi@necton2
parents:
diff changeset
113 self.SetItemTextColour(id, wx.GREEN)
goffi@necton2
parents:
diff changeset
114 elif show=="away":
goffi@necton2
parents:
diff changeset
115 self.SetItemTextColour(id, wx.BLUE)
goffi@necton2
parents:
diff changeset
116 else:
goffi@necton2
parents:
diff changeset
117 self.SetItemTextColour(id, wx.RED)
goffi@necton2
parents:
diff changeset
118
goffi@necton2
parents:
diff changeset
119 def add(self, jid, name="", show="", status="", group=""):
goffi@necton2
parents:
diff changeset
120 """add a contact to the list"""
goffi@necton2
parents:
diff changeset
121 debug ("adding %s",jid)
goffi@necton2
parents:
diff changeset
122 dest_group=group or const_DEFAULT_GROUP
goffi@necton2
parents:
diff changeset
123 if not self.groups.has_key(dest_group):
goffi@necton2
parents:
diff changeset
124 self.__addNode(dest_group)
goffi@necton2
parents:
diff changeset
125 self.jid_ids[jid]=self.AppendItem(self.groups[dest_group], "")
goffi@necton2
parents:
diff changeset
126 self.__presentItem(jid, name, show, status, group)
goffi@necton2
parents:
diff changeset
127 self.SetPyData(self.jid_ids[jid], "[contact]"+jid)
goffi@necton2
parents:
diff changeset
128 self.EnsureVisible(self.jid_ids[jid])
goffi@necton2
parents:
diff changeset
129 self.Refresh() #FIXME: Best way ?
goffi@necton2
parents:
diff changeset
130
goffi@necton2
parents:
diff changeset
131 def remove(self, jid):
goffi@necton2
parents:
diff changeset
132 """remove a contact from the list"""
goffi@necton2
parents:
diff changeset
133 debug ("removing %s",jid)
goffi@necton2
parents:
diff changeset
134 self.Delete(self.jid_ids[jid])
goffi@necton2
parents:
diff changeset
135 del self.jid_ids[jid]
goffi@necton2
parents:
diff changeset
136 self.Refresh() #FIXME: Best way ?
goffi@necton2
parents:
diff changeset
137
goffi@necton2
parents:
diff changeset
138 def onActivated(self, event):
goffi@necton2
parents:
diff changeset
139 """Called when a contact is clicked or activated with keyboard."""
goffi@necton2
parents:
diff changeset
140 if self.GetPyData(event.GetItem()).startswith("[contact]"):
goffi@necton2
parents:
diff changeset
141 self.onActivatedCB(self.GetPyData(event.GetItem())[9:])
goffi@necton2
parents:
diff changeset
142 else:
goffi@necton2
parents:
diff changeset
143 event.Skip()
goffi@necton2
parents:
diff changeset
144
goffi@necton2
parents:
diff changeset
145 def getSelection(self):
goffi@necton2
parents:
diff changeset
146 """Return the selected contact, or an empty string if there is not"""
goffi@necton2
parents:
diff changeset
147 data = self.GetPyData(self.GetSelection())
goffi@necton2
parents:
diff changeset
148 if not data or not data.startswith("[contact]"):
goffi@necton2
parents:
diff changeset
149 return ""
goffi@necton2
parents:
diff changeset
150 return JID(data[9:])
goffi@necton2
parents:
diff changeset
151
goffi@necton2
parents:
diff changeset
152 def registerActivatedCB(self, cb):
goffi@necton2
parents:
diff changeset
153 """Register a callback with manage contact activation."""
goffi@necton2
parents:
diff changeset
154 self.onActivatedCB=cb
goffi@necton2
parents:
diff changeset
155
goffi@necton2
parents:
diff changeset
156 class MainWindow(wx.Frame, QuickApp):
goffi@necton2
parents:
diff changeset
157 """main app window"""
goffi@necton2
parents:
diff changeset
158
goffi@necton2
parents:
diff changeset
159 def __init__(self):
goffi@necton2
parents:
diff changeset
160 wx.Frame.__init__(self,None, title="SAT Wix", size=(400,200))
goffi@necton2
parents:
diff changeset
161
goffi@necton2
parents:
diff changeset
162
goffi@necton2
parents:
diff changeset
163 #Frame elements
goffi@necton2
parents:
diff changeset
164 self.contactList = ContactList(self)
goffi@necton2
parents:
diff changeset
165 self.contactList.registerActivatedCB(self.onContactActivated)
goffi@necton2
parents:
diff changeset
166 self.chat_wins=ChatList(self)
goffi@necton2
parents:
diff changeset
167 self.CreateStatusBar()
goffi@necton2
parents:
diff changeset
168 self.SetStatusText(msgOFFLINE)
goffi@necton2
parents:
diff changeset
169 self.createMenus()
goffi@necton2
parents:
diff changeset
170
goffi@necton2
parents:
diff changeset
171 #ToolBar
goffi@necton2
parents:
diff changeset
172 self.tools=self.CreateToolBar()
goffi@necton2
parents:
diff changeset
173 self.statusBox = wx.ComboBox(self.tools, -1, "Online", choices=const_STATUS.keys(),
goffi@necton2
parents:
diff changeset
174 style=wx.CB_DROPDOWN | wx.CB_READONLY)
goffi@necton2
parents:
diff changeset
175 self.tools.AddControl(self.statusBox)
goffi@necton2
parents:
diff changeset
176 self.tools.AddSeparator()
goffi@necton2
parents:
diff changeset
177 self.statusTxt=wx.TextCtrl(self.tools, -1, style = wx.TE_PROCESS_ENTER)
goffi@necton2
parents:
diff changeset
178 self.tools.AddControl(self.statusTxt)
goffi@necton2
parents:
diff changeset
179 self.Bind(wx.EVT_COMBOBOX, self.onStatusChange, self.statusBox)
goffi@necton2
parents:
diff changeset
180 self.Bind(wx.EVT_TEXT_ENTER, self.onStatusChange, self.statusTxt)
goffi@necton2
parents:
diff changeset
181 self.tools.Disable()
goffi@necton2
parents:
diff changeset
182
goffi@necton2
parents:
diff changeset
183 #events
goffi@necton2
parents:
diff changeset
184 self.Bind(wx.EVT_CLOSE, self.onClose, self)
goffi@necton2
parents:
diff changeset
185
goffi@necton2
parents:
diff changeset
186 QuickApp.__init__(self)
goffi@necton2
parents:
diff changeset
187
goffi@necton2
parents:
diff changeset
188 self.Show()
goffi@necton2
parents:
diff changeset
189
goffi@necton2
parents:
diff changeset
190 def createMenus(self):
goffi@necton2
parents:
diff changeset
191 info("Creating menus")
goffi@necton2
parents:
diff changeset
192 connectMenu = wx.Menu()
goffi@necton2
parents:
diff changeset
193 connectMenu.Append(idCONNECT, "&Connect CTRL-c"," Connect to the server")
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
194 connectMenu.Append(idDISCONNECT, "&Disconnect CTRL-d"," Disconnect from the server")
0
goffi@necton2
parents:
diff changeset
195 connectMenu.Append(idPARAM,"&Parameters"," Configure the program")
goffi@necton2
parents:
diff changeset
196 connectMenu.AppendSeparator()
goffi@necton2
parents:
diff changeset
197 connectMenu.Append(idEXIT,"E&xit"," Terminate the program")
goffi@necton2
parents:
diff changeset
198 contactMenu = wx.Menu()
goffi@necton2
parents:
diff changeset
199 contactMenu.Append(idADD_CONTACT, "&Add contact"," Add a contact to your list")
goffi@necton2
parents:
diff changeset
200 contactMenu.Append(idREMOVE_CONTACT, "&Remove contact"," Remove the selected contact from your list")
goffi@necton2
parents:
diff changeset
201 menuBar = wx.MenuBar()
goffi@necton2
parents:
diff changeset
202 menuBar.Append(connectMenu,"&General")
goffi@necton2
parents:
diff changeset
203 menuBar.Append(contactMenu,"&Contacts")
goffi@necton2
parents:
diff changeset
204 self.SetMenuBar(menuBar)
goffi@necton2
parents:
diff changeset
205
goffi@necton2
parents:
diff changeset
206 #events
goffi@necton2
parents:
diff changeset
207 wx.EVT_MENU(self, idCONNECT, self.onConnectRequest)
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
208 wx.EVT_MENU(self, idDISCONNECT, self.onDisconnectRequest)
0
goffi@necton2
parents:
diff changeset
209 wx.EVT_MENU(self, idPARAM, self.onParam)
goffi@necton2
parents:
diff changeset
210 wx.EVT_MENU(self, idEXIT, self.onExit)
goffi@necton2
parents:
diff changeset
211 wx.EVT_MENU(self, idADD_CONTACT, self.onAddContact)
goffi@necton2
parents:
diff changeset
212 wx.EVT_MENU(self, idREMOVE_CONTACT, self.onRemoveContact)
goffi@necton2
parents:
diff changeset
213
goffi@necton2
parents:
diff changeset
214
goffi@necton2
parents:
diff changeset
215 def newMessage(self, from_jid, msg, type, to_jid):
goffi@necton2
parents:
diff changeset
216 QuickApp.newMessage(self, from_jid, msg, type, to_jid)
goffi@necton2
parents:
diff changeset
217
goffi@necton2
parents:
diff changeset
218 def showAlert(self, message):
goffi@necton2
parents:
diff changeset
219 # TODO: place this in a separate class
goffi@necton2
parents:
diff changeset
220 popup=wx.PopupWindow(self)
goffi@necton2
parents:
diff changeset
221 ### following code come from wxpython demo
goffi@necton2
parents:
diff changeset
222 popup.SetBackgroundColour("CADET BLUE")
goffi@necton2
parents:
diff changeset
223 st = wx.StaticText(popup, -1, message, pos=(10,10))
goffi@necton2
parents:
diff changeset
224 sz = st.GetBestSize()
goffi@necton2
parents:
diff changeset
225 popup.SetSize( (sz.width+20, sz.height+20) )
goffi@necton2
parents:
diff changeset
226 x=(wx.DisplaySize()[0]-popup.GetSize()[0])/2
goffi@necton2
parents:
diff changeset
227 popup.SetPosition((x,0))
goffi@necton2
parents:
diff changeset
228 popup.Show()
goffi@necton2
parents:
diff changeset
229 wx.CallLater(5000,popup.Destroy)
goffi@necton2
parents:
diff changeset
230
goffi@necton2
parents:
diff changeset
231 def showDialog(self, message, title="", type="info"):
goffi@necton2
parents:
diff changeset
232 if type == 'info':
goffi@necton2
parents:
diff changeset
233 flags = wx.OK | wx.ICON_INFORMATION
goffi@necton2
parents:
diff changeset
234 elif type == 'error':
goffi@necton2
parents:
diff changeset
235 flags = wx.OK | wx.ICON_ERROR
goffi@necton2
parents:
diff changeset
236 elif type == 'question':
goffi@necton2
parents:
diff changeset
237 flags = wx.OK | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
238 else:
goffi@necton2
parents:
diff changeset
239 flags = wx.OK | wx.ICON_INFORMATION
goffi@necton2
parents:
diff changeset
240 dlg = wx.MessageDialog(self, message, title, flags)
goffi@necton2
parents:
diff changeset
241 answer = dlg.ShowModal()
goffi@necton2
parents:
diff changeset
242 dlg.Destroy()
goffi@necton2
parents:
diff changeset
243 return True if (answer == wx.ID_YES or answer == wx.ID_OK) else False
goffi@necton2
parents:
diff changeset
244
goffi@necton2
parents:
diff changeset
245 def setStatusOnline(self, online=True):
goffi@necton2
parents:
diff changeset
246 """enable/disable controls, must be called when local user online status change"""
goffi@necton2
parents:
diff changeset
247 if online:
goffi@necton2
parents:
diff changeset
248 self.SetStatusText(msgONLINE)
goffi@necton2
parents:
diff changeset
249 self.tools.Enable()
goffi@necton2
parents:
diff changeset
250 else:
goffi@necton2
parents:
diff changeset
251 self.SetStatusText(msgOFFLINE)
goffi@necton2
parents:
diff changeset
252 self.tools.Disable()
goffi@necton2
parents:
diff changeset
253 return
goffi@necton2
parents:
diff changeset
254
goffi@necton2
parents:
diff changeset
255
goffi@necton2
parents:
diff changeset
256 def presenceUpdate(self, jabber_id, type, show, status, priority):
goffi@necton2
parents:
diff changeset
257 QuickApp.presenceUpdate(self, jabber_id, type, show, status, priority)
goffi@necton2
parents:
diff changeset
258
goffi@necton2
parents:
diff changeset
259 def askConfirmation(self, type, id, data):
goffi@necton2
parents:
diff changeset
260 #TODO: refactor this in QuickApp
goffi@necton2
parents:
diff changeset
261 debug ("Confirmation asked")
goffi@necton2
parents:
diff changeset
262 answer_data={}
goffi@necton2
parents:
diff changeset
263 if type == "FILE_TRANSFERT":
goffi@necton2
parents:
diff changeset
264 debug ("File transfert confirmation asked")
goffi@necton2
parents:
diff changeset
265 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
266 'File Request',
goffi@necton2
parents:
diff changeset
267 wx.YES_NO | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
268 )
goffi@necton2
parents:
diff changeset
269 answer=dlg.ShowModal()
goffi@necton2
parents:
diff changeset
270 if answer==wx.ID_YES:
goffi@necton2
parents:
diff changeset
271 filename = wx.FileSelector("Where do you want to save the file ?", flags = wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
goffi@necton2
parents:
diff changeset
272 if filename:
goffi@necton2
parents:
diff changeset
273 answer_data["dest_path"] = filename
goffi@necton2
parents:
diff changeset
274 self.bridge.confirmationAnswer(id, True, answer_data)
goffi@necton2
parents:
diff changeset
275 self.waitProgress(id, "File Transfer", "Copying %s" % os.path.basename(filename))
goffi@necton2
parents:
diff changeset
276 else:
goffi@necton2
parents:
diff changeset
277 answer = wx.ID_NO
goffi@necton2
parents:
diff changeset
278 if answer==wx.ID_NO:
goffi@necton2
parents:
diff changeset
279 self.bridge.confirmationAnswer(id, False, answer_data)
goffi@necton2
parents:
diff changeset
280
goffi@necton2
parents:
diff changeset
281 dlg.Destroy()
goffi@necton2
parents:
diff changeset
282
goffi@necton2
parents:
diff changeset
283
goffi@necton2
parents:
diff changeset
284
goffi@necton2
parents:
diff changeset
285
goffi@necton2
parents:
diff changeset
286 def progressCB(self, id, title, message):
goffi@necton2
parents:
diff changeset
287 data = self.bridge.getProgress(id)
goffi@necton2
parents:
diff changeset
288 if data:
goffi@necton2
parents:
diff changeset
289 if not data['position']:
goffi@necton2
parents:
diff changeset
290 data['position'] = '0'
goffi@necton2
parents:
diff changeset
291 if not self.pbar:
goffi@necton2
parents:
diff changeset
292 #first answer, we must construct the bar
goffi@necton2
parents:
diff changeset
293 self.pbar = wx.ProgressDialog(title, message, int(data['size']), None,
goffi@necton2
parents:
diff changeset
294 wx.PD_SMOOTH | wx.PD_ELAPSED_TIME | wx.PD_ESTIMATED_TIME | wx.PD_REMAINING_TIME)
goffi@necton2
parents:
diff changeset
295 self.pbar.finish_value = int(data['size'])
goffi@necton2
parents:
diff changeset
296
goffi@necton2
parents:
diff changeset
297 self.pbar.Update(int(data['position']))
goffi@necton2
parents:
diff changeset
298 elif self.pbar:
goffi@necton2
parents:
diff changeset
299 self.pbar.Update(self.pbar.finish_value)
goffi@necton2
parents:
diff changeset
300 return
goffi@necton2
parents:
diff changeset
301
goffi@necton2
parents:
diff changeset
302 wx.CallLater(10, self.progressCB, id, title, message)
goffi@necton2
parents:
diff changeset
303
goffi@necton2
parents:
diff changeset
304 def waitProgress (self, id, title, message):
goffi@necton2
parents:
diff changeset
305 self.pbar = None
goffi@necton2
parents:
diff changeset
306 wx.CallLater(10, self.progressCB, id, title, message)
goffi@necton2
parents:
diff changeset
307
goffi@necton2
parents:
diff changeset
308
goffi@necton2
parents:
diff changeset
309
goffi@necton2
parents:
diff changeset
310 ### events ###
goffi@necton2
parents:
diff changeset
311
goffi@necton2
parents:
diff changeset
312 def onContactActivated(self, jid):
goffi@necton2
parents:
diff changeset
313 debug ("onContactActivated: %s", jid)
goffi@necton2
parents:
diff changeset
314 if self.chat_wins[jid].IsShown():
goffi@necton2
parents:
diff changeset
315 self.chat_wins[jid].Hide()
goffi@necton2
parents:
diff changeset
316 else:
goffi@necton2
parents:
diff changeset
317 self.chat_wins[jid].Show()
goffi@necton2
parents:
diff changeset
318
goffi@necton2
parents:
diff changeset
319 def onConnectRequest(self, e):
goffi@necton2
parents:
diff changeset
320 self.bridge.connect()
goffi@necton2
parents:
diff changeset
321
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
322 def onDisconnectRequest(self, e):
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
323 self.bridge.disconnect()
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
324
0
goffi@necton2
parents:
diff changeset
325 def __updateStatus(self):
goffi@necton2
parents:
diff changeset
326 show = const_STATUS[self.statusBox.GetValue()]
goffi@necton2
parents:
diff changeset
327 status = self.statusTxt.GetValue()
goffi@necton2
parents:
diff changeset
328 self.bridge.setPresence(show=show, status=status)
goffi@necton2
parents:
diff changeset
329
goffi@necton2
parents:
diff changeset
330 def onStatusChange(self, e):
goffi@necton2
parents:
diff changeset
331 debug("Status change request")
goffi@necton2
parents:
diff changeset
332 self.__updateStatus()
goffi@necton2
parents:
diff changeset
333
goffi@necton2
parents:
diff changeset
334 def onParam(self, e):
goffi@necton2
parents:
diff changeset
335 debug("Param request")
goffi@necton2
parents:
diff changeset
336 param=Param(self.bridge.setParam, self.bridge.getParam, self.bridge.getParams, self.bridge.getParamsCategories)
goffi@necton2
parents:
diff changeset
337
goffi@necton2
parents:
diff changeset
338 def onExit(self, e):
goffi@necton2
parents:
diff changeset
339 self.Close()
goffi@necton2
parents:
diff changeset
340
goffi@necton2
parents:
diff changeset
341 def onAddContact(self, e):
goffi@necton2
parents:
diff changeset
342 debug("Add contact request")
goffi@necton2
parents:
diff changeset
343 dlg = wx.TextEntryDialog(
goffi@necton2
parents:
diff changeset
344 self, 'Please enter new contact JID',
goffi@necton2
parents:
diff changeset
345 'Adding a contact', 'name@server.ext')
goffi@necton2
parents:
diff changeset
346
goffi@necton2
parents:
diff changeset
347 if dlg.ShowModal() == wx.ID_OK:
goffi@necton2
parents:
diff changeset
348 jid=JID(dlg.GetValue())
goffi@necton2
parents:
diff changeset
349 if jid.is_valid():
goffi@necton2
parents:
diff changeset
350 self.bridge.addContact(jid.short)
goffi@necton2
parents:
diff changeset
351 else:
goffi@necton2
parents:
diff changeset
352 error ("'%s' is an invalid JID !", jid)
goffi@necton2
parents:
diff changeset
353 #TODO: notice the user
goffi@necton2
parents:
diff changeset
354
goffi@necton2
parents:
diff changeset
355 dlg.Destroy()
goffi@necton2
parents:
diff changeset
356
goffi@necton2
parents:
diff changeset
357 def onRemoveContact(self, e):
goffi@necton2
parents:
diff changeset
358 debug("Remove contact request")
goffi@necton2
parents:
diff changeset
359 target = self.contactList.getSelection()
goffi@necton2
parents:
diff changeset
360 if not target:
goffi@necton2
parents:
diff changeset
361 dlg = wx.MessageDialog(self, "You haven't selected any contact !",
goffi@necton2
parents:
diff changeset
362 'Error',
goffi@necton2
parents:
diff changeset
363 wx.OK | wx.ICON_ERROR
goffi@necton2
parents:
diff changeset
364 )
goffi@necton2
parents:
diff changeset
365 dlg.ShowModal()
goffi@necton2
parents:
diff changeset
366 dlg.Destroy()
goffi@necton2
parents:
diff changeset
367 return
goffi@necton2
parents:
diff changeset
368
goffi@necton2
parents:
diff changeset
369 dlg = wx.MessageDialog(self, "Are you sure you want to delete %s from your roster list ?" % target.short,
goffi@necton2
parents:
diff changeset
370 'Contact suppression',
goffi@necton2
parents:
diff changeset
371 wx.YES_NO | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
372 )
goffi@necton2
parents:
diff changeset
373
goffi@necton2
parents:
diff changeset
374 if dlg.ShowModal() == wx.ID_YES:
goffi@necton2
parents:
diff changeset
375 info("Unsubsribing %s presence", target.short)
goffi@necton2
parents:
diff changeset
376 self.bridge.delContact(target.short)
goffi@necton2
parents:
diff changeset
377
goffi@necton2
parents:
diff changeset
378 dlg.Destroy()
goffi@necton2
parents:
diff changeset
379
goffi@necton2
parents:
diff changeset
380 def onClose(self, e):
goffi@necton2
parents:
diff changeset
381 info("Exiting...")
goffi@necton2
parents:
diff changeset
382 e.Skip()
goffi@necton2
parents:
diff changeset
383