Mercurial > libervia-backend
annotate frontends/primitivus/chat.py @ 125:8d611eb9ae48
primitivus: contact list enhancement
- primitivus: contact list now display groups and sexy name (instead of bare jid)
- primitivus: contact list now show an alert when somebody want to contact you, and its chat window is not on the screen
- primitivus: cursor is now visible when going to chat window (useful to go back in logs)
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 12 Jul 2010 17:50:00 +0800 |
parents | 961e0898271f |
children | 1b33b681ebd8 |
rev | line source |
---|---|
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
1 #!/usr/bin/python |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
2 # -*- coding: utf-8 -*- |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
3 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
4 """ |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
5 Primitivus: a SAT frontend |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
6 Copyright (C) 2009, 2010 Jérôme Poisson (goffi@goffi.org) |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
7 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
8 This program is free software: you can redistribute it and/or modify |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
9 it under the terms of the GNU General Public License as published by |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
11 (at your option) any later version. |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
12 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
13 This program is distributed in the hope that it will be useful, |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
16 GNU General Public License for more details. |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
17 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
18 You should have received a copy of the GNU General Public License |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
19 along with this program. If not, see <http://www.gnu.org/licenses/>. |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
20 """ |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
21 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
22 import urwid |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
23 from quick_frontend.quick_contact_list import QuickContactList |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
24 from quick_frontend.quick_chat import QuickChat |
124 | 25 import custom_widgets |
26 import time | |
27 from tools.jid import JID | |
28 | |
29 | |
30 class ChatText(urwid.FlowWidget): | |
31 """Manage the printing of chat message""" | |
32 | |
33 def __init__(self, parent, timestamp, my_jid, from_jid, message, align='left'): | |
34 self.parent = parent | |
35 self.timestamp = time.localtime(timestamp) | |
36 self.my_jid = my_jid | |
37 self.from_jid = from_jid | |
38 self.message = unicode(message) | |
39 self.align = align | |
40 | |
41 def selectable(self): | |
42 return True | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
43 |
124 | 44 def keypress(self, size, key): |
45 return key | |
46 | |
47 def rows(self,size,focus=False): | |
48 return self.display_widget(size, focus).rows(size, focus) | |
49 | |
50 def render(self, size, focus=False): | |
125
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
51 canvas = urwid.CompositeCanvas(self.display_widget(size, focus).render(size, focus)) |
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
52 if focus: |
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
53 canvas.set_cursor(self.get_cursor_coords(size)) |
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
54 return canvas |
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
55 |
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
56 def get_cursor_coords(self, size): |
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
57 #(maxcol,) = size |
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
58 return 0, 0 |
124 | 59 |
60 def display_widget(self, size, focus): | |
61 my_mess = (self.from_jid.resource == self.parent.nick) if self.parent.type == "group" else (self.from_jid.short == self.my_jid.short) #mymess = True if message comes from local user | |
62 render_txt = [] | |
63 if self.parent.show_timestamp: | |
64 time_format = "%c" if self.timestamp < self.parent.day_change else "%H:%M" #if the message was sent before today, we print the full date | |
65 render_txt.append(('date',"[%s]" % time.strftime(time_format, self.timestamp))) | |
66 if self.parent.show_short_nick: | |
67 render_txt.append(('my_nick' if my_mess else 'other_nick',"**" if my_mess else "*")) | |
68 else: | |
69 render_txt.append(('my_nick' if my_mess else 'other_nick',"[%s] " % self.from_jid)) | |
70 render_txt.append(self.message) | |
71 return urwid.Text(render_txt, align=self.align) | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
72 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
73 class Chat(urwid.WidgetWrap, QuickChat): |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
74 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
75 def __init__(self, target, host, type='one2one'): |
124 | 76 self.target = target |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
77 QuickChat.__init__(self, target, host, type) |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
78 self.content = urwid.SimpleListWalker([]) |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
79 self.text_list = urwid.ListBox(self.content) |
124 | 80 self.chat_widget = urwid.Frame(self.text_list) |
81 self.columns = urwid.Columns([('weight', 8, self.chat_widget)]) | |
82 urwid.WidgetWrap.__init__(self, self.__getDecoration(self.columns)) | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
83 self.setType(type) |
124 | 84 self.day_change = time.strptime(time.strftime("%a %b %d 00:00:00 %Y")) #struct_time of day changing time |
85 self.show_timestamp = True | |
86 self.show_short_nick = False | |
87 self.show_title = True | |
88 self.subject = None | |
89 | |
90 def keypress(self, size, key): | |
91 if key == "meta p": #user wants to (un)hide the presents panel | |
92 if self.type == 'group': | |
93 widgets = self.columns.widget_list | |
94 if self.present_panel in widgets: | |
95 self.__removePresentPanel() | |
96 else: | |
97 self.__appendPresentPanel() | |
98 elif key == "meta t": #user wants to (un)hide timestamp | |
99 self.show_timestamp = not self.show_timestamp | |
100 for wid in self.content: | |
101 wid._invalidate() | |
102 elif key == "meta n": #user wants to (not) use short nick | |
103 self.show_short_nick = not self.show_short_nick | |
104 for wid in self.content: | |
105 wid._invalidate() | |
106 elif key == "meta l": #user wants to (un)hide widget decoration | |
107 show = not self._w.__class__ == custom_widgets.LabelLine | |
108 self.showDecoration(show) | |
109 self._invalidate() | |
110 elif key == "meta s": #user wants to (un)hide group's subject | |
111 if self.subject: | |
112 self.show_title = not self.show_title | |
113 if self.show_title: | |
114 self.setSubject(self.subject) | |
115 else: | |
116 self.chat_widget.header = None | |
117 self._invalidate() | |
118 | |
119 | |
120 return super(Chat, self).keypress(size, key) | |
121 | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
122 def setType(self, type): |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
123 QuickChat.setType(self, type) |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
124 if type == 'one2one': |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
125 self.historyPrint(profile=self.host.profile) |
124 | 126 elif type == 'group': |
127 if len(self.columns.widget_list) == 1: | |
128 present_widget = self.__buildPresentList() | |
129 self.present_panel = custom_widgets.VerticalSeparator(present_widget) | |
130 self.__appendPresentPanel() | |
131 | |
132 def __getDecoration(self, widget): | |
133 return custom_widgets.LabelLine(widget, custom_widgets.SurroundedText(unicode(self.target))) | |
134 | |
135 def showDecoration(self, show=True): | |
136 if show: | |
137 main_widget = self.__getDecoration(self.columns) | |
138 else: | |
139 main_widget = self.columns | |
140 self._w = main_widget | |
141 | |
142 | |
143 def __buildPresentList(self): | |
125
8d611eb9ae48
primitivus: contact list enhancement
Goffi <goffi@goffi.org>
parents:
124
diff
changeset
|
144 self.present_wid = custom_widgets.GenericList([],option_type = custom_widgets.ClickableText) |
124 | 145 return self.present_wid |
146 | |
147 def __appendPresentPanel(self): | |
148 self.columns.widget_list.append(self.present_panel) | |
149 self.columns.column_types.append(('weight', 2)) | |
150 | |
151 def __removePresentPanel(self): | |
152 self.columns.set_focus(0) #necessary as the focus change to the next object, we can go out of range if we are on the last object of self.columns | |
153 self.columns.widget_list.remove(self.present_panel) | |
154 del self.columns.column_types[-1] | |
155 | |
120 | 156 def setSubject(self, subject): |
157 """Set title for a group chat""" | |
158 QuickChat.setSubject(self, subject) | |
124 | 159 self.subject = subject |
160 self.chat_widget.header = urwid.AttrMap(urwid.Text(unicode(subject),align='center'),'title') | |
161 | |
162 def setPresents(self, param_nicks): | |
163 """Set the users presents in the contact list for a group chat | |
164 @param nicks: list of nicknames | |
165 """ | |
166 nicks = [unicode(nick) for nick in param_nicks] #FIXME: should be done in DBus bridge | |
167 nicks.sort() | |
168 QuickChat.setPresents(self, nicks) | |
169 self.present_wid.changeValues(nicks) | |
170 self.host.redraw() | |
120 | 171 |
124 | 172 def replaceUser(self, param_nick): |
173 """Add user if it is not in the group list""" | |
174 nick = unicode(param_nick) #FIXME: should be done in DBus bridge | |
175 if "facebook" in nick: | |
176 self.host.debug() | |
177 QuickChat.replaceUser(self, nick) | |
178 presents = self.present_wid.getAllValues() | |
179 if nick not in presents: | |
180 presents.append(nick) | |
181 presents.sort() | |
182 self.present_wid.changeValues(presents) | |
183 self.host.redraw() | |
184 | |
185 def removeUser(self, param_nick): | |
186 """Remove a user from the group list""" | |
187 nick = unicode(param_nick) #FIXME: should be done in DBus bridge | |
188 QuickChat.removeUser(self, nick) | |
189 self.present_wid.deleteValue(nick) | |
190 self.host.redraw() | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
191 |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
192 def printMessage(self, from_jid, msg, profile, timestamp=""): |
124 | 193 assert (from_jid.__class__ == JID) |
194 my_jid = self.host.profiles[profile]['whoami'] | |
195 self.content.append(ChatText(self, timestamp or None, my_jid, from_jid, msg)) | |
119
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
196 self.text_list.set_focus(len(self.content)-1) |
ded2431cea5a
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
197 self.host.redraw() |