Mercurial > libervia-backend
annotate src/tools/common/template_xmlui.py @ 2444:30278ea1ca7c
plugin XEP-0060: added node watching methods to bridge:
new methods psNodeWatchAdd and psNodeWatchRemove allows to set a watch for the time of the session on one node, to have a signal called when something change on this node.
This signal (psEventRaw) send raw data (raw XML), in opposition to psEvent which is there to send high level data (e.g. parsed blog data).
Those method are primarely there to let frontends manage local cache for pubsub nodes.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 19 Nov 2017 16:51:39 +0100 |
parents | 49884c579266 |
children | 7b02372f8734 |
rev | line source |
---|---|
2362 | 1 #!/usr/bin/env python2 |
2 # -*- coding: utf-8 -*- | |
3 | |
4 # SAT: a jabber client | |
2414
8b37a62336c3
misc: date update (yes it's a bit late :p )
Goffi <goffi@goffi.org>
parents:
2400
diff
changeset
|
5 # Copyright (C) 2009-2017 Jérôme Poisson (goffi@goffi.org) |
2362 | 6 |
7 # This program is free software: you can redistribute it and/or modify | |
8 # it under the terms of the GNU Affero General Public License as published by | |
9 # the Free Software Foundation, either version 3 of the License, or | |
10 # (at your option) any later version. | |
11 | |
12 # This program is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU Affero General Public License for more details. | |
16 | |
17 # You should have received a copy of the GNU Affero General Public License | |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | |
20 """ template XMLUI parsing | |
21 | |
22 XMLUI classes from this modules can then be iterated to create the template | |
23 """ | |
24 | |
25 from sat.core.log import getLogger | |
26 log = getLogger(__name__) | |
27 from sat_frontends.tools import xmlui | |
28 | |
29 | |
30 ## Widgets ## | |
31 | |
32 class Widget(object): | |
33 category = u'widget' | |
34 type = None | |
35 enabled = True | |
36 read_only = True | |
37 | |
38 def __init__(self, xmlui_parent): | |
39 self.xmlui_parent = xmlui_parent | |
40 | |
41 @property | |
42 def name(self): | |
43 return self._xmlui_name | |
44 | |
45 | |
46 class ValueWidget(Widget): | |
47 | |
48 def __init__(self, xmlui_parent, value): | |
49 super(ValueWidget, self).__init__(xmlui_parent) | |
50 self.value = value | |
51 | |
2367
9878635586f3
template (xmlui): added values property to be able to use always values even when there is only one value
Goffi <goffi@goffi.org>
parents:
2362
diff
changeset
|
52 @property |
9878635586f3
template (xmlui): added values property to be able to use always values even when there is only one value
Goffi <goffi@goffi.org>
parents:
2362
diff
changeset
|
53 def values(self): |
9878635586f3
template (xmlui): added values property to be able to use always values even when there is only one value
Goffi <goffi@goffi.org>
parents:
2362
diff
changeset
|
54 return [self.value] |
9878635586f3
template (xmlui): added values property to be able to use always values even when there is only one value
Goffi <goffi@goffi.org>
parents:
2362
diff
changeset
|
55 |
2362 | 56 |
57 class InputWidget(ValueWidget): | |
58 | |
59 def __init__(self, xmlui_parent, value, read_only=False): | |
60 super(InputWidget, self).__init__(xmlui_parent, value) | |
61 self.read_only = read_only | |
62 | |
63 | |
64 class OptionsWidget(Widget): | |
65 | |
66 def __init__(self, xmlui_parent, options, selected, style): | |
67 super(OptionsWidget, self).__init__(xmlui_parent) | |
68 self.options = options | |
69 self.selected = selected | |
70 self.style = style | |
71 | |
2379
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
72 @property |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
73 def values(self): |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
74 return self.selected |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
75 |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
76 @property |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
77 def labels(self): |
2400
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
78 """return only labels from self.items""" |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
79 for value, label in self.items: |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
80 yield label |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
81 |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
82 @property |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
83 def items(self): |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
84 """return suitable items, according to style""" |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
85 no_select = self.no_select |
2379
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
86 for value,label in self.options: |
2400
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
87 if no_select or value in self.selected: |
8253ea069781
template(XMLUI): added items property to ListWidget:
Goffi <goffi@goffi.org>
parents:
2397
diff
changeset
|
88 yield value,label |
2379
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
89 |
2397
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
90 @property |
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
91 def inline(self): |
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
92 return u'inline' in self.style |
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
93 |
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
94 @property |
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
95 def no_select(self): |
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
96 return u'noselect' in self.style |
7fff98d64ab5
core (XMLUI), template(XMLUI): added flags to ListWidget:
Goffi <goffi@goffi.org>
parents:
2379
diff
changeset
|
97 |
2362 | 98 |
99 class EmptyWidget(xmlui.EmptyWidget, Widget): | |
100 | |
101 def __init__(self, _xmlui_parent): | |
102 Widget.__init__(self) | |
103 | |
104 | |
105 class TextWidget(xmlui.TextWidget, ValueWidget): | |
106 type = u"text" | |
107 | |
108 | |
109 class LabelWidget(xmlui.LabelWidget, ValueWidget): | |
110 type = u"label" | |
111 | |
2379
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
112 @property |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
113 def for_name(self): |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
114 try: |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
115 return self._xmlui_for_name |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
116 except AttributeError: |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
117 return None |
2362 | 118 |
2379
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
119 |
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
120 class StringWidget(xmlui.StringWidget, InputWidget): |
2362 | 121 type = u"string" |
122 | |
123 | |
2435
49884c579266
template (XMLUI): added JidInputWidget
Goffi <goffi@goffi.org>
parents:
2419
diff
changeset
|
124 class JidInputWidget(xmlui.JidInputWidget, StringWidget): |
49884c579266
template (XMLUI): added JidInputWidget
Goffi <goffi@goffi.org>
parents:
2419
diff
changeset
|
125 type = u"jid" |
49884c579266
template (XMLUI): added JidInputWidget
Goffi <goffi@goffi.org>
parents:
2419
diff
changeset
|
126 |
49884c579266
template (XMLUI): added JidInputWidget
Goffi <goffi@goffi.org>
parents:
2419
diff
changeset
|
127 |
2379
42a54cbc1872
template (xmlui): new properties + inheritance fix:
Goffi <goffi@goffi.org>
parents:
2367
diff
changeset
|
128 class TextBoxWidget(xmlui.TextWidget, InputWidget): |
2362 | 129 type = u"textbox" |
130 | |
131 | |
132 class ListWidget(xmlui.ListWidget, OptionsWidget): | |
133 type = u"list" | |
134 | |
135 | |
136 ## Containers ## | |
137 | |
138 class Container(object): | |
139 category = u'container' | |
140 type = None | |
141 | |
142 def __init__(self, xmlui_parent): | |
143 self.xmlui_parent = xmlui_parent | |
144 self.children = [] | |
145 | |
146 def __iter__(self): | |
147 return iter(self.children) | |
148 | |
149 def _xmluiAppend(self, widget): | |
150 self.children.append(widget) | |
151 | |
2419
c38c54c47e16
frontends (xmlui): added an attribute to ignore some widgets (and their label) in create
Goffi <goffi@goffi.org>
parents:
2414
diff
changeset
|
152 def _xmluiRemove(self, widget): |
c38c54c47e16
frontends (xmlui): added an attribute to ignore some widgets (and their label) in create
Goffi <goffi@goffi.org>
parents:
2414
diff
changeset
|
153 self.children.remove(widget) |
c38c54c47e16
frontends (xmlui): added an attribute to ignore some widgets (and their label) in create
Goffi <goffi@goffi.org>
parents:
2414
diff
changeset
|
154 |
2362 | 155 |
156 class VerticalContainer(xmlui.VerticalContainer, Container): | |
157 type = u'vertical' | |
158 | |
159 | |
160 class PairsContainer(xmlui.PairsContainer, Container): | |
161 type = u'pairs' | |
162 | |
163 | |
164 class LabelContainer(xmlui.PairsContainer, Container): | |
165 type = u'label' | |
166 | |
167 | |
168 ## Factory ## | |
169 | |
170 class WidgetFactory(object): | |
171 | |
172 def __getattr__(self, attr): | |
173 if attr.startswith("create"): | |
174 cls = globals()[attr[6:]] | |
175 return cls | |
176 | |
177 ## Core ## | |
178 | |
179 | |
180 class XMLUIPanel(xmlui.XMLUIPanel): | |
181 widget_factory = WidgetFactory() | |
182 | |
183 def show(self, *args, **kwargs): | |
184 raise NotImplementedError | |
185 | |
186 | |
187 class XMLUIDialog(xmlui.XMLUIDialog): | |
188 dialog_factory = WidgetFactory() | |
189 | |
190 def __init__(*args, **kwargs): | |
191 raise NotImplementedError | |
192 | |
193 | |
194 xmlui.registerClass(xmlui.CLASS_PANEL, XMLUIPanel) | |
195 xmlui.registerClass(xmlui.CLASS_DIALOG, XMLUIDialog) | |
196 create = xmlui.create |