annotate frontends/wix/main_window.py @ 85:fc7583282d40

Tarot Game plugin: first draft - SàT: beginning of the plugin - Tarot Plugin: 1 method createTarotGame et 1 signal tarotGameStarted - wix: added "Game" menu in group chat to start Tarot game
author Goffi <goffi@goffi.org>
date Fri, 07 May 2010 17:09:30 +0930
parents 104a815bb23f
children 23caf1051099
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
57
a5b5fb5fc9fd updated README and copyright note
Goffi <goffi@goffi.org>
parents: 56
diff changeset
6 Copyright (C) 2009, 2010 Jérôme Poisson (goffi@goffi.org)
0
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
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
23 from quick_frontend.quick_chat_list import QuickChatList
Goffi <goffi@goffi.org>
parents: 68
diff changeset
24 from quick_frontend.quick_app import QuickApp
Goffi <goffi@goffi.org>
parents: 68
diff changeset
25 from quick_frontend.quick_contact_management import QuickContactManagement
0
goffi@necton2
parents:
diff changeset
26 import wx
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
27 from contact_list import ContactList
0
goffi@necton2
parents:
diff changeset
28 from chat import Chat
81
104a815bb23f Tarot game: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
29 from card_game import CardGame
0
goffi@necton2
parents:
diff changeset
30 from param import Param
35
c45deebb40a5 Wix: Registration form management (not finished yet)
Goffi <goffi@goffi.org>
parents: 33
diff changeset
31 from form import Form
28
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
32 from gateways import GatewaysManager
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
33 from profile import Profile
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
34 from profile_manager import ProfileManager
0
goffi@necton2
parents:
diff changeset
35 import gobject
goffi@necton2
parents:
diff changeset
36 import os.path
goffi@necton2
parents:
diff changeset
37 import pdb
goffi@necton2
parents:
diff changeset
38 from tools.jid import JID
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
39 from logging import debug, info, warning, error
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
40 import constants
0
goffi@necton2
parents:
diff changeset
41
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
42 idCONNECT,\
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
43 idDISCONNECT,\
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
44 idEXIT,\
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
45 idPARAM,\
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
46 idADD_CONTACT,\
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
47 idREMOVE_CONTACT,\
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
48 idSHOW_PROFILE,\
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
49 idJOIN_ROOM,\
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
50 idFIND_GATEWAYS = range(9)
0
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
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
58 def createChat(self, target):
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
59 return Chat(target, self.host)
0
goffi@necton2
parents:
diff changeset
60
goffi@necton2
parents:
diff changeset
61 class MainWindow(wx.Frame, QuickApp):
goffi@necton2
parents:
diff changeset
62 """main app window"""
goffi@necton2
parents:
diff changeset
63
goffi@necton2
parents:
diff changeset
64 def __init__(self):
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
65 wx.Frame.__init__(self,None, title="SàT Wix", size=(300,500))
56
01ea5680207e removed debug comments
Goffi <goffi@goffi.org>
parents: 55
diff changeset
66 self.CM = QuickContactManagement() #FIXME: not the best place
0
goffi@necton2
parents:
diff changeset
67
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
68 #sizer
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
69 self.sizer = wx.BoxSizer(wx.VERTICAL)
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
70 self.SetSizer(self.sizer)
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
71
0
goffi@necton2
parents:
diff changeset
72 #Frame elements
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
73 self.contactList = ContactList(self, self)
0
goffi@necton2
parents:
diff changeset
74 self.contactList.registerActivatedCB(self.onContactActivated)
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
75 self.contactList.Hide()
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
76 self.sizer.Add(self.contactList, 1, flag=wx.EXPAND)
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
77
0
goffi@necton2
parents:
diff changeset
78 self.chat_wins=ChatList(self)
goffi@necton2
parents:
diff changeset
79 self.CreateStatusBar()
goffi@necton2
parents:
diff changeset
80 self.createMenus()
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
81 for i in range(self.menuBar.GetMenuCount()):
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
82 self.menuBar.EnableTop(i, False)
0
goffi@necton2
parents:
diff changeset
83
goffi@necton2
parents:
diff changeset
84 #ToolBar
goffi@necton2
parents:
diff changeset
85 self.tools=self.CreateToolBar()
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
86 self.statusBox = wx.ComboBox(self.tools, -1, "Online", choices=[status[1] for status in const_STATUS],
0
goffi@necton2
parents:
diff changeset
87 style=wx.CB_DROPDOWN | wx.CB_READONLY)
goffi@necton2
parents:
diff changeset
88 self.tools.AddControl(self.statusBox)
goffi@necton2
parents:
diff changeset
89 self.tools.AddSeparator()
goffi@necton2
parents:
diff changeset
90 self.statusTxt=wx.TextCtrl(self.tools, -1, style = wx.TE_PROCESS_ENTER)
goffi@necton2
parents:
diff changeset
91 self.tools.AddControl(self.statusTxt)
goffi@necton2
parents:
diff changeset
92 self.Bind(wx.EVT_COMBOBOX, self.onStatusChange, self.statusBox)
goffi@necton2
parents:
diff changeset
93 self.Bind(wx.EVT_TEXT_ENTER, self.onStatusChange, self.statusTxt)
goffi@necton2
parents:
diff changeset
94 self.tools.Disable()
11
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
95
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
96 #tray icon
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
97 ticon = wx.Icon(IMAGE_DIR+'/crystal/tray_icon.xpm', wx.BITMAP_TYPE_XPM)
11
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
98 self.tray_icon = wx.TaskBarIcon()
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
99 self.tray_icon.SetIcon(ticon, _("Wix jabber client"))
11
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
100 wx.EVT_TASKBAR_LEFT_UP(self.tray_icon, self.onTrayClick)
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
101
0
goffi@necton2
parents:
diff changeset
102
goffi@necton2
parents:
diff changeset
103 #events
goffi@necton2
parents:
diff changeset
104 self.Bind(wx.EVT_CLOSE, self.onClose, self)
goffi@necton2
parents:
diff changeset
105
goffi@necton2
parents:
diff changeset
106 QuickApp.__init__(self)
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
107 #self.plug_profile() #gof:
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
108
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
109 #profile panel
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
110 self.profile_pan = ProfileManager(self)
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
111 #self.profile_pan.Hide() #gof:
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
112 self.sizer.Add(self.profile_pan, 1, flag=wx.EXPAND)
81
104a815bb23f Tarot game: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
113
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 81
diff changeset
114 #Tarot = CardGame(self)
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 81
diff changeset
115 #Tarot.Show()#gof: temp for test
81
104a815bb23f Tarot game: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
116
0
goffi@necton2
parents:
diff changeset
117 self.Show()
goffi@necton2
parents:
diff changeset
118
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
119 def plug_profile(self, profile_key='@DEFAULT@'):
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
120 """Hide profile panel then plug profile"""
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
121 self.profile_pan.Hide()
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
122 self.contactList.Show()
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
123 self.sizer.Layout()
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
124 for i in range(self.menuBar.GetMenuCount()):
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
125 self.menuBar.EnableTop(i, True)
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
126 super(MainWindow, self).plug_profile(profile_key)
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
127 if not self.bridge.isConnected(profile_key):
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
128 self.bridge.connect(profile_key)
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
129
0
goffi@necton2
parents:
diff changeset
130 def createMenus(self):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
131 info(_("Creating menus"))
0
goffi@necton2
parents:
diff changeset
132 connectMenu = wx.Menu()
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
133 connectMenu.Append(idCONNECT, _("&Connect CTRL-c"),_(" Connect to the server"))
Goffi <goffi@goffi.org>
parents: 68
diff changeset
134 connectMenu.Append(idDISCONNECT, _("&Disconnect CTRL-d"),_(" Disconnect from the server"))
Goffi <goffi@goffi.org>
parents: 68
diff changeset
135 connectMenu.Append(idPARAM,_("&Parameters"),_(" Configure the program"))
0
goffi@necton2
parents:
diff changeset
136 connectMenu.AppendSeparator()
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
137 connectMenu.Append(idEXIT,_("E&xit"),_(" Terminate the program"))
0
goffi@necton2
parents:
diff changeset
138 contactMenu = wx.Menu()
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
139 contactMenu.Append(idADD_CONTACT, _("&Add contact"),_(" Add a contact to your list"))
Goffi <goffi@goffi.org>
parents: 68
diff changeset
140 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
141 contactMenu.AppendSeparator()
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
142 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
143 communicationMenu = wx.Menu()
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
144 communicationMenu.Append(idJOIN_ROOM, _("&Join Room"),_(" Join a Multi-User Chat room"))
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
145 communicationMenu.Append(idFIND_GATEWAYS, _("&Find Gateways"),_(" Find gateways to legacy IM"))
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
146 self.menuBar = wx.MenuBar()
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
147 self.menuBar.Append(connectMenu,_("&General"))
Goffi <goffi@goffi.org>
parents: 68
diff changeset
148 self.menuBar.Append(contactMenu,_("&Contacts"))
Goffi <goffi@goffi.org>
parents: 68
diff changeset
149 self.menuBar.Append(communicationMenu,_("&Communication"))
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
150 self.SetMenuBar(self.menuBar)
0
goffi@necton2
parents:
diff changeset
151
goffi@necton2
parents:
diff changeset
152 #events
goffi@necton2
parents:
diff changeset
153 wx.EVT_MENU(self, idCONNECT, self.onConnectRequest)
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
154 wx.EVT_MENU(self, idDISCONNECT, self.onDisconnectRequest)
0
goffi@necton2
parents:
diff changeset
155 wx.EVT_MENU(self, idPARAM, self.onParam)
goffi@necton2
parents:
diff changeset
156 wx.EVT_MENU(self, idEXIT, self.onExit)
goffi@necton2
parents:
diff changeset
157 wx.EVT_MENU(self, idADD_CONTACT, self.onAddContact)
goffi@necton2
parents:
diff changeset
158 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
159 wx.EVT_MENU(self, idSHOW_PROFILE, self.onShowProfile)
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
160 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
161 wx.EVT_MENU(self, idFIND_GATEWAYS, self.onFindGateways)
0
goffi@necton2
parents:
diff changeset
162
goffi@necton2
parents:
diff changeset
163
67
0e50dd3a234a message sending bug fixes + sortilege update
Goffi <goffi@goffi.org>
parents: 66
diff changeset
164 def newMessage(self, from_jid, msg, type, to_jid, profile):
0e50dd3a234a message sending bug fixes + sortilege update
Goffi <goffi@goffi.org>
parents: 66
diff changeset
165 QuickApp.newMessage(self, from_jid, msg, type, to_jid, profile)
0
goffi@necton2
parents:
diff changeset
166
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
167 def roomJoined(self, room_id, room_service, room_nicks, user_nick, profile):
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
168 super(MainWindow, self).roomJoined(room_id, room_service, room_nicks, user_nick, profile)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
169
0
goffi@necton2
parents:
diff changeset
170 def showAlert(self, message):
goffi@necton2
parents:
diff changeset
171 # TODO: place this in a separate class
goffi@necton2
parents:
diff changeset
172 popup=wx.PopupWindow(self)
goffi@necton2
parents:
diff changeset
173 ### following code come from wxpython demo
goffi@necton2
parents:
diff changeset
174 popup.SetBackgroundColour("CADET BLUE")
goffi@necton2
parents:
diff changeset
175 st = wx.StaticText(popup, -1, message, pos=(10,10))
goffi@necton2
parents:
diff changeset
176 sz = st.GetBestSize()
goffi@necton2
parents:
diff changeset
177 popup.SetSize( (sz.width+20, sz.height+20) )
goffi@necton2
parents:
diff changeset
178 x=(wx.DisplaySize()[0]-popup.GetSize()[0])/2
goffi@necton2
parents:
diff changeset
179 popup.SetPosition((x,0))
goffi@necton2
parents:
diff changeset
180 popup.Show()
goffi@necton2
parents:
diff changeset
181 wx.CallLater(5000,popup.Destroy)
goffi@necton2
parents:
diff changeset
182
goffi@necton2
parents:
diff changeset
183 def showDialog(self, message, title="", type="info"):
goffi@necton2
parents:
diff changeset
184 if type == 'info':
goffi@necton2
parents:
diff changeset
185 flags = wx.OK | wx.ICON_INFORMATION
goffi@necton2
parents:
diff changeset
186 elif type == 'error':
goffi@necton2
parents:
diff changeset
187 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
188 elif type == 'yes/no':
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
189 flags = wx.YES_NO | wx.ICON_QUESTION
0
goffi@necton2
parents:
diff changeset
190 else:
goffi@necton2
parents:
diff changeset
191 flags = wx.OK | wx.ICON_INFORMATION
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
192 error(_('unmanaged dialog type: %s'), type)
0
goffi@necton2
parents:
diff changeset
193 dlg = wx.MessageDialog(self, message, title, flags)
goffi@necton2
parents:
diff changeset
194 answer = dlg.ShowModal()
goffi@necton2
parents:
diff changeset
195 dlg.Destroy()
goffi@necton2
parents:
diff changeset
196 return True if (answer == wx.ID_YES or answer == wx.ID_OK) else False
goffi@necton2
parents:
diff changeset
197
goffi@necton2
parents:
diff changeset
198 def setStatusOnline(self, online=True):
goffi@necton2
parents:
diff changeset
199 """enable/disable controls, must be called when local user online status change"""
goffi@necton2
parents:
diff changeset
200 if online:
goffi@necton2
parents:
diff changeset
201 self.SetStatusText(msgONLINE)
goffi@necton2
parents:
diff changeset
202 self.tools.Enable()
goffi@necton2
parents:
diff changeset
203 else:
goffi@necton2
parents:
diff changeset
204 self.SetStatusText(msgOFFLINE)
goffi@necton2
parents:
diff changeset
205 self.tools.Disable()
goffi@necton2
parents:
diff changeset
206 return
goffi@necton2
parents:
diff changeset
207
goffi@necton2
parents:
diff changeset
208 def askConfirmation(self, type, id, data):
goffi@necton2
parents:
diff changeset
209 #TODO: refactor this in QuickApp
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
210 debug (_("Confirmation asked"))
0
goffi@necton2
parents:
diff changeset
211 answer_data={}
goffi@necton2
parents:
diff changeset
212 if type == "FILE_TRANSFERT":
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
213 debug (_("File transfert confirmation asked"))
Goffi <goffi@goffi.org>
parents: 68
diff changeset
214 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"]},
Goffi <goffi@goffi.org>
parents: 68
diff changeset
215 _('File Request'),
0
goffi@necton2
parents:
diff changeset
216 wx.YES_NO | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
217 )
goffi@necton2
parents:
diff changeset
218 answer=dlg.ShowModal()
goffi@necton2
parents:
diff changeset
219 if answer==wx.ID_YES:
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
220 filename = wx.FileSelector(_("Where do you want to save the file ?"), flags = wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
0
goffi@necton2
parents:
diff changeset
221 if filename:
goffi@necton2
parents:
diff changeset
222 answer_data["dest_path"] = filename
goffi@necton2
parents:
diff changeset
223 self.bridge.confirmationAnswer(id, True, answer_data)
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
224 self.waitProgress(id, _("File Transfer"), _("Copying %s") % os.path.basename(filename))
0
goffi@necton2
parents:
diff changeset
225 else:
goffi@necton2
parents:
diff changeset
226 answer = wx.ID_NO
goffi@necton2
parents:
diff changeset
227 if answer==wx.ID_NO:
goffi@necton2
parents:
diff changeset
228 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
229
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
230 dlg.Destroy()
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
231
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
232 elif type == "YES/NO":
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
233 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
234 dlg = wx.MessageDialog(self, data["message"],
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
235 _('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
236 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
237 )
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
238 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
239 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
240 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
241 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
242 self.bridge.confirmationAnswer(id, False, {})
0
goffi@necton2
parents:
diff changeset
243
goffi@necton2
parents:
diff changeset
244 dlg.Destroy()
goffi@necton2
parents:
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 def actionResult(self, type, id, data):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
247 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
248 if not id in self.current_action_ids:
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
249 debug (_('unknown id, ignoring'))
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
250 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
251 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
252 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
253 elif type == "SUCCESS":
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
254 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
255 dlg = wx.MessageDialog(self, data["message"],
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
256 _('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
257 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
258 )
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
259 dlg.ShowModal()
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
260 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
261 elif type == "ERROR":
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
262 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
263 dlg = wx.MessageDialog(self, data["message"],
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
264 _('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
265 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
266 )
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
267 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
268 dlg.Destroy()
33
b9bb5d8e0cc7 In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents: 28
diff changeset
269 elif type == "FORM":
b9bb5d8e0cc7 In-band-registration: data form 2 xml conversion
Goffi <goffi@goffi.org>
parents: 28
diff changeset
270 self.current_action_ids.remove(id)
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
271 debug (_("Form received"))
Goffi <goffi@goffi.org>
parents: 68
diff changeset
272 form=Form(self, title=_('Registration'), target = data['target'], type = data['type'], xml_data = data['xml'])
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
273 elif type == "RESULT":
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
274 self.current_action_ids.remove(id)
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
275 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
276 callback = self.current_action_ids_cb[id]
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
277 del self.current_action_ids_cb[id]
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
278 callback(data)
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
279 elif type == "DICT_DICT":
28
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
280 self.current_action_ids.remove(id)
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
281 if self.current_action_ids_cb.has_key(id):
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
282 callback = self.current_action_ids_cb[id]
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
283 del self.current_action_ids_cb[id]
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
284 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
285 else:
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
286 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
287 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
288
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 18
diff changeset
289
0
goffi@necton2
parents:
diff changeset
290
goffi@necton2
parents:
diff changeset
291 def progressCB(self, id, title, message):
goffi@necton2
parents:
diff changeset
292 data = self.bridge.getProgress(id)
goffi@necton2
parents:
diff changeset
293 if data:
goffi@necton2
parents:
diff changeset
294 if not data['position']:
goffi@necton2
parents:
diff changeset
295 data['position'] = '0'
goffi@necton2
parents:
diff changeset
296 if not self.pbar:
goffi@necton2
parents:
diff changeset
297 #first answer, we must construct the bar
goffi@necton2
parents:
diff changeset
298 self.pbar = wx.ProgressDialog(title, message, int(data['size']), None,
goffi@necton2
parents:
diff changeset
299 wx.PD_SMOOTH | wx.PD_ELAPSED_TIME | wx.PD_ESTIMATED_TIME | wx.PD_REMAINING_TIME)
goffi@necton2
parents:
diff changeset
300 self.pbar.finish_value = int(data['size'])
goffi@necton2
parents:
diff changeset
301
goffi@necton2
parents:
diff changeset
302 self.pbar.Update(int(data['position']))
goffi@necton2
parents:
diff changeset
303 elif self.pbar:
goffi@necton2
parents:
diff changeset
304 self.pbar.Update(self.pbar.finish_value)
goffi@necton2
parents:
diff changeset
305 return
goffi@necton2
parents:
diff changeset
306
goffi@necton2
parents:
diff changeset
307 wx.CallLater(10, self.progressCB, id, title, message)
goffi@necton2
parents:
diff changeset
308
goffi@necton2
parents:
diff changeset
309 def waitProgress (self, id, title, message):
goffi@necton2
parents:
diff changeset
310 self.pbar = None
goffi@necton2
parents:
diff changeset
311 wx.CallLater(10, self.progressCB, id, title, message)
goffi@necton2
parents:
diff changeset
312
goffi@necton2
parents:
diff changeset
313
goffi@necton2
parents:
diff changeset
314
goffi@necton2
parents:
diff changeset
315 ### events ###
goffi@necton2
parents:
diff changeset
316
goffi@necton2
parents:
diff changeset
317 def onContactActivated(self, jid):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
318 debug (_("onContactActivated: %s"), jid)
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
319 if self.chat_wins[jid.short].IsShown():
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
320 self.chat_wins[jid.short].Hide()
0
goffi@necton2
parents:
diff changeset
321 else:
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
322 self.chat_wins[jid.short].Show()
0
goffi@necton2
parents:
diff changeset
323
goffi@necton2
parents:
diff changeset
324 def onConnectRequest(self, e):
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
325 self.bridge.connect(self.profile)
0
goffi@necton2
parents:
diff changeset
326
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
327 def onDisconnectRequest(self, e):
68
9b842086d915 multiple profiles update
Goffi <goffi@goffi.org>
parents: 67
diff changeset
328 self.bridge.disconnect(self.profile)
1
a06a151fc31f Disconnect first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
329
0
goffi@necton2
parents:
diff changeset
330 def __updateStatus(self):
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
331 show = filter(lambda x:x[1] == self.statusBox.GetValue(), const_STATUS)[0][0]
0
goffi@necton2
parents:
diff changeset
332 status = self.statusTxt.GetValue()
51
8c67ea98ab91 frontend improved to take into account new SàT features
Goffi <goffi@goffi.org>
parents: 42
diff changeset
333 self.bridge.setPresence(show=show, statuses={'default':status}) #FIXME: manage multilingual statuses
0
goffi@necton2
parents:
diff changeset
334
goffi@necton2
parents:
diff changeset
335 def onStatusChange(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
336 debug(_("Status change request"))
0
goffi@necton2
parents:
diff changeset
337 self.__updateStatus()
goffi@necton2
parents:
diff changeset
338
goffi@necton2
parents:
diff changeset
339 def onParam(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
340 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
341 param=Param(self)
0
goffi@necton2
parents:
diff changeset
342
goffi@necton2
parents:
diff changeset
343 def onExit(self, e):
goffi@necton2
parents:
diff changeset
344 self.Close()
goffi@necton2
parents:
diff changeset
345
goffi@necton2
parents:
diff changeset
346 def onAddContact(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
347 debug(_("Add contact request"))
0
goffi@necton2
parents:
diff changeset
348 dlg = wx.TextEntryDialog(
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
349 self, _('Please enter new contact JID'),
Goffi <goffi@goffi.org>
parents: 68
diff changeset
350 _('Adding a contact'), _('name@server.tld'))
0
goffi@necton2
parents:
diff changeset
351
goffi@necton2
parents:
diff changeset
352 if dlg.ShowModal() == wx.ID_OK:
goffi@necton2
parents:
diff changeset
353 jid=JID(dlg.GetValue())
goffi@necton2
parents:
diff changeset
354 if jid.is_valid():
goffi@necton2
parents:
diff changeset
355 self.bridge.addContact(jid.short)
goffi@necton2
parents:
diff changeset
356 else:
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
357 error (_("'%s' is an invalid JID !"), jid)
0
goffi@necton2
parents:
diff changeset
358 #TODO: notice the user
goffi@necton2
parents:
diff changeset
359
goffi@necton2
parents:
diff changeset
360 dlg.Destroy()
goffi@necton2
parents:
diff changeset
361
goffi@necton2
parents:
diff changeset
362 def onRemoveContact(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
363 debug(_("Remove contact request"))
0
goffi@necton2
parents:
diff changeset
364 target = self.contactList.getSelection()
goffi@necton2
parents:
diff changeset
365 if not target:
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
366 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"),
Goffi <goffi@goffi.org>
parents: 68
diff changeset
367 _('Error'),
0
goffi@necton2
parents:
diff changeset
368 wx.OK | wx.ICON_ERROR
goffi@necton2
parents:
diff changeset
369 )
goffi@necton2
parents:
diff changeset
370 dlg.ShowModal()
goffi@necton2
parents:
diff changeset
371 dlg.Destroy()
goffi@necton2
parents:
diff changeset
372 return
goffi@necton2
parents:
diff changeset
373
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
374 dlg = wx.MessageDialog(self, _("Are you sure you want to delete %s from your roster list ?") % target.short,
Goffi <goffi@goffi.org>
parents: 68
diff changeset
375 _('Contact suppression'),
0
goffi@necton2
parents:
diff changeset
376 wx.YES_NO | wx.ICON_QUESTION
goffi@necton2
parents:
diff changeset
377 )
goffi@necton2
parents:
diff changeset
378
goffi@necton2
parents:
diff changeset
379 if dlg.ShowModal() == wx.ID_YES:
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
380 info(_("Unsubscribing %s presence"), target.short)
0
goffi@necton2
parents:
diff changeset
381 self.bridge.delContact(target.short)
goffi@necton2
parents:
diff changeset
382
goffi@necton2
parents:
diff changeset
383 dlg.Destroy()
goffi@necton2
parents:
diff changeset
384
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
385 def onShowProfile(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
386 debug(_("Show contact's profile request"))
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
387 target = self.contactList.getSelection()
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
388 if not target:
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
389 dlg = wx.MessageDialog(self, _("You haven't selected any contact !"),
Goffi <goffi@goffi.org>
parents: 68
diff changeset
390 _('Error'),
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
391 wx.OK | wx.ICON_ERROR
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
392 )
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
393 dlg.ShowModal()
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
394 dlg.Destroy()
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
395 return
64
d46f849664aa SàT: multi-profile, plugins updated
Goffi <goffi@goffi.org>
parents: 57
diff changeset
396 id = self.bridge.getCard(target.short)
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
397 self.current_action_ids.add(id)
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
398 self.current_action_ids_cb[id] = self.onProfileReceived
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
399
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
400 def onProfileReceived(self, data):
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
401 """Called when a profile is received"""
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
402 debug (_('Profile received: [%s]') % data)
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
403 profile=Profile(self, data)
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
404
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
405 def onJoinRoom(self, e):
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
406 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
407 #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
408 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
409 self, _("Please enter MUC's JID"),
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
410 _('Entering a MUC room'), _('test@conference.necton2.int'))
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
411 #_('Entering a MUC room'), _('room@muc_service.server.tld'))
9681f18d06bd wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents: 75
diff changeset
412 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
413 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
414 if room_jid.is_valid():
9681f18d06bd wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents: 75
diff changeset
415 self.bridge.joinMUC(room_jid.domain, room_jid.node, self.profiles[self.profile]['whoami'].node, self.profile)
9681f18d06bd wix: basic dialog to join MUC room, jid node is now displayed in conversations instead of full jid
Goffi <goffi@goffi.org>
parents: 75
diff changeset
416 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
417 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
418
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
419 def onFindGateways(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
420 debug(_("Find Gateways request"))
66
8147b4f40809 SàT: multi-profile: DBus signals and frontend adaptation (first draft)
Goffi <goffi@goffi.org>
parents: 64
diff changeset
421 id = self.bridge.findGateways(self.profiles[self.profile]['whoami'].domain)
28
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
422 self.current_action_ids.add(id)
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
423 self.current_action_ids_cb[id] = self.onGatewaysFound
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
424
42
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
425 def onGatewaysFound(self, data):
28
c2b131e4e262 wix: new gateways manager
Goffi <goffi@goffi.org>
parents: 25
diff changeset
426 """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
427 target = data['__private__']['target']
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
428 del data['__private__']
874de3020e1c Initial VCard (XEP-0054) support + misc fixes
Goffi <goffi@goffi.org>
parents: 38
diff changeset
429 gatewayManager = GatewaysManager(self, data, server=target)
25
53e921c8a357 new plugin: gateways plugin, and first implementation of findGateways
Goffi <goffi@goffi.org>
parents: 23
diff changeset
430
0
goffi@necton2
parents:
diff changeset
431 def onClose(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
432 info(_("Exiting..."))
0
goffi@necton2
parents:
diff changeset
433 e.Skip()
11
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
434
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
435 def onTrayClick(self, e):
70
Goffi <goffi@goffi.org>
parents: 68
diff changeset
436 debug(_("Tray Click"))
11
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
437 if self.IsShown():
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
438 self.Hide()
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
439 else:
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
440 self.Show()
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
441 self.Raise()
37153f3a3dc1 wix: Tray Icon
Goffi <goffi@goffi.org>
parents: 1
diff changeset
442 e.Skip()
0
goffi@necton2
parents:
diff changeset
443