Mercurial > libervia-desktop-kivy
comparison src/plugin_wid_contact_list.py @ 14:21a432afd06d
plugin system, first draft:
- widgets are now handled with plugins, ContactList and WidgetSelector have been changed to be pluggins
- everything in PLUGIN_INFO (including PLUGIN_INFO itself) is optional. Best guess is used if a value is missing
- WidgetsHandler use default widget from plugins, which is WidgetSelector for now
- PLUGIN_INFO is used in the same way as for backed plugins, with (for now) following possible keys:
- "name": human readable name
- "description": long description of what widget do
- "import_name": unique short name used as reference for import
- "main": main class name
- "factory": callback used to instanciate a widget (see Cagou._defaultFactory)
- "kv_file": path to the kv language file to load (same filename with ".kv" will be used if key is not found)
other data should be added quickly, as a path to a file used as icon
- host.getPluggedWidgets can be used to find loaded widgets. except_cls can be used to excluse a class (self.__class__ usually)
- fixed host.switchWidget when old widget is already a CagouWidget
- CagouWidget header new display the available widgets
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 09 Jul 2016 16:02:44 +0200 |
parents | src/contact_list.py@8b2836b5b6c7 |
children |
comparison
equal
deleted
inserted
replaced
13:12a189fbb9ba | 14:21a432afd06d |
---|---|
1 #!/usr/bin/python | |
2 # -*- coding: utf-8 -*- | |
3 | |
4 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client | |
5 # Copyright (C) 2016 Jérôme Poisson (goffi@goffi.org) | |
6 | |
7 # This program is free software: you can redistribute it and/or modify | |
8 # it under the terms of the GNU Affero General Public License as published by | |
9 # the Free Software Foundation, either version 3 of the License, or | |
10 # (at your option) any later version. | |
11 | |
12 # This program is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU Affero General Public License for more details. | |
16 | |
17 # You should have received a copy of the GNU Affero General Public License | |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | |
20 | |
21 from sat.core import log as logging | |
22 log = logging.getLogger(__name__) | |
23 from sat.core.i18n import _ | |
24 from sat_frontends.quick_frontend.quick_contact_list import QuickContactList | |
25 from kivy.uix.boxlayout import BoxLayout | |
26 from kivy.uix.listview import ListView | |
27 from kivy.adapters.listadapter import ListAdapter | |
28 from kivy import properties | |
29 from cagou_widget import CagouWidget | |
30 import image | |
31 | |
32 | |
33 PLUGIN_INFO = { | |
34 "name": _(u"contacts"), | |
35 "main": "ContactList", | |
36 "description": _(u"list of contacts"), | |
37 } | |
38 | |
39 | |
40 class Avatar(image.Image): | |
41 pass | |
42 | |
43 | |
44 class ContactItem(BoxLayout): | |
45 data = properties.DictProperty() | |
46 jid = properties.StringProperty('') | |
47 | |
48 def __init__(self, **kwargs): | |
49 BoxLayout.__init__(self, **kwargs) | |
50 | |
51 | |
52 class ContactList(QuickContactList, CagouWidget): | |
53 | |
54 def __init__(self, host, target, profiles): | |
55 QuickContactList.__init__(self, host, profiles) | |
56 CagouWidget.__init__(self, host) | |
57 self.adapter = ListAdapter(data={}, | |
58 cls=ContactItem, | |
59 args_converter=self.contactDataConverter, | |
60 selection_mode='multiple', | |
61 allow_empty_selection=True, | |
62 ) | |
63 self.add_widget(ListView(adapter=self.adapter)) | |
64 self.update() | |
65 | |
66 def contactDataConverter(self, idx, bare_jid): | |
67 return {"jid": bare_jid, "data": self._items_cache[bare_jid]} | |
68 | |
69 def update(self, entities=None, type_=None, profile=None): | |
70 log.info("update: %s %s %s" % (entities, type_, profile)) | |
71 # FIXME: for now we update on each event | |
72 # if entities is None and type_ is None: | |
73 self._items_cache = self.items | |
74 self.adapter.data = self.items_sorted | |
75 |