annotate frontends/wix/chat.py @ 90:4020931569b8

Tarot Game: session initialization
author Goffi <goffi@goffi.org>
date Sun, 23 May 2010 16:39:05 +0930
parents 66d784082930
children 1ca5f254ce41
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: 0
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
goffi@necton2
parents:
diff changeset
23
goffi@necton2
parents:
diff changeset
24 import wx
goffi@necton2
parents:
diff changeset
25 import os.path
goffi@necton2
parents:
diff changeset
26 import pdb
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
27 from logging import debug, info, error, warning
0
goffi@necton2
parents:
diff changeset
28 from tools.jid import JID
goffi@necton2
parents:
diff changeset
29 from quick_frontend.quick_chat import QuickChat
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
30 from contact_list import ContactList
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
31 from card_game import CardPanel
0
goffi@necton2
parents:
diff changeset
32
goffi@necton2
parents:
diff changeset
33
goffi@necton2
parents:
diff changeset
34 idSEND = 1
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
35 idTAROT = 2
0
goffi@necton2
parents:
diff changeset
36
goffi@necton2
parents:
diff changeset
37 class Chat(wx.Frame, QuickChat):
goffi@necton2
parents:
diff changeset
38 """The chat Window for one to one conversations"""
goffi@necton2
parents:
diff changeset
39
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
40 def __init__(self, target, host, type='one2one'):
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
41 wx.Frame.__init__(self, None, title=target, pos=(0,0), size=(400,200))
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
42 QuickChat.__init__(self, target, host, type)
0
goffi@necton2
parents:
diff changeset
43
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
44 self.sizer = wx.BoxSizer(wx.VERTICAL)
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
45 self.SetSizer(self.sizer)
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
46
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
47 self.splitter = wx.SplitterWindow(self, -1)
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
48 self.sizer.Add(self.splitter, 1, flag = wx.EXPAND)
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
49
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
50 self.conv_panel = wx.Panel(self.splitter)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
51 self.conv_panel.sizer = wx.BoxSizer(wx.VERTICAL)
76
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
52 self.subjectBox = wx.TextCtrl(self.conv_panel, -1, style = wx.TE_READONLY)
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
53 self.chatWindow = wx.TextCtrl(self.conv_panel, -1, style = wx.TE_MULTILINE | wx.TE_RICH | wx.TE_READONLY)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
54 self.textBox = wx.TextCtrl(self.conv_panel, -1, style = wx.TE_PROCESS_ENTER)
76
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
55 self.conv_panel.sizer.Add(self.subjectBox, flag=wx.EXPAND)
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
56 self.conv_panel.sizer.Add(self.chatWindow, 1, flag=wx.EXPAND)
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
57 self.conv_panel.sizer.Add(self.textBox, 0, flag=wx.EXPAND)
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
58 self.conv_panel.SetSizer(self.conv_panel.sizer)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
59 self.splitter.Initialize(self.conv_panel)
78
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
60 self.SetMenuBar(wx.MenuBar())
0
goffi@necton2
parents:
diff changeset
61
goffi@necton2
parents:
diff changeset
62 #events
goffi@necton2
parents:
diff changeset
63 self.Bind(wx.EVT_CLOSE, self.onClose, self)
goffi@necton2
parents:
diff changeset
64 self.Bind(wx.EVT_TEXT_ENTER, self.onEnterPressed, self.textBox)
goffi@necton2
parents:
diff changeset
65
goffi@necton2
parents:
diff changeset
66 #fonts
goffi@necton2
parents:
diff changeset
67 self.font={}
goffi@necton2
parents:
diff changeset
68 self.font["points"] = self.chatWindow.GetFont().GetPointSize()
goffi@necton2
parents:
diff changeset
69 self.font["family"] = self.chatWindow.GetFont().GetFamily()
goffi@necton2
parents:
diff changeset
70
79
db0a0f000e37 Chat presentation enhancement
Goffi <goffi@goffi.org>
parents: 78
diff changeset
71 self.setType(self.type)
db0a0f000e37 Chat presentation enhancement
Goffi <goffi@goffi.org>
parents: 78
diff changeset
72
0
goffi@necton2
parents:
diff changeset
73 #misc
goffi@necton2
parents:
diff changeset
74 self.textBox.SetFocus()
goffi@necton2
parents:
diff changeset
75 self.Hide() #We hide because of the show toggle
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
76
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
77 def __createPresents(self):
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
78 """Create a list of present people in a group chat"""
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
79 self.present_panel = wx.Panel(self.splitter)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
80 self.present_panel.sizer = wx.BoxSizer(wx.VERTICAL)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
81 self.present_panel.SetBackgroundColour(wx.BLUE)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
82 self.present_panel.presents = ContactList(self.present_panel, self.host, type='nicks')
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
83 self.present_panel.presents.SetMinSize(wx.Size(80,20))
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
84 self.present_panel.sizer.Add(self.present_panel.presents, 1, wx.EXPAND)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
85 self.present_panel.SetSizer(self.present_panel.sizer)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
86 self.splitter.SplitVertically(self.present_panel, self.conv_panel, 80)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
87
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
88 def setType(self, type):
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
89 QuickChat.setType(self, type)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
90 if type is 'group' and not self.splitter.IsSplit():
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
91 self.__createPresents()
76
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
92 self.subjectBox.Show()
78
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
93 self.__eraseMenus()
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
94 self.__createMenus_group()
79
db0a0f000e37 Chat presentation enhancement
Goffi <goffi@goffi.org>
parents: 78
diff changeset
95 self.historyPrint(profile=self.host.profile)
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
96 self.sizer.Layout()
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
97 elif type is 'one2one' and self.splitter.IsSplit():
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
98 self.splitter.Unsplit(self.present_panel)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
99 del self.present_panel
78
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
100 self.GetMenuBar().Show()
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
101 self.subjectBox.Hide()
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
102 self.__eraseMenus()
78
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
103 self.__createMenus_O2O()
79
db0a0f000e37 Chat presentation enhancement
Goffi <goffi@goffi.org>
parents: 78
diff changeset
104 self.nick = None
76
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
105 else:
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
106 self.subjectBox.Hide()
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
107 self.__eraseMenus()
78
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
108 self.__createMenus_O2O()
79
db0a0f000e37 Chat presentation enhancement
Goffi <goffi@goffi.org>
parents: 78
diff changeset
109 self.historyPrint(profile=self.host.profile)
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
110
90
4020931569b8 Tarot Game: session initialization
Goffi <goffi@goffi.org>
parents: 87
diff changeset
111 def startGame(self, game_type, referee, players):
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
112 """Configure the chat window to start a game"""
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
113 if game_type=="Tarot":
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
114 debug (_("configure chat window for Tarot game"))
90
4020931569b8 Tarot Game: session initialization
Goffi <goffi@goffi.org>
parents: 87
diff changeset
115 self.tarot_panel = CardPanel(self, referee, players, self.nick)
87
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
116 self.sizer.Prepend(self.tarot_panel, 0, flag=wx.EXPAND)
86
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
117 self.sizer.Layout()
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
118 self.Fit()
4b5f2d55b6ac wix: Tarot panel now appear on top of groupchat window when a Tarot game is started
Goffi <goffi@goffi.org>
parents: 85
diff changeset
119
87
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
120 def getGame(self, game_type):
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
121 """Return class managing the game type"""
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
122 #TODO: check that the game is launched, and manage errors
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
123 if game_type=="Tarot":
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
124 return self.tarot_panel
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
125
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
126
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
127 def setPresents(self, nicks):
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
128 """Set the users presents in the contact list for a group chat
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
129 @param nicks: list of nicknames
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
130 """
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
131 debug (_("Adding users %s to room") % nicks)
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
132 if self.type != "group":
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
133 error (_("[INTERNAL] trying to set presents nicks for a non group chat window"))
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
134 return
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
135 for nick in nicks:
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
136 self.present_panel.presents.replace(nick)
87
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
137 self.occupants.add(nick)
75
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
138
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
139
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
140 def replaceUser(self, nick):
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
141 """Add user if it is not in the group list"""
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
142 debug (_("Replacing user %s") % nick)
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
143 if self.type != "group":
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
144 error (_("[INTERNAL] trying to replace user for a non group chat window"))
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
145 return
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
146 self.present_panel.presents.replace(nick)
87
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
147 self.occupants.add(nick)
75
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
148
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
149 def removeUser(self, nick):
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
150 """Remove a user from the group list"""
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
151 debug(_("Removing user %s") % nick)
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
152 if self.type != "group":
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
153 error (_("[INTERNAL] trying to remove user for a non group chat window"))
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
154 return
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
155 self.present_panel.presents.remove(nick)
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
156 self.occupants.remove(nick)
75
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
157
76
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
158 def setSubject(self, subject):
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
159 """Set title for a group chat"""
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
160 debug(_("Setting subject to %s") % subject)
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
161 if self.type != "group":
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
162 error (_("[INTERNAL] trying to set subject for a non group chat window"))
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
163 return
8becde8a967c MUC: added subject management
Goffi <goffi@goffi.org>
parents: 75
diff changeset
164 self.subjectBox.SetValue(subject)
75
7322a41f8a8e Basic user joined/left management
Goffi <goffi@goffi.org>
parents: 72
diff changeset
165
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
166
78
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
167 def __eraseMenus(self):
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
168 """erase all menus"""
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
169 menuBar = self.GetMenuBar()
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
170 for i in range(menuBar.GetMenuCount()):
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
171 menuBar.Remove(i)
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
172
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
173 def __createMenus_O2O(self):
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
174 """create menu bar for one 2 one chat"""
0
goffi@necton2
parents:
diff changeset
175 info("Creating menus")
78
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
176 self.__eraseMenus()
ace2af8abc5a Added method to know which MUC are joined, and which subjects were received.
Goffi <goffi@goffi.org>
parents: 77
diff changeset
177 menuBar = self.GetMenuBar()
0
goffi@necton2
parents:
diff changeset
178 actionMenu = wx.Menu()
70
Goffi <goffi@goffi.org>
parents: 67
diff changeset
179 actionMenu.Append(idSEND, _("&SendFile CTRL-s"),_(" Send a file to contact"))
Goffi <goffi@goffi.org>
parents: 67
diff changeset
180 menuBar.Append(actionMenu,_("&Action"))
0
goffi@necton2
parents:
diff changeset
181
goffi@necton2
parents:
diff changeset
182 #events
goffi@necton2
parents:
diff changeset
183 wx.EVT_MENU(self, idSEND, self.onSendFile)
goffi@necton2
parents:
diff changeset
184
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
185 def __createMenus_group(self):
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
186 """create menu bar for group chat"""
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
187 info("Creating menus")
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
188 self.__eraseMenus()
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
189 menuBar = self.GetMenuBar()
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
190 actionMenu = wx.Menu()
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
191 actionMenu.Append(idTAROT, _("Start &Tarot game CTRL-t"),_(" Start a Tarot card game")) #tmp
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
192 menuBar.Append(actionMenu,_("&Games"))
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
193
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
194 #events
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
195 wx.EVT_MENU(self, idTAROT, self.onStartTarot)
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
196
0
goffi@necton2
parents:
diff changeset
197 def __del__(self):
goffi@necton2
parents:
diff changeset
198 wx.Frame.__del__(self)
goffi@necton2
parents:
diff changeset
199
goffi@necton2
parents:
diff changeset
200 def onClose(self, event):
goffi@necton2
parents:
diff changeset
201 """Close event: we only hide the frame."""
goffi@necton2
parents:
diff changeset
202 event.Veto()
goffi@necton2
parents:
diff changeset
203 self.Show() ## this is a workaround to a wxpython bug:
goffi@necton2
parents:
diff changeset
204 ## with Raise on hidden frame, Hide doesn't work anymore
goffi@necton2
parents:
diff changeset
205 ## TODO: check this and repport bug to wxpython devs
goffi@necton2
parents:
diff changeset
206 self.Hide()
goffi@necton2
parents:
diff changeset
207
goffi@necton2
parents:
diff changeset
208 def onEnterPressed(self, event):
goffi@necton2
parents:
diff changeset
209 """Behaviour when enter pressed in send line."""
77
1ae680f9682e wix: MUC groupchat management + short nick shown in chat window instead of full jid when possible
Goffi <goffi@goffi.org>
parents: 76
diff changeset
210 self.host.bridge.sendMessage(self.target.short if self.type=='group' else self.target,
1ae680f9682e wix: MUC groupchat management + short nick shown in chat window instead of full jid when possible
Goffi <goffi@goffi.org>
parents: 76
diff changeset
211 event.GetString(),
1ae680f9682e wix: MUC groupchat management + short nick shown in chat window instead of full jid when possible
Goffi <goffi@goffi.org>
parents: 76
diff changeset
212 type = "groupchat" if self.type=='group' else "chat",
1ae680f9682e wix: MUC groupchat management + short nick shown in chat window instead of full jid when possible
Goffi <goffi@goffi.org>
parents: 76
diff changeset
213 profile_key=self.host.profile)
0
goffi@necton2
parents:
diff changeset
214 self.textBox.Clear()
goffi@necton2
parents:
diff changeset
215
goffi@necton2
parents:
diff changeset
216
goffi@necton2
parents:
diff changeset
217
66
8147b4f40809 SàT: multi-profile: DBus signals and frontend adaptation (first draft)
Goffi <goffi@goffi.org>
parents: 57
diff changeset
218 def printMessage(self, from_jid, msg, profile, timestamp=""):
0
goffi@necton2
parents:
diff changeset
219 """Print the message with differents colors depending on where it comes from."""
goffi@necton2
parents:
diff changeset
220 jid=JID(from_jid)
79
db0a0f000e37 Chat presentation enhancement
Goffi <goffi@goffi.org>
parents: 78
diff changeset
221 print "printMessage, jid=",jid,"type=",self.type
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: 79
diff changeset
222 nick = jid.resource if self.type == "group" else (self.host.CM.getAttr(jid,'nick') or self.host.CM.getAttr(jid,'name') or jid.node)
79
db0a0f000e37 Chat presentation enhancement
Goffi <goffi@goffi.org>
parents: 78
diff changeset
223 mymess = (jid.resource == self.nick) if self.type == "group" else (jid.short == self.host.profiles[profile]['whoami'].short) #mymess = True if message comes from local user
0
goffi@necton2
parents:
diff changeset
224 _font = wx.Font(self.font["points"], self.font["family"], wx.NORMAL, wx.BOLD)
goffi@necton2
parents:
diff changeset
225 self.chatWindow.SetDefaultStyle(wx.TextAttr( "BLACK" if mymess else "BLUE", font=_font))
77
1ae680f9682e wix: MUC groupchat management + short nick shown in chat window instead of full jid when possible
Goffi <goffi@goffi.org>
parents: 76
diff changeset
226 self.chatWindow.AppendText("[%s] " % nick)
0
goffi@necton2
parents:
diff changeset
227 _font = wx.Font(self.font["points"], self.font["family"], wx.ITALIC if mymess else wx.NORMAL, wx.NORMAL)
goffi@necton2
parents:
diff changeset
228 self.chatWindow.SetDefaultStyle(wx.TextAttr("BLACK", font=_font))
goffi@necton2
parents:
diff changeset
229 self.chatWindow.AppendText("%s\n" % msg)
goffi@necton2
parents:
diff changeset
230 if not mymess:
goffi@necton2
parents:
diff changeset
231 self.Raise() #FIXME: too intrusive
goffi@necton2
parents:
diff changeset
232
goffi@necton2
parents:
diff changeset
233 ### events ###
goffi@necton2
parents:
diff changeset
234
goffi@necton2
parents:
diff changeset
235 def onSendFile(self, e):
70
Goffi <goffi@goffi.org>
parents: 67
diff changeset
236 debug(_("Send File"))
Goffi <goffi@goffi.org>
parents: 67
diff changeset
237 filename = wx.FileSelector(_("Choose a file to send"), flags = wx.FD_FILE_MUST_EXIST)
0
goffi@necton2
parents:
diff changeset
238 if filename:
70
Goffi <goffi@goffi.org>
parents: 67
diff changeset
239 debug(_("filename: %s"),filename)
72
f271fff3a713 MUC implementation: first draft
Goffi <goffi@goffi.org>
parents: 70
diff changeset
240 full_jid = self.host.CM.get_full(self.target)
0
goffi@necton2
parents:
diff changeset
241 id = self.host.bridge.sendFile(full_jid, filename)
70
Goffi <goffi@goffi.org>
parents: 67
diff changeset
242 self.host.waitProgress(id, _("File Transfer"), _("Copying %s") % os.path.basename(filename))
0
goffi@necton2
parents:
diff changeset
243
85
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
244 def onStartTarot(self, e):
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
245 debug (_("Starting Tarot game"))
fc7583282d40 Tarot Game plugin: first draft
Goffi <goffi@goffi.org>
parents: 80
diff changeset
246 warning (_("FIXME: temporary menu, must be changed"))
87
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
247 if len(self.occupants) != 4:
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
248 err_dlg = wx.MessageDialog(self, _("You need to be exactly 4 peoples in the room to start a Tarot game"), _("Can't start game"), style = wx.OK | wx.ICON_ERROR) #FIXME: gof: temporary only, need to choose the people with who the game has to be started
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
249 err_dlg.ShowModal()
66d784082930 Tarot game
Goffi <goffi@goffi.org>
parents: 86
diff changeset
250 else:
90
4020931569b8 Tarot Game: session initialization
Goffi <goffi@goffi.org>
parents: 87
diff changeset
251 self.host.bridge.tarotGameCreate(self.id, list(self.occupants), self.host.profile)