comparison frontends/src/primitivus/widget.py @ 1265:e3a9ea76de35 frontends_multi_profiles

quick_frontend, primitivus: multi-profiles refactoring part 1 (big commit, sorry :p): This refactoring allow primitivus to manage correctly several profiles at once, with various other improvments: - profile_manager can now plug several profiles at once, requesting password when needed. No more profile plug specific method is used anymore in backend, instead a "validated" key is used in actions - Primitivus widget are now based on a common "PrimitivusWidget" classe which mainly manage the decoration so far - all widgets are treated in the same way (contactList, Chat, Progress, etc), no more chat_wins specific behaviour - widgets are created in a dedicated manager, with facilities to react on new widget creation or other events - quick_frontend introduce a new QuickWidget class, which aims to be as generic and flexible as possible. It can manage several targets (jids or something else), and several profiles - each widget class return a Hash according to its target. For example if given a target jid and a profile, a widget class return a hash like (target.bare, profile), the same widget will be used for all resources of the same jid - better management of CHAT_GROUP mode for Chat widgets - some code moved from Primitivus to QuickFrontend, the final goal is to have most non backend code in QuickFrontend, and just graphic code in subclasses - no more (un)escapePrivate/PRIVATE_PREFIX - contactList improved a lot: entities not in roster and special entities (private MUC conversations) are better managed - resources can be displayed in Primitivus, and their status messages - profiles are managed in QuickFrontend with dedicated managers This is work in progress, other frontends are broken. Urwid SàText need to be updated. Most of features of Primitivus should work as before (or in a better way ;))
author Goffi <goffi@goffi.org>
date Wed, 10 Dec 2014 19:00:09 +0100
parents frontends/src/primitivus/chat.py@802b7e6bf098
children 069ad98b360d
comparison
equal deleted inserted replaced
1264:60dfa2f5d61f 1265:e3a9ea76de35
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3
4 # Primitivus: a SAT frontend
5 # Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Jérôme Poisson (goffi@goffi.org)
6
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 from sat.core import log as logging
21 log = logging.getLogger(__name__)
22 import urwid
23 from urwid_satext import sat_widgets
24 from sat_frontends.primitivus.keys import action_key_map as a_key
25
26
27 class PrimitivusWidget(urwid.WidgetWrap):
28 """Base widget for Primitivus"""
29
30 def __init__(self, w, title=''):
31 self._title = title
32 self._title_dynamic = None
33 self._original_widget = w
34 urwid.WidgetWrap.__init__(self, self._getDecoration(w))
35
36 @property
37 def title(self):
38 """Text shown in title bar of the widget"""
39
40 # profiles currently managed by frontend
41 try:
42 all_profiles = self.host.profiles
43 except AttributeError:
44 all_profiles = []
45
46 # profiles managed by the widget
47 try:
48 profiles = self.profiles
49 except AttributeError:
50 try:
51 profiles = [self.profile]
52 except AttributeError:
53 profiles = []
54
55 title_elts = []
56 if self._title:
57 title_elts.append(self._title)
58 if self._title_dynamic:
59 title_elts.append(self._title_dynamic)
60 if len(all_profiles)>1 and profiles:
61 title_elts.append(u'[{}]'.format(u', '.join(profiles)))
62 return sat_widgets.SurroundedText(u' '.join(title_elts))
63
64 @title.setter
65 def title(self, value):
66 self._title = value
67 if self.decorationVisible:
68 self.showDecoration()
69
70 @property
71 def title_dynamic(self):
72 """Dynamic part of title"""
73 return self._title_dynamic
74
75 @title_dynamic.setter
76 def title_dynamic(self, value):
77 self._title_dynamic = value
78 if self.decorationVisible:
79 self.showDecoration()
80
81 @property
82 def decorationVisible(self):
83 """True if the decoration is visible"""
84 return isinstance(self._w, sat_widgets.LabelLine)
85
86
87 def keypress(self, size, key):
88 if key == a_key['DECORATION_HIDE']: #user wants to (un)hide widget decoration
89 show = not self.decorationVisible
90 self.showDecoration(show)
91 else:
92 return super(PrimitivusWidget, self).keypress(size, key)
93
94 def _getDecoration(self, widget):
95 return sat_widgets.LabelLine(widget, self.title)
96
97 def showDecoration(self, show=True):
98 """Show/Hide the decoration around the window"""
99 self._w = self._getDecoration(self._original_widget) if show else self._original_widget
100
101 def getMenu(self):
102 raise NotImplementedError