Mercurial > urwid-satext
annotate urwid_satext/sat_widgets.py @ 71:eddb8369ba06
dates udpate
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 04 Feb 2014 17:55:41 +0100 |
parents | 24d49f1d735f |
children | 0afff3c54b6e |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
64 | 4 # Urwid SàT extensions |
71 | 5 # Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Jérôme Poisson (goffi@goffi.org) |
64 | 6 # |
7 # This program is free software: you can redistribute it and/or modify | |
8 # it under the terms of the GNU Lesser 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 Lesser General Public License for more details. | |
16 # | |
17 # You should have received a copy of the GNU Lesser General Public License | |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
0 | 19 |
20 import urwid | |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
21 from logging import debug, info, warning, error |
44 | 22 import encodings |
23 utf8decode = lambda s: encodings.codecs.utf_8_decode(s)[0] | |
0 | 24 |
59
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
25 from urwid.util import is_mouse_press #XXX: is_mouse_press is not included in urwid in 1.0.0 |
0 | 26 |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
27 |
4
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
28 class AdvancedEdit(urwid.Edit): |
7 | 29 """Edit box with some custom improvments |
30 new chars: | |
31 - C-a: like 'home' | |
32 - C-e: like 'end' | |
33 - C-k: remove everything on the right of the cursor | |
34 - C-w: remove the word on the back | |
35 new behaviour: emit a 'click' signal when enter is pressed""" | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
36 signals = urwid.Edit.signals + ['click'] |
4
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
37 |
22
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
38 def setCompletionMethod(self, callback): |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
39 """Define method called when completion is asked |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
40 @callback: method with 2 arguments: |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
41 - the text to complete |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
42 - if there was already a completion, a dict with |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
43 - 'completed':last completion |
66 | 44 - 'completion_pos': cursor position where the completion starts |
22
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
45 - 'position': last completion cursor position |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
46 this dict must be used (and can be filled) to find next completion) |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
47 and which return the full text completed""" |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
48 self.completion_cb = callback |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
49 self.completion_data = {} |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
50 |
4
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
51 def keypress(self, size, key): |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
52 #TODO: insert mode is not managed yet |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
53 if key == 'ctrl a': |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
54 key = 'home' |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
55 elif key == 'ctrl e': |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
56 key = 'end' |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
57 elif key == 'ctrl k': |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
58 self._delete_highlighted() |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
59 self.set_edit_text(self.edit_text[:self.edit_pos]) |
66 | 60 elif key == 'ctrl w': |
4
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
61 before = self.edit_text[:self.edit_pos] |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
62 pos = before.rstrip().rfind(" ")+1 |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
63 self.set_edit_text(before[:pos] + self.edit_text[self.edit_pos:]) |
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
64 self.set_edit_pos(pos) |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
65 elif key == 'enter': |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
66 self._emit('click') |
22
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
67 elif key == 'shift tab': |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
68 try: |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
69 before = self.edit_text[:self.edit_pos] |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
70 if self.completion_data: |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
71 if (not self.completion_data['completed'] |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
72 or self.completion_data['position'] != self.edit_pos |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
73 or not before.endswith(self.completion_data['completed'])): |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
74 self.completion_data.clear() |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
75 else: |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
76 before = before[:-len(self.completion_data['completed'])] |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
77 complet = self.completion_cb(before, self.completion_data) |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
78 self.completion_data['completed'] = complet[len(before):] |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
79 self.set_edit_text(complet+self.edit_text[self.edit_pos:]) |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
80 self.set_edit_pos(len(complet)) |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
81 self.completion_data['position'] = self.edit_pos |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
82 return |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
83 except AttributeError: |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
84 #No completion method defined |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
85 pass |
66 | 86 return super(AdvancedEdit, self).keypress(size, key) |
59
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
87 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
88 |
59
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
89 class Password(AdvancedEdit): |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
90 """Edit box which doesn't show what is entered (show '*' or other char instead)""" |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
91 |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
92 def __init__(self, *args, **kwargs): |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
93 """Same args than Edit.__init__ with an additional keyword arg 'hidden_char' |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
94 @param hidden_char: char to show instead of what is actually entered: default '*' |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
95 """ |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
96 self.hidden_char=kwargs['hidden_char'] if kwargs.has_key('hidden_char') else '*' |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
97 self.__real_text='' |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
98 super(Password, self).__init__(*args, **kwargs) |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
99 |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
100 def set_edit_text(self, text): |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
101 self.__real_text = text |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
102 hidden_txt = len(text)*'*' |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
103 super(Password, self).set_edit_text(hidden_txt) |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
104 |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
105 def get_edit_text(self): |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
106 return self.__real_text |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
107 |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
108 def insert_text(self, text): |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
109 self._edit_text = self.__real_text |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
110 super(Password,self).insert_text(text) |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
111 |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
112 def render(self, size, focus=False): |
a99951c9ce2a
Password now use AdvancedEdit to take advantage of shortcuts
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
113 return super(Password, self).render(size, focus) |
66 | 114 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
115 |
57 | 116 class ModalEdit(AdvancedEdit): |
117 """AdvancedEdit with vi-like mode management | |
68
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
118 - there is a new 'mode' property which can be changed with properties |
57 | 119 specified during init |
120 - completion callback received a new 'mode' argument | |
121 """ | |
122 | |
123 def __init__(self, modes, *args, **kwargs): | |
124 """ first argument is "modes", others are the same paramaters as AdvancedEdit | |
125 @param modes: dictionnary in the form: | |
126 'key_to_change_mode': ('Mode', caption) | |
127 e.g.: 'i': ('INSERTION', '> ') | |
128 There *MUST* be a None key (for NORMAL mode)""" | |
129 assert(isinstance(modes, dict) and None in modes) | |
130 self._modes = modes | |
131 super(ModalEdit, self).__init__(*args, **kwargs) | |
132 self.mode = self._modes[None][0] | |
133 | |
134 @property | |
135 def mode(self): | |
136 return self._mode | |
137 | |
138 @mode.setter | |
139 def mode(self, value): | |
140 mode_key = None | |
141 for key in self._modes: | |
142 if self._modes[key][0] == value: | |
143 mode_key = key | |
144 break | |
66 | 145 |
57 | 146 mode, caption = self._modes[mode_key] |
147 self._mode = mode | |
148 self.set_caption(caption) | |
149 if not mode_key: #we are in NORMAL mode | |
150 self.set_edit_text('') | |
151 | |
152 def setCompletionMethod(self, callback): | |
153 """ Same as AdvancedEdit.setCompletionMethod, but with a third argument: current mode""" | |
154 super(ModalEdit, self).setCompletionMethod(lambda text,data: callback(text, data, self._mode)) | |
155 | |
156 def keypress(self, size, key): | |
157 if key == 'esc': | |
158 self.mode = "NORMAL" | |
159 return | |
160 if self._mode == 'NORMAL' and key in self._modes: | |
161 self.mode = self._modes[key][0] | |
162 return | |
66 | 163 return super(ModalEdit, self).keypress(size, key) |
4
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
164 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
165 |
67 | 166 class SurroundedText(urwid.Widget): |
7 | 167 """Text centered on a repeated character (like a Divider, but with a text in the center)""" |
67 | 168 _sizing = frozenset(['flow']) |
6 | 169 |
170 def __init__(self,text,car=utf8decode('─')): | |
171 self.text=text | |
172 self.car=car | |
173 | |
174 def rows(self,size,focus=False): | |
175 return self.display_widget(size, focus).rows(size, focus) | |
176 | |
177 def render(self, size, focus=False): | |
178 return self.display_widget(size, focus).render(size, focus) | |
179 | |
180 def display_widget(self, size, focus): | |
181 (maxcol,) = size | |
182 middle = (maxcol-len(self.text))/2 | |
183 render_text = middle * self.car + self.text + (maxcol - len(self.text) - middle) * self.car | |
184 return urwid.Text(render_text) | |
185 | |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
186 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
187 class SelectableText(urwid.WidgetWrap): |
6 | 188 """Text which can be selected with space""" |
0 | 189 signals = ['change'] |
66 | 190 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
191 def __init__(self, text, align='left', header='', focus_attr='default_focus', selected_text=None, selected=False, data=None): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
192 """@param text: same as urwid.Text's text parameter |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
193 @param align: same as urwid.Text's align parameter |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
194 @select_attr: attrbute to use when selected |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
195 @param selected: is the text selected ?""" |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
196 self.focus_attr = focus_attr |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
197 self.__selected = False |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
198 self.__was_focused = False |
69
b39c81cdd863
removed __valid_text: urwid now manage basestring subclasses, it's not necessary anymore
Goffi <goffi@goffi.org>
parents:
68
diff
changeset
|
199 self.header = header |
b39c81cdd863
removed __valid_text: urwid now manage basestring subclasses, it's not necessary anymore
Goffi <goffi@goffi.org>
parents:
68
diff
changeset
|
200 self.default_txt = text |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
201 urwid.WidgetWrap.__init__(self, urwid.Text("",align=align)) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
202 self.setSelectedText(selected_text) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
203 self.setState(selected) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
204 |
0 | 205 def getValue(self): |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
206 if isinstance(self.default_txt,basestring): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
207 return self.default_txt |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
208 list_attr = self.default_txt if isinstance(self.default_txt, list) else [self.default_txt] |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
209 txt = "" |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
210 for attr in list_attr: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
211 if isinstance(attr,tuple): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
212 txt+=attr[1] |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
213 else: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
214 txt+=attr |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
215 return txt |
9 | 216 |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
217 def get_text(self): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
218 """for compatibility with urwid.Text""" |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
219 return self.getValue() |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
220 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
221 def set_text(self, text): |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
222 """/!\ set_text doesn't change self.selected_txt !""" |
69
b39c81cdd863
removed __valid_text: urwid now manage basestring subclasses, it's not necessary anymore
Goffi <goffi@goffi.org>
parents:
68
diff
changeset
|
223 self.default_txt = text |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
224 self.setState(self.__selected,invisible=True) |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
225 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
226 def setSelectedText(self, text=None): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
227 """Text to display when selected |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
228 @text: text as in urwid.Text or None for default value""" |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
229 if text == None: |
27 | 230 text = ('selected',self.getValue()) |
69
b39c81cdd863
removed __valid_text: urwid now manage basestring subclasses, it's not necessary anymore
Goffi <goffi@goffi.org>
parents:
68
diff
changeset
|
231 self.selected_txt = text |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
232 if self.__selected: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
233 self.setState(self.__selected) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
234 |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
235 |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
236 def __set_txt(self): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
237 txt_list = [self.header] |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
238 txt = self.selected_txt if self.__selected else self.default_txt |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
239 if isinstance(txt,list): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
240 txt_list.extend(txt) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
241 else: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
242 txt_list.append(txt) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
243 self._w.base_widget.set_text(txt_list) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
244 |
66 | 245 |
0 | 246 def setState(self, selected, invisible=False): |
247 """Change state | |
248 @param selected: boolean state value | |
249 @param invisible: don't emit change signal if True""" | |
250 assert(type(selected)==bool) | |
251 self.__selected=selected | |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
252 self.__set_txt() |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
253 self.__was_focused = False |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
254 self._invalidate() |
0 | 255 if not invisible: |
256 self._emit("change", self.__selected) | |
66 | 257 |
0 | 258 def getState(self): |
259 return self.__selected | |
260 | |
261 def selectable(self): | |
262 return True | |
263 | |
264 def keypress(self, size, key): | |
265 if key==' ' or key=='enter': | |
266 self.setState(not self.__selected) | |
267 else: | |
268 return key | |
269 | |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
270 def mouse_event(self, size, event, button, x, y, focus): |
53
d34f2b0f68d3
urwid 1.0.0 update: fixed missing is_mouse_press
Goffi <goffi@goffi.org>
parents:
44
diff
changeset
|
271 if is_mouse_press(event) and button == 1: |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
272 self.setState(not self.__selected) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
273 return True |
66 | 274 |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
275 return False |
66 | 276 |
0 | 277 def render(self, size, focus=False): |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
278 attr_list = self._w.base_widget._attrib |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
279 if not focus: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
280 if self.__was_focused: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
281 self.__set_txt() |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
282 self.__was_focused = False |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
283 else: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
284 if not self.__was_focused: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
285 if not attr_list: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
286 attr_list.append((self.focus_attr,len(self._w.base_widget.text))) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
287 else: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
288 for idx in range(len(attr_list)): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
289 attr,attr_len = attr_list[idx] |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
290 if attr == None: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
291 attr = self.focus_attr |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
292 attr_list[idx] = (attr,attr_len) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
293 else: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
294 if not attr.endswith('_focus'): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
295 attr+="_focus" |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
296 attr_list[idx] = (attr,attr_len) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
297 self._w.base_widget._invalidate() |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
298 self.__was_focused = True #bloody ugly hack :) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
299 return self._w.render(size, focus) |
0 | 300 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
301 |
9 | 302 class ClickableText(SelectableText): |
303 signals = SelectableText.signals + ['click'] | |
66 | 304 |
8 | 305 def setState(self, selected, invisible=False): |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
306 super(ClickableText,self).setState(False,True) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
307 if not invisible: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
308 self._emit('click') |
8 | 309 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
310 |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
311 class CustomButton(ClickableText): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
312 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
313 def __init__(self, label, on_press=None, user_data=None, left_border = "[ ", right_border = " ]"): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
314 self.label = label |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
315 self.left_border = left_border |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
316 self.right_border = right_border |
66 | 317 super(CustomButton, self).__init__([left_border, label, right_border]) |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
318 self.size = len(self.get_text()) |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
319 if on_press: |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
320 urwid.connect_signal(self, 'click', on_press, user_data) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
321 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
322 def getSize(self): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
323 """Return representation size of the button""" |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
324 return self.size |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
325 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
326 def get_label(self): |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
327 return self.label[1] if isinstance(self.label,tuple) else self.label |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
328 |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
329 def set_label(self, label): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
330 self.label = label |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
331 self.set_text([self.left_border, label, self.right_border]) |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
332 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
333 |
68
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
334 class ListOption(unicode): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
335 """ Class similar to unicode, but which make the difference between value and label |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
336 label is show when use as unicode, the .value attribute contain the actual value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
337 Can be initialised with: |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
338 - basestring (label = value = given string) |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
339 - a tuple with (value, label) |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
340 XXX: comparaison is made against value, not the label which is the one displayed |
68
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
341 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
342 """ |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
343 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
344 def __new__(cls, option): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
345 if (isinstance(option, cls)): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
346 return option |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
347 elif isinstance(option, basestring): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
348 value = label = option |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
349 elif (isinstance(option, tuple) and len(option) == 2): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
350 value, label = option |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
351 else: |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
352 raise NotImplementedError |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
353 if not label: |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
354 label = value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
355 instance = super(ListOption, cls).__new__(cls, label) |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
356 instance._value = value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
357 return instance |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
358 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
359 def __eq__(self, other): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
360 # XXX: try to compare values, if other has no value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
361 # (e.g. unicode string) try to compare to other itself |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
362 try: |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
363 return self._value == other._value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
364 except AttributeError: |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
365 return self._value == other |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
366 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
367 def __ne__(self, other): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
368 # XXX: see __eq__ |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
369 try: |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
370 return self._value != other._value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
371 except AttributeError: |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
372 return self._value != other |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
373 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
374 @property |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
375 def value(self): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
376 """ return option value """ |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
377 return self._value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
378 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
379 @value.setter |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
380 def value(self, value): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
381 self._value = value |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
382 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
383 @staticmethod |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
384 def fromOptions(options): |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
385 """ convert a list of string/tuple options to a list of listOption |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
386 @param options: list of managed option type (basestring, tuple) |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
387 return: list of ListOption |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
388 """ |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
389 return [(ListOption(option)) for option in options] |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
390 |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
391 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
392 class GenericList(urwid.WidgetWrap): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
393 signals = ['click','change'] |
0 | 394 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
395 def __init__(self, options, style=None, align='left', option_type = SelectableText, on_click=None, on_change=None, user_data=None): |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
396 """ |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
397 Widget managing list of string and their selection |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
398 @param options: list of strings used for options |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
399 @param style: list of string: |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
400 - 'single' if only one must be selected |
66 | 401 - 'no_first_select' nothing selected when list is first displayed |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
402 - 'can_select_none' if we can select nothing |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
403 @param align: alignement of text inside the list |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
404 @param on_click: method called when click signal is emited |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
405 @param user_data: data sent to the callback for click signal |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
406 """ |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
407 if style is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
408 style = [] |
0 | 409 self.single = 'single' in style |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
410 self.no_first_select = 'no_first_select' in style |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
411 self.can_select_none = 'can_select_none' in style |
0 | 412 self.align = align |
8 | 413 self.option_type = option_type |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
414 self.first_display = True |
66 | 415 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
416 if on_click: |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
417 urwid.connect_signal(self, 'click', on_click, user_data) |
66 | 418 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
419 if on_change: |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
420 urwid.connect_signal(self, 'change', on_change, user_data) |
66 | 421 |
1 | 422 self.content = urwid.SimpleListWalker([]) |
0 | 423 self.list_box = urwid.ListBox(self.content) |
4
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
424 urwid.WidgetWrap.__init__(self, self.list_box) |
1 | 425 self.changeValues(options) |
0 | 426 |
427 def __onStateChange(self, widget, selected): | |
428 if self.single: | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
429 if not selected and not self.can_select_none: |
0 | 430 #if in single mode, it's forbidden to unselect a value |
431 widget.setState(True, invisible=True) | |
432 return | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
433 if selected: |
0 | 434 self.unselectAll(invisible=True) |
435 widget.setState(True, invisible=True) | |
56
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
436 self._emit("change") |
0 | 437 |
56
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
438 def __onClick(self, widget): |
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
439 self._emit("click", widget) |
0 | 440 |
441 def unselectAll(self, invisible=False): | |
442 for widget in self.content: | |
443 if widget.getState(): | |
444 widget.setState(False, invisible) | |
445 widget._invalidate() | |
446 | |
2
07b7dcd314ff
primitivus: basic contact list, connexion now work \o/
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
447 def deleteValue(self, value): |
07b7dcd314ff
primitivus: basic contact list, connexion now work \o/
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
448 """Delete the first value equal to the param given""" |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
449 for widget in self.content: |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
450 if widget.getValue() == value: |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
451 self.content.remove(widget) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
452 self._emit('change') |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
453 return |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
454 raise ValueError("%s ==> %s" % (str(value),str(self.content))) |
2
07b7dcd314ff
primitivus: basic contact list, connexion now work \o/
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
455 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
456 def getSelectedValue(self): |
1 | 457 """Convenience method to get the value selected as a string in single mode, or None""" |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
458 values = self.getSelectedValues() |
1 | 459 return values[0] if values else None |
460 | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
461 def getAllValues(self): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
462 """Return values of all items""" |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
463 return [widget.getValue() for widget in self.content] |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
464 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
465 def getSelectedValues(self): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
466 """Return values of selected items""" |
0 | 467 result = [] |
468 for widget in self.content: | |
469 if widget.getState(): | |
470 result.append(widget.getValue()) | |
471 return result | |
472 | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
473 def getDisplayWidget(self): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
474 return self.list_box |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
475 |
0 | 476 def changeValues(self, new_values): |
68
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
477 """Change all values in one shot""" |
5c28bb50ae0d
new ListOption class which work like unicode, but make the difference between value and label, so the displayed text can be different from the actual value.
Goffi <goffi@goffi.org>
parents:
67
diff
changeset
|
478 new_values = ListOption.fromOptions(new_values) |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
479 if not self.first_display: |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
480 old_selected = self.getSelectedValues() |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
481 widgets = [] |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
482 for option in new_values: |
8 | 483 widget = self.option_type(option, self.align) |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
484 if not self.first_display and option in old_selected: |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
485 widget.setState(True) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
486 widgets.append(widget) |
56
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
487 for signal, callback in (('change', self.__onStateChange), ('click', self.__onClick)): |
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
488 try: |
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
489 urwid.connect_signal(widget, signal, callback) |
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
490 except NameError: |
22ab98a06492
GenericList: click/change signals fix
Goffi <goffi@goffi.org>
parents:
53
diff
changeset
|
491 pass #the widget given doesn't support the signal |
0 | 492 self.content[:] = widgets |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
493 if self.first_display and self.single and new_values and not self.no_first_select: |
1 | 494 self.content[0].setState(True) |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
495 display_widget = self.getDisplayWidget() |
4
c94cdbfdf3e8
primitivus: added edition zone at the bottom
Goffi <goffi@goffi.org>
parents:
3
diff
changeset
|
496 self._set_w(display_widget) |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
497 self._emit('change') |
66 | 498 self.first_display = False |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
499 |
0 | 500 def selectValue(self, value): |
28
654d31983f19
primitivus: fixed misnamed method in custom widget
Goffi <goffi@goffi.org>
parents:
27
diff
changeset
|
501 """Select the first item which has the given value""" |
0 | 502 self.unselectAll() |
503 idx = 0 | |
504 for widget in self.content: | |
28
654d31983f19
primitivus: fixed misnamed method in custom widget
Goffi <goffi@goffi.org>
parents:
27
diff
changeset
|
505 if widget.getValue() == value: |
0 | 506 widget.setState(True) |
507 self.list_box.set_focus(idx) | |
508 return | |
509 idx+=1 | |
510 | |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
511 |
67 | 512 class List(urwid.Widget): |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
513 """FlowWidget list, same arguments as GenericList, with an additional one 'max_height'""" |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
514 signals = ['click','change'] |
67 | 515 _sizing = frozenset(['flow']) |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
516 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
517 def __init__(self, options, style=None, max_height=5, align='left', option_type = SelectableText, on_click=None, on_change=None, user_data=None): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
518 if style is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
519 style = [] |
8 | 520 self.genericList = GenericList(options, style, align, option_type, on_click, on_change, user_data) |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
521 urwid.connect_signal(self.genericList, 'change', self._onChange) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
522 urwid.connect_signal(self.genericList, 'click', self._onClick) |
66 | 523 self.max_height = max_height |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
524 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
525 def _onChange(self, widget): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
526 self._emit('change') |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
527 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
528 def _onClick(self, widget): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
529 self._emit('click') |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
530 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
531 def selectable(self): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
532 return True |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
533 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
534 def keypress(self, size, key): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
535 return self.displayWidget(size,True).keypress(size, key) |
66 | 536 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
537 def unselectAll(self, invisible=False): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
538 return self.genericList.unselectAll(invisible) |
66 | 539 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
540 def deleteValue(self, value): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
541 return self.genericList.deleteValue(value) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
542 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
543 def getSelectedValue(self): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
544 return self.genericList.getSelectedValue() |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
545 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
546 def getAllValues(self): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
547 return self.genericList.getAllValues() |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
548 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
549 def getSelectedValues(self): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
550 return self.genericList.getSelectedValues() |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
551 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
552 def changeValues(self, new_values): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
553 return self.genericList.changeValues(new_values) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
554 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
555 def selectValue(self, value): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
556 return self.genericList.selectValue(value) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
557 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
558 def render(self, size, focus=False): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
559 return self.displayWidget(size, focus).render(size, focus) |
66 | 560 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
561 def rows(self, size, focus=False): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
562 return self.displayWidget(size, focus).rows(size, focus) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
563 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
564 def displayWidget(self, size, focus): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
565 list_size = sum([wid.rows(size, focus) for wid in self.genericList.content]) |
66 | 566 height = min(list_size,self.max_height) or 1 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
567 return urwid.BoxAdapter(self.genericList, height) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
568 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
569 |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
570 ## MISC ## |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
571 |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
572 class NotificationBar(urwid.WidgetWrap): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
573 """Bar used to show misc information to user""" |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
574 signals = ['change'] |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
575 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
576 def __init__(self): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
577 self.waitNotifs = urwid.Text('') |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
578 self.message = ClickableText('') |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
579 urwid.connect_signal(self.message, 'click', lambda wid: self.showNext()) |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
580 self.progress = ClickableText('') |
22
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
581 self.columns = urwid.Columns([('fixed',6,self.waitNotifs),self.message,('fixed',4,self.progress)]) |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
582 urwid.WidgetWrap.__init__(self, urwid.AttrMap(self.columns,'notifs')) |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
583 self.notifs = [] |
66 | 584 |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
585 def __modQueue(self): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
586 """must be called each time the notifications queue is changed""" |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
587 self.waitNotifs.set_text(('notifs',"(%i)" % len(self.notifs) if self.notifs else '')) |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
588 self._emit('change') |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
589 |
22
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
590 def setProgress(self,percentage): |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
591 """Define the progression to show on the right side of the bar""" |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
592 if percentage == None: |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
593 self.progress.set_text('') |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
594 else: |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
595 self.progress.set_text(('notifs','%02i%%' % percentage)) |
22
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
596 self._emit('change') |
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
597 |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
598 def addPopUp(self, pop_up_widget): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
599 """Add a popup to the waiting queue""" |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
600 self.notifs.append(('popup',pop_up_widget)) |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
601 self.__modQueue() |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
602 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
603 def addMessage(self, message): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
604 "Add a message to the notificatio bar" |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
605 if not self.message.get_text(): |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
606 self.message.set_text(('notifs',message)) |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
607 self._invalidate() |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
608 self._emit('change') |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
609 else: |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
610 self.notifs.append(('message',message)) |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
611 self.__modQueue() |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
612 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
613 def showNext(self): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
614 """Show next message if any, else delete current message""" |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
615 found = None |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
616 for notif in self.notifs: |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
617 if notif[0] == "message": |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
618 found = notif |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
619 break |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
620 if found: |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
621 self.notifs.remove(found) |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
622 self.message.set_text(('notifs',found[1])) |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
623 self.__modQueue() |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
624 else: |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
625 self.message.set_text('') |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
626 self._emit('change') |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
627 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
628 def getNextPopup(self): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
629 """Return next pop-up and remove it from the queue |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
630 @return: pop-up or None if there is no more in the queue""" |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
631 ret = None |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
632 for notif in self.notifs: |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
633 if notif[0] == 'popup': |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
634 ret = notif[1] |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
635 break |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
636 if ret: |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
637 self.notifs.remove(notif) |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
638 self.__modQueue() |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
639 return ret |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
640 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
641 def isQueueEmpty(self): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
642 return not bool(self.notifs) |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
643 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
644 def canHide(self): |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
645 """Return True if there is now important information to show""" |
22
dfabea6f73b5
Primitivus: AdvancedEdit and Notification bar improved
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
646 return self.isQueueEmpty() and not self.message.get_text() and not self.progress.get_text() |
16
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
647 |
263fe4d067ad
Primitivus: notification bar, first draft
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
648 |
11 | 649 class MenuBox(urwid.WidgetWrap): |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
650 """Show menu items of a category in a box""" |
11 | 651 signals = ['click'] |
66 | 652 |
11 | 653 def __init__(self,parent,items): |
654 self.parent = parent | |
655 self.selected = None | |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
656 content = urwid.SimpleListWalker([ClickableText(('menuitem',text)) for text in items]) |
11 | 657 for wid in content: |
658 urwid.connect_signal(wid, 'click', self.onClick) | |
659 | |
660 self.listBox = urwid.ListBox(content) | |
661 menubox = urwid.LineBox(urwid.BoxAdapter(self.listBox,len(items))) | |
662 urwid.WidgetWrap.__init__(self,menubox) | |
663 | |
664 def getValue(self): | |
665 return self.selected | |
66 | 666 |
11 | 667 def keypress(self, size, key): |
668 if key=='up': | |
669 if self.listBox.get_focus()[1] == 0: | |
670 self.parent.keypress(size, key) | |
671 elif key=='left' or key=='right': | |
672 self.parent.keypress(size,'up') | |
673 self.parent.keypress(size,key) | |
674 return super(MenuBox,self).keypress(size,key) | |
66 | 675 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
676 def mouse_event(self, size, event, button, x, y, focus): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
677 if button == 3: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
678 self.parent.keypress(size,'up') |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
679 return True |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
680 return super(MenuBox,self).mouse_event(size, event, button, x, y, focus) |
11 | 681 |
682 def onClick(self, wid): | |
683 self.selected = wid.getValue() | |
684 self._emit('click') | |
685 | |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
686 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
687 class Menu(urwid.WidgetWrap): |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
688 |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
689 def __init__(self,loop, x_orig=0): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
690 """Menu widget |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
691 @param loop: main loop of urwid |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
692 @param x_orig: absolute start of the abscissa |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
693 """ |
11 | 694 self.loop = loop |
695 self.menu_keys = [] | |
696 self.menu = {} | |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
697 self.x_orig = x_orig |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
698 self.shortcuts = {} #keyboard shortcuts |
11 | 699 self.save_bottom = None |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
700 col_rol = ColumnsRoller() |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
701 urwid.WidgetWrap.__init__(self, urwid.AttrMap(col_rol,'menubar')) |
66 | 702 |
11 | 703 def selectable(self): |
704 return True | |
13
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
705 |
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
706 def getMenuSize(self): |
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
707 """return the current number of categories in this menu""" |
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
708 return len(self.menu_keys) |
66 | 709 |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
710 def setOrigX(self, orig_x): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
711 self.x_orig = orig_x |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
712 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
713 def __buildOverlay(self, menu_key, columns): |
11 | 714 """Build the overlay menu which show menuitems |
715 @param menu_key: name of the category | |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
716 @param columns: column number where the menubox must be displayed""" |
11 | 717 max_len = 0 |
718 for item in self.menu[menu_key]: | |
719 if len(item[0]) > max_len: | |
720 max_len = len(item[0]) | |
721 | |
722 self.save_bottom = self.loop.widget | |
723 menu_box = MenuBox(self,[item[0] for item in self.menu[menu_key]]) | |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
724 urwid.connect_signal(menu_box, 'click', self.onItemClick) |
66 | 725 |
726 self.loop.widget = urwid.Overlay(urwid.AttrMap(menu_box,'menubar'),self.save_bottom,('fixed left', columns),max_len+2,('fixed top',1),None) | |
11 | 727 |
728 def keypress(self, size, key): | |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
729 if key == 'down': |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
730 key = 'enter' |
11 | 731 elif key == 'up': |
732 if self.save_bottom: | |
733 self.loop.widget = self.save_bottom | |
734 self.save_bottom = None | |
66 | 735 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
736 return self._w.base_widget.keypress(size, key) |
66 | 737 |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
738 def checkShortcuts(self, key): |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
739 for shortcut in self.shortcuts.keys(): |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
740 if key == shortcut: |
11 | 741 category, item, callback = self.shortcuts[shortcut] |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
742 callback((category, item)) |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
743 return key |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
744 |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
745 def addMenu(self, category, item, callback, shortcut=None): |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
746 """Add a menu item, create the category if new |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
747 @param category: category of the menu (e.g. File/Edit) |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
748 @param item: menu item (e.g. new/close/about) |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
749 @callback: method to call when item is selected""" |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
750 if not category in self.menu.keys(): |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
751 self.menu_keys.append(category) |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
752 self.menu[category] = [] |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
753 button = CustomButton(('menubar',category), self.onCategoryClick, |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
754 left_border = ('menubar',"[ "), |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
755 right_border = ('menubar'," ]")) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
756 self._w.base_widget.addWidget(button,button.getSize()) |
11 | 757 self.menu[category].append((item, callback)) |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
758 if shortcut: |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
759 assert(shortcut not in self.shortcuts.keys()) |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
760 self.shortcuts[shortcut] = (category, item, callback) |
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
761 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
762 def onItemClick(self, widget): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
763 category = self._w.base_widget.getSelected().get_label() |
11 | 764 item = widget.getValue() |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
765 callback = None |
11 | 766 for menu_item in self.menu[category]: |
767 if item == menu_item[0]: | |
768 callback = menu_item[1] | |
769 break | |
770 if callback: | |
771 self.keypress(None,'up') | |
772 callback((category, item)) | |
66 | 773 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
774 def onCategoryClick(self, button): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
775 self.__buildOverlay(button.get_label(), |
66 | 776 self.x_orig + self._w.base_widget.getStartCol(button)) |
777 | |
11 | 778 |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
779 class MenuRoller(urwid.WidgetWrap): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
780 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
781 def __init__(self,menus_list): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
782 """Create a MenuRoller |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
783 @param menus_list: list of tuple with (name, Menu_instance), name can be None |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
784 """ |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
785 assert (menus_list) |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
786 self.selected = 0 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
787 self.name_list = [] |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
788 self.menus = {} |
66 | 789 |
790 self.columns = urwid.Columns([urwid.Text(''),urwid.Text('')]) | |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
791 urwid.WidgetWrap.__init__(self, self.columns) |
66 | 792 |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
793 for menu_tuple in menus_list: |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
794 name,menu = menu_tuple |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
795 self.addMenu(name, menu) |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
796 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
797 def __showSelected(self): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
798 """show menu selected""" |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
799 name_txt = u'\u21c9 '+self.name_list[self.selected]+u' \u21c7 ' |
66 | 800 current_name = ClickableText(name_txt) |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
801 name_len = len(name_txt) |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
802 current_menu = self.menus[self.name_list[self.selected]] |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
803 current_menu.setOrigX(name_len) |
65
090f3e0754d3
fix for recent urwid versions (> 1.1.0)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
804 self.columns.contents[0] = (current_name, ('given', name_len, False)) |
090f3e0754d3
fix for recent urwid versions (> 1.1.0)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
805 self.columns.contents[1] = (current_menu, ('weight', 1, False)) |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
806 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
807 def keypress(self, size, key): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
808 if key=='up': |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
809 if self.columns.get_focus_column()==0 and self.selected > 0: |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
810 self.selected -= 1 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
811 self.__showSelected() |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
812 elif key=='down': |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
813 if self.columns.get_focus_column()==0 and self.selected < len(self.name_list)-1: |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
814 self.selected += 1 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
815 self.__showSelected() |
13
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
816 elif key=='right': |
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
817 if self.columns.get_focus_column()==0 and \ |
65
090f3e0754d3
fix for recent urwid versions (> 1.1.0)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
818 (isinstance(self.columns.contents[1][0], urwid.Text) or \ |
13
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
819 self.menus[self.name_list[self.selected]].getMenuSize()==0): |
8cccbaadb9c5
Primitivus: menu roller doesn't go anymore on a menu if it's empty
Goffi <goffi@goffi.org>
parents:
12
diff
changeset
|
820 return #if we have no menu or the menu is empty, we don't go the right column |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
821 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
822 return super(MenuRoller, self).keypress(size, key) |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
823 |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
824 def addMenu(self, name_param, menu): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
825 name = name_param or '' |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
826 if name not in self.name_list: |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
827 self.name_list.append(name) |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
828 self.menus[name] = menu |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
829 if self.name_list[self.selected] == name: |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
830 self.__showSelected() #if we are on the menu, we update it |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
831 |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
832 def removeMenu(self, name): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
833 if name in self.name_list: |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
834 self.name_list.remove(name) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
835 if name in self.menus.keys(): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
836 del self.menus[name] |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
837 self.selected = 0 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
838 self.__showSelected() |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
839 |
12
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
840 def checkShortcuts(self, key): |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
841 for menu in self.name_list: |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
842 key = self.menus[menu].checkShortcuts(key) |
7e63429cc929
Primitivus: menu are now managed and fully working
Goffi <goffi@goffi.org>
parents:
11
diff
changeset
|
843 return key |
66 | 844 |
10
024b79b61a31
Primitivus: misc fixes + menubar first draft
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
845 |
6 | 846 ## DIALOGS ## |
847 | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
848 class GenericDialog(urwid.WidgetWrap): |
0 | 849 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
850 def __init__(self, widgets_lst, title, style=None, **kwargs): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
851 if style is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
852 style = [] |
0 | 853 frame_header = urwid.AttrMap(urwid.Text(title,'center'),'title') |
66 | 854 |
0 | 855 buttons = None |
856 | |
857 if "OK/CANCEL" in style: | |
24
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
858 cancel_arg = [kwargs['cancel_value']] if kwargs.has_key('cancel_value') else [] |
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
859 ok_arg = [kwargs['ok_value']] if kwargs.has_key('ok_value') else [] |
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
860 buttons = [urwid.Button(_("Cancel"), kwargs['cancel_cb'], *cancel_arg), |
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
861 urwid.Button(_("Ok"), kwargs['ok_cb'], *ok_arg)] |
0 | 862 elif "YES/NO" in style: |
24
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
863 yes_arg = [kwargs['yes_value']] if kwargs.has_key('yes_value') else [] |
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
864 no_arg = [kwargs['no_value']] if kwargs.has_key('no_value') else [] |
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
865 buttons = [urwid.Button(_("Yes"), kwargs['yes_cb'], *yes_arg), |
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
866 urwid.Button(_("No"), kwargs['no_cb'], *no_arg)] |
1 | 867 if "OK" in style: |
24
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
868 ok_arg = [kwargs['ok_value']] if kwargs.has_key('ok_value') else [] |
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
869 buttons = [urwid.Button(_("Ok"), kwargs['ok_cb'], *ok_arg)] |
0 | 870 if buttons: |
871 buttons_flow = urwid.GridFlow(buttons, max([len(button.get_label()) for button in buttons])+4, 1, 1, 'center') | |
872 body_content = urwid.SimpleListWalker(widgets_lst) | |
873 frame_body = urwid.ListBox(body_content) | |
24
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
874 frame = FocusFrame(frame_body, frame_header, buttons_flow if buttons else None, 'footer' if buttons else 'body') |
0 | 875 decorated_frame = urwid.LineBox(frame) |
876 urwid.WidgetWrap.__init__(self, decorated_frame) | |
877 | |
878 | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
879 class InputDialog(GenericDialog): |
7 | 880 """Dialog with an edit box""" |
0 | 881 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
882 def __init__(self, title, instrucions, style=None, default_txt = '', **kwargs): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
883 if style is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
884 style = ['OK/CANCEL'] |
0 | 885 instr_wid = urwid.Text(instrucions+':') |
24
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
886 edit_box = AdvancedEdit(edit_text=default_txt) |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
887 GenericDialog.__init__(self, [instr_wid,edit_box], title, style, ok_value=edit_box, **kwargs) |
25
e6bd6146dd31
Primitivus: fixed focus in Input dialog
Goffi <goffi@goffi.org>
parents:
24
diff
changeset
|
888 self._w.base_widget.set_focus('body') |
0 | 889 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
890 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
891 class ConfirmDialog(GenericDialog): |
7 | 892 """Dialog with buttons for confirm or cancel an action""" |
0 | 893 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
894 def __init__(self, title, style=None, **kwargs): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
895 if style is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
896 style = ['YES/NO'] |
24
67a19cfeab8f
Primitivus now implement showDialog + new "newAlert" bridge method to show a dialog from core
Goffi <goffi@goffi.org>
parents:
22
diff
changeset
|
897 GenericDialog.__init__(self, [], title, style, **kwargs) |
1 | 898 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
899 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
900 class Alert(GenericDialog): |
7 | 901 """Dialog with just a message and a OK button""" |
1 | 902 |
903 def __init__(self, title, message, style=['OK'], **kwargs): | |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
904 GenericDialog.__init__(self, [urwid.Text(message, 'center')], title, style, ok_value=None, **kwargs) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
905 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
906 |
6 | 907 ## CONTAINERS ## |
908 | |
67 | 909 class ColumnsRoller(urwid.Widget): |
910 _sizing = frozenset(['flow']) | |
66 | 911 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
912 def __init__(self, widget_list = None, focus_column=0): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
913 self.widget_list = widget_list or [] |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
914 self.focus_column = focus_column |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
915 self.__start = 0 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
916 self.__next = False |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
917 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
918 def addWidget(self, widget, width): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
919 self.widget_list.append((width,widget)) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
920 if len(self.widget_list) == 1: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
921 self.set_focus(0) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
922 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
923 def getStartCol(self, widget): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
924 """Return the column of the left corner of the widget""" |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
925 start_col = 0 |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
926 for wid in self.widget_list[self.__start:]: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
927 if wid[1] == widget: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
928 return start_col |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
929 start_col+=wid[0] |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
930 return None |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
931 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
932 def selectable(self): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
933 try: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
934 return self.widget_list[self.focus_column][1].selectable() |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
935 except IndexError: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
936 return False |
66 | 937 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
938 def keypress(self, size, key): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
939 if key=='left': |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
940 if self.focus_column>0: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
941 self.focus_column-=1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
942 self._invalidate() |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
943 return |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
944 if key=='right': |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
945 if self.focus_column<len(self.widget_list)-1: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
946 self.focus_column+=1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
947 self._invalidate() |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
948 return |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
949 if self.focus_column<len(self.widget_list): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
950 return self.widget_list[self.focus_column][1].keypress(size,key) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
951 return key |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
952 |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
953 def getSelected(self): |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
954 """Return selected widget""" |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
955 return self.widget_list[self.focus_column][1] |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
956 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
957 def set_focus(self, idx): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
958 if idx>len(self.widget_list)-1: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
959 idx = len(self.widget_list)-1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
960 self.focus_column = idx |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
961 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
962 def rows(self,size,focus=False): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
963 return 1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
964 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
965 def __calculate_limits(self, size): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
966 (maxcol,) = size |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
967 _prev = _next = False |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
968 start_wid = 0 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
969 end_wid = len(self.widget_list)-1 |
66 | 970 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
971 total_wid = sum([w[0] for w in self.widget_list]) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
972 while total_wid > maxcol: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
973 if self.focus_column == end_wid: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
974 if not _prev: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
975 total_wid+=1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
976 _prev = True |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
977 total_wid-=self.widget_list[start_wid][0] |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
978 start_wid+=1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
979 else: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
980 if not _next: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
981 total_wid+=1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
982 _next = True |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
983 total_wid-=self.widget_list[end_wid][0] |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
984 end_wid-=1 |
66 | 985 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
986 cols_left = maxcol - total_wid |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
987 self.__start = start_wid #we need to keep it for getStartCol |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
988 return _prev,_next,start_wid,end_wid,cols_left |
66 | 989 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
990 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
991 def mouse_event(self, size, event, button, x, y, focus): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
992 (maxcol,)=size |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
993 |
53
d34f2b0f68d3
urwid 1.0.0 update: fixed missing is_mouse_press
Goffi <goffi@goffi.org>
parents:
44
diff
changeset
|
994 if is_mouse_press(event) and button == 1: |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
995 _prev,_next,start_wid,end_wid,cols_left = self.__calculate_limits(size) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
996 if x==0 and _prev: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
997 self.keypress(size,'left') |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
998 return True |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
999 if x==maxcol-1 and _next: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1000 self.keypress(size,'right') |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1001 return True |
66 | 1002 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1003 current_pos = 1 if _prev else 0 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1004 idx = 0 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1005 while current_pos<x and idx<len(self.widget_list): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1006 width,widget = self.widget_list[idx] |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1007 if x<=current_pos+width: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1008 self.focus_column = idx |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1009 self._invalidate() |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1010 if not hasattr(widget,'mouse_event'): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1011 return False |
66 | 1012 return widget.mouse_event((width,0), event, button, |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1013 x-current_pos, 0, focus) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1014 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1015 current_pos+=self.widget_list[idx][0] |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1016 idx+=1 |
66 | 1017 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1018 return False |
66 | 1019 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1020 def render(self, size, focus=False): |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1021 if not self.widget_list: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1022 return SolidCanvas(" ", size[0], 1) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1023 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1024 _prev,_next,start_wid,end_wid,cols_left = self.__calculate_limits(size) |
66 | 1025 |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1026 idx=start_wid |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1027 render = [] |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1028 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1029 for width,widget in self.widget_list[start_wid:end_wid+1]: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1030 _focus = idx == self.focus_column and focus |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1031 render.append((widget.render((width,),_focus),False,_focus,width)) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1032 idx+=1 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1033 if _prev: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1034 render.insert(0,(urwid.Text([u"◀"]).render((1,),False),False,False,1)) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1035 if _next: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1036 render.append((urwid.Text([u"▶"],align='right').render((1+cols_left,),False),False,False,1+cols_left)) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1037 else: |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1038 render.append((urwid.SolidCanvas(" "*cols_left, size[0], 1),False,False,cols_left)) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1039 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1040 return urwid.CanvasJoin(render) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1041 |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1042 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1043 class FocusFrame(urwid.Frame): |
7 | 1044 """Frame which manage 'tab' key""" |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1045 |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1046 def keypress(self, size, key): |
19
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1047 ret = urwid.Frame.keypress(self, size, key) |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1048 if not ret: |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1049 return |
66 | 1050 |
5
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1051 if key == 'tab': |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1052 focus_list = ('header','body','footer') |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1053 focus_idx = focus_list.index(self.focus_part) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1054 for i in range(2): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1055 focus_idx = (focus_idx + 1) % len(focus_list) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1056 focus_name = focus_list[focus_idx] |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1057 widget = getattr(self,'_'+focus_name) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1058 if widget!=None and widget.selectable(): |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1059 self.set_focus(focus_name) |
592cd64933dd
Primitivus: chat window / text sending.
Goffi <goffi@goffi.org>
parents:
4
diff
changeset
|
1060 |
66 | 1061 return ret |
6 | 1062 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1063 |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1064 class TabsContainer(urwid.WidgetWrap): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1065 signals = ['click'] |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1066 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1067 def __init__(self): |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
1068 self._current_tab = None |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1069 self._buttons_cont = ColumnsRoller() |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1070 self.tabs = [] |
19
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1071 self.__frame = FocusFrame(urwid.Filler(urwid.Text('')),urwid.Pile([self._buttons_cont,urwid.Divider(u"─")])) |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1072 urwid.WidgetWrap.__init__(self, self.__frame) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1073 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1074 def keypress(self, size, key): |
19
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1075 if key=='tab': |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1076 self._w.keypress(size,key) |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1077 return |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1078 return self._w.keypress(size,key) |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1079 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1080 def __buttonClicked(self, button, invisible=False): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1081 """Called when a button on the tab is changed, |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1082 change the page |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1083 @param button: button clicked |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1084 @param invisible: emit signal only if False""" |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1085 tab_name = button.get_label() |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1086 for tab in self.tabs: |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1087 if tab[0] == tab_name: |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1088 break |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1089 if tab[0] != tab_name: |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1090 error(_("INTERNAL ERROR: Tab not found")) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1091 assert(False) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1092 self.__frame.body = tab[1] |
26
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
1093 button.set_label(('title',button.get_label())) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
1094 if self._current_tab: |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
1095 self._current_tab.set_label(self._current_tab.get_label()) |
fcc20ac7b68a
Primitivus: major changes in SelectableText, menu can now be used with mouse, TabsContainer show wich tab is selected
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
1096 self._current_tab = button |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1097 if not invisible: |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1098 self._emit('click') |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1099 |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1100 def __appendButton(self, name): |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1101 """Append a button to the frame header, |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1102 and link it to the page change method""" |
18
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1103 button = CustomButton(name, self.__buttonClicked, left_border = '', right_border=' | ') |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1104 self._buttons_cont.addWidget(button, button.getSize()) |
bdc83e857093
Primitivus: new widget ColumnsRoller which show FlowWidgets on the same row, and can roll between them if there is not enough space
Goffi <goffi@goffi.org>
parents:
17
diff
changeset
|
1105 if len(self._buttons_cont.widget_list) == 1: |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1106 #first button: we set the focus and the body |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1107 self._buttons_cont.set_focus(0) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1108 self.__buttonClicked(button,True) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1109 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1110 def addTab(self,name,content=None): |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1111 """Add a page to the container |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1112 @param name: name of the page (what appear on the tab) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1113 @param content: content of the page |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1114 @return: ListBox (content of the page)""" |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1115 if content is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1116 content = [] |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1117 listbox = urwid.ListBox(urwid.SimpleListWalker(content)) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1118 self.tabs.append([name,listbox]) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1119 self.__appendButton(name) |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1120 return listbox |
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1121 |
19
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1122 def addFooter(self, widget): |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1123 """Add a widget on the bottom of the tab (will be displayed on all pages) |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1124 @param widget: FlowWidget""" |
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1125 self._w.footer = widget |
66 | 1126 |
19
0b83dd2b15d1
Primitivus: misc improvments on TabsContainer/FocusFrame
Goffi <goffi@goffi.org>
parents:
18
diff
changeset
|
1127 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1128 class HighlightColumns(urwid.AttrMap): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1129 """ Decorated columns which highlight all or some columns """ |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1130 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1131 def __init__(self, highlight_cols, highlight_attr, *args, **kwargs): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1132 """ Create the HighlightColumns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1133 @param highlight_cols: tuple of columns to highlight, () to highlight to whole row |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1134 @param highlight_attr: name of the attribute to use when focused |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1135 other parameter are passed to urwid Columns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1136 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1137 """ |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1138 columns = urwid.Columns(*args, **kwargs) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1139 self.highlight_cols = highlight_cols |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1140 self.highlight_attr = highlight_attr |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1141 self.has_focus = False |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1142 if highlight_cols == (): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1143 super(HighlightColumns, self).__init__(columns, None, highlight_attr) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1144 self.highlight_cols = None |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1145 else: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1146 super(HighlightColumns, self).__init__(columns, None) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1147 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1148 @property |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1149 def options(self): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1150 return self.base_widget.options |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1151 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1152 @property |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1153 def contents(self): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1154 return self.base_widget.contents |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1155 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1156 @property |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1157 def focus_position(self): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1158 return self.base_widget.focus_position |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1159 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1160 @focus_position.setter |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1161 def focus_position(self, value): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1162 self.base_widget.focus_position = value |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1163 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1164 def addWidget(self, wid, options): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1165 """ Add a widget to the columns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1166 Widget is wrapped with AttrMap, that's why Columns.contents should not be used directly for appending new widgets |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1167 @param wid: widget to add |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1168 @param options: result of Columns.options(...) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1169 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1170 """ |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1171 wrapper = urwid.AttrMap(wid, None) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1172 self.base_widget.contents.append((wrapper, options)) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1173 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1174 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1175 def render(self, size, focus=False): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1176 if self.highlight_cols and focus != self.has_focus: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1177 self.has_focus = focus |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1178 for idx in self.highlight_cols: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1179 wid = self.base_widget.contents[idx][0] |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1180 wid.set_attr_map({None: self.highlight_attr if focus else None}) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1181 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1182 return super(HighlightColumns, self).render(size, focus) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1183 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1184 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1185 class TableContainer(urwid.WidgetWrap): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1186 """ Widgets are disposed in row and columns """ |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1187 signals = ['click'] |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1188 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1189 def __init__(self, items=None, columns=None, dividechars=1, row_selectable=False, select_key='enter', options=None): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1190 """ Create a TableContainer |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1191 @param items: iterable of widgets to add to this container |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1192 @param columns: nb of columns of this table |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1193 @param dividechars: same as dividechars param for urwid.Columns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1194 @param row_selectable: if True, row are always selectable, even if they don't contain any selectable widget |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1195 @param options: dictionnary with the following keys: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1196 - ADAPT: tuple of columns for which the size must be adapted to its contents, |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1197 empty tuple for all columns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1198 - HIGHLIGHT: tuple of columns which must be higlighted on focus, |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1199 empty tuple for the whole row |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1200 - FOCUS_ATTR: Attribute name to use when focused (see HIGHLIGHT). Default is "table_selected" |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1201 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1202 """ |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1203 pile = urwid.Pile([]) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1204 super(TableContainer, self).__init__(pile) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1205 if items is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1206 items = [] |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1207 if columns is None: # if columns is None, we suppose only one row is given in items |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1208 columns = len(items) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1209 assert columns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1210 self._columns = columns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1211 self._row_selectable = row_selectable |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1212 self.select_key = select_key |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1213 if options is None: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1214 options = {} |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1215 for opt in ['ADAPT', 'HIGHLIGHT']: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1216 if opt in options: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1217 try: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1218 options[opt] = tuple(options[opt]) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1219 except TypeError: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1220 warning('[%s] option is not a tuple' % opt) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1221 options[opt] = () |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1222 self._options = options |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1223 self._dividechars = dividechars |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1224 self._idx = 0 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1225 self._longuest = self._columns * [0] |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1226 self._next_row_idx = None |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1227 for item in items: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1228 self.addWidget(item) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1229 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1230 def _getIdealSize(self, widget): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1231 """ return preferred size for widget, or 0 if we can't find it """ |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1232 try: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1233 return len(widget.text) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1234 except AttributeError: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1235 return 0 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1236 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1237 def keypress(self, size, key): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1238 if key == self.select_key and self._row_selectable: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1239 self._emit('click') |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1240 else: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1241 return super(TableContainer, self).keypress(size, key) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1242 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1243 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1244 def addWidget(self, widget): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1245 # TODO: use a contents property ? |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1246 pile = self._w |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1247 col_idx = self._idx % self._columns |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1248 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1249 options = None |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1250 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1251 if col_idx == 0: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1252 # we have a new row |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1253 columns = HighlightColumns(self._options.get('HIGHLIGHT'), self._options.get('FOCUS_ATTR', 'table_selected'), [], dividechars=self._dividechars) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1254 columns.row_idx = self._next_row_idx |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1255 pile.contents.append((columns, pile.options())) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1256 else: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1257 columns = pile.contents[-1][0] |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1258 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1259 if 'ADAPT' in self._options and (col_idx in self._options['ADAPT'] |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1260 or self._options['ADAPT'] == ()): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1261 current_len = self._getIdealSize(widget) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1262 longuest = self._longuest[col_idx] |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1263 max_len = max(longuest, current_len) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1264 if max_len > longuest: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1265 self._longuest[col_idx] = max_len |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1266 for wid,_ in pile.contents[:-1]: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1267 col = wid.base_widget |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1268 col.contents[col_idx] = (col.contents[col_idx][0], col.options('given', max_len)) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1269 options = columns.options('given', max_len) if max_len else columns.options() |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1270 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1271 columns.addWidget(widget, options or columns.options()) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1272 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1273 if self._row_selectable and col_idx == self._columns - 1: |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1274 columns.addWidget(urwid.SelectableIcon(''), columns.options('given', 0)) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1275 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1276 if not columns.selectable() and columns.contents[-1][0].base_widget.selectable(): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1277 columns.focus_position = len(columns.contents)-1 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1278 self._idx += 1 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1279 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1280 def setRowIndex(self, idx): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1281 self._next_row_idx = idx |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1282 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1283 def getSelectedWidgets(self): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1284 columns = self._w.focus |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1285 return (wid for wid, _ in columns.contents) |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1286 |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1287 def getSelectedIndex(self): |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1288 columns = self._w.focus |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1289 return columns.row_idx |
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1290 |
6 | 1291 ## DECORATORS ## |
1292 class LabelLine(urwid.LineBox): | |
7 | 1293 """Like LineBox, but with a Label centered in the top line""" |
6 | 1294 |
1295 def __init__(self, original_widget, label_widget): | |
1296 urwid.LineBox.__init__(self, original_widget) | |
1297 top_columns = self._w.widget_list[0] | |
1298 top_columns.widget_list[1] = label_widget | |
8 | 1299 |
70
24d49f1d735f
added TableContainer + some bug fixes (bad default parameters)
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
1300 |
8 | 1301 class VerticalSeparator(urwid.WidgetDecoration, urwid.WidgetWrap): |
21 | 1302 def __init__(self, original_widget, left_char = u"│", right_char = ''): |
15
8241b3157699
Primitivus: custom_widgets imrpovments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
1303 """Draw a separator on left and/or right of original_widget.""" |
66 | 1304 |
8 | 1305 widgets = [original_widget] |
1306 if left_char: | |
1307 widgets.insert(0, ('fixed', 1, urwid.SolidFill(left_char))) | |
1308 if right_char: | |
1309 widgets.append(('fixed', 1, urwid.SolidFill(right_char))) | |
1310 columns = urwid.Columns(widgets, box_columns = [0,2], focus_column = 1) | |
1311 urwid.WidgetDecoration.__init__(self, original_widget) | |
1312 urwid.WidgetWrap.__init__(self, columns) | |
1313 | |
66 | 1314 |