Mercurial > libervia-desktop-kivy
annotate src/cagou/core/cagou_main.py @ 25:d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 10 Aug 2016 01:24:37 +0200 |
parents | c58b522607f4 |
children | 9f9532eb835f |
rev | line source |
---|---|
6
85649eca9f9b
core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
1 #!/usr//bin/env python2 |
0 | 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 | |
14 | 21 from sat.core.i18n import _ |
6
85649eca9f9b
core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
22 import logging_setter |
85649eca9f9b
core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
23 logging_setter.set_logging() |
85649eca9f9b
core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
24 from constants import Const as C |
0 | 25 from sat.core import log as logging |
26 log = logging.getLogger(__name__) | |
27 from sat_frontends.quick_frontend.quick_app import QuickApp | |
28 from sat_frontends.bridge.DBus import DBusBridgeFrontend | |
29 import kivy | |
30 kivy.require('1.9.1') | |
31 import kivy.support | |
32 kivy.support.install_gobject_iteration() | |
33 from kivy.app import App | |
14 | 34 from kivy.lang import Builder |
0 | 35 import xmlui |
36 from profile_manager import ProfileManager | |
13 | 37 from widgets_handler import WidgetsHandler |
9 | 38 from kivy.uix.boxlayout import BoxLayout |
11
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
39 from cagou_widget import CagouWidget |
14 | 40 from importlib import import_module |
9 | 41 import os.path |
14 | 42 import glob |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
43 import cagou.plugins |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
44 import cagou.kv |
9 | 45 |
46 | |
47 class CagouRootWidget(BoxLayout): | |
48 | |
49 def __init__(self, widgets): | |
50 super(CagouRootWidget, self).__init__(orientation=("vertical")) | |
51 for wid in widgets: | |
52 self.add_widget(wid) | |
53 | |
54 def change_widgets(self, widgets): | |
55 self.clear_widgets() | |
56 for wid in widgets: | |
57 self.add_widget(wid) | |
0 | 58 |
59 | |
60 class CagouApp(App): | |
61 """Kivy App for Cagou""" | |
62 | |
63 def build(self): | |
16
ba14b596b90e
host can now be get as a global value:
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
64 return CagouRootWidget([ProfileManager()]) |
0 | 65 |
66 | |
67 class Cagou(QuickApp): | |
68 MB_HANDLE = False | |
69 | |
70 def __init__(self): | |
71 super(Cagou, self).__init__(create_bridge=DBusBridgeFrontend, xmlui=xmlui) | |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
72 self._import_kv() |
0 | 73 self.app = CagouApp() |
25
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
74 self.media_dir = self.app.media_dir = self.bridge.getConfig("", "media_dir") |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
75 self.app.default_avatar = os.path.join(self.media_dir, "misc/default_avatar.png") |
14 | 76 self._plg_wids = [] # widget plugins |
77 self._import_plugins() | |
0 | 78 |
79 def run(self): | |
80 self.app.run() | |
81 | |
16
ba14b596b90e
host can now be get as a global value:
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
82 def _defaultFactory(self, plugin_info, target, profiles): |
14 | 83 """factory used to create widget instance when PLUGIN_INFO["factory"] is not set""" |
84 main_cls = plugin_info['main'] | |
19
c58b522607f4
main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
85 return self.widgets.getOrCreateWidget(main_cls, target, on_new_widget=None, profiles=iter(self.profiles)) |
14 | 86 |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
87 def _import_kv(self): |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
88 """import all kv files in cagou.kv""" |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
89 path = os.path.dirname(cagou.kv.__file__) |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
90 for kv_path in glob.glob(os.path.join(path, "*.kv")): |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
91 Builder.load_file(kv_path) |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
92 log.debug(u"kv file {} loaded".format(kv_path)) |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
93 |
14 | 94 def _import_plugins(self): |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
95 """import all plugins""" |
14 | 96 self.default_wid = None |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
97 plugins_path = os.path.dirname(cagou.plugins.__file__) |
14 | 98 plug_lst = [os.path.splitext(p)[0] for p in map(os.path.basename, glob.glob(os.path.join(plugins_path, "plugin*.py")))] |
99 imported_names = set() # use to avoid loading 2 times plugin with same import name | |
100 for plug in plug_lst: | |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
101 plugin_path = 'cagou.plugins.' + plug |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
102 mod = import_module(plugin_path) |
14 | 103 try: |
104 plugin_info = mod.PLUGIN_INFO | |
105 except AttributeError: | |
106 plugin_info = {} | |
107 | |
108 # import name is used to differentiate plugins | |
109 if 'import_name' not in plugin_info: | |
110 plugin_info['import_name'] = plug | |
111 if 'import_name' in imported_names: | |
112 log.warning(_(u"there is already a plugin named {}, ignoring new one").format(plugin_info['import_name'])) | |
113 continue | |
114 if plugin_info['import_name'] == C.WID_SELECTOR: | |
115 # if WidgetSelector exists, it will be our default widget | |
116 self.default_wid = plugin_info | |
117 | |
118 # we want everything optional, so we use plugin file name | |
119 # if actual name is not found | |
120 if 'name' not in plugin_info: | |
121 plugin_info['name'] = plug[plug.rfind('_')+1:] | |
122 | |
123 # we need to load the kv file | |
124 if 'kv_file' not in plugin_info: | |
125 plugin_info['kv_file'] = u'{}.kv'.format(plug) | |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
126 kv_path = os.path.join(plugins_path, plugin_info['kv_file']) |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
127 Builder.load_file(kv_path) |
14 | 128 |
129 # what is the main class ? | |
130 main_cls = getattr(mod, plugin_info['main']) | |
131 plugin_info['main'] = main_cls | |
132 | |
133 # factory is used to create the instance | |
134 # if not found, we use a defaut one with getOrCreateWidget | |
135 if 'factory' not in plugin_info: | |
136 plugin_info['factory'] = self._defaultFactory | |
137 | |
25
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
138 # icons |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
139 for size in ('small', 'medium'): |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
140 key = u'icon_{}'.format(size) |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
141 try: |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
142 path = plugin_info[key] |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
143 except KeyError: |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
144 path = C.DEFAULT_WIDGET_ICON.format(media=self.media_dir) |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
145 else: |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
146 path = path.format(media=self.media_dir) |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
147 if not os.path.isfile(path): |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
148 path = C.DEFAULT_WIDGET_ICON.format(media=self.media_dir) |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
149 plugin_info[key] = path |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
150 |
14 | 151 self._plg_wids.append(plugin_info) |
152 if not self._plg_wids: | |
153 log.error(_(u"no widget plugin found")) | |
154 return | |
155 | |
156 # we want widgets sorted by names | |
157 self._plg_wids.sort(key=lambda p: p['name'].lower()) | |
158 | |
159 if self.default_wid is None: | |
160 # we have no selector widget, we use the first widget as default | |
161 self.default_wid = self._plg_wids[0] | |
162 | |
163 def getPluggedWidgets(self, except_cls=None): | |
164 """get available widgets plugin infos | |
165 | |
166 @param except_cls(None, class): if not None, | |
167 widgets from this class will be excluded | |
168 @return (list[dict]): available widgets plugin infos | |
169 """ | |
19
c58b522607f4
main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
170 for plugin_data in self._plg_wids: |
c58b522607f4
main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
171 if plugin_data['main'] == except_cls: |
c58b522607f4
main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
172 continue |
c58b522607f4
main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
173 yield plugin_data |
14 | 174 |
9 | 175 def plugging_profiles(self): |
16
ba14b596b90e
host can now be get as a global value:
Goffi <goffi@goffi.org>
parents:
15
diff
changeset
|
176 self.app.root.change_widgets([WidgetsHandler()]) |
9 | 177 |
178 def setPresenceStatus(self, show='', status=None, profile=C.PROF_KEY_NONE): | |
179 log.info(u"Profile presence status set to {show}/{status}".format(show=show, status=status)) | |
180 | |
11
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
181 def switchWidget(self, old, new): |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
182 """Replace old widget by new one |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
183 |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
184 old(CagouWidget): CagouWidget instance or a child |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
185 new(CagouWidget): new widget instance |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
186 """ |
14 | 187 to_change = None |
188 if isinstance(old, CagouWidget): | |
189 to_change = old | |
190 else: | |
191 for w in old.walk_reverse(): | |
192 if isinstance(w, CagouWidget): | |
193 to_change = w | |
194 break | |
195 | |
196 if to_change is None: | |
197 log.error(u"no CagouWidget found when trying to switch widget") | |
198 else: | |
199 parent = to_change.parent | |
200 idx = parent.children.index(to_change) | |
201 parent.remove_widget(to_change) | |
202 parent.add_widget(new, index=idx) |