Mercurial > libervia-desktop-kivy
annotate src/cagou.py @ 13:12a189fbb9ba
widget handler first draft:
This widget handle other widgets location and size. It is currently loosely inspired from Blender's UI, and the implementation is currenlty naïve. It should be updated in the future to have a behaviour more close to Blender one.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 08 Jul 2016 20:18:43 +0200 |
parents | 30f6586f904b |
children | 21a432afd06d |
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 | |
6
85649eca9f9b
core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
21 import logging_setter |
85649eca9f9b
core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
22 logging_setter.set_logging() |
85649eca9f9b
core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
23 from constants import Const as C |
0 | 24 from sat.core import log as logging |
25 log = logging.getLogger(__name__) | |
26 from sat_frontends.quick_frontend.quick_app import QuickApp | |
27 from sat_frontends.bridge.DBus import DBusBridgeFrontend | |
28 # from sat_frontends.quick_frontend import quick_utils | |
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 | |
34 import xmlui | |
35 from profile_manager import ProfileManager | |
13 | 36 from widgets_handler import WidgetsHandler |
9 | 37 from kivy.uix.boxlayout import BoxLayout |
12 | 38 from widget_selector import WidgetSelector |
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 |
9 | 40 import os.path |
41 | |
42 | |
43 class CagouRootWidget(BoxLayout): | |
44 | |
45 def __init__(self, widgets): | |
46 super(CagouRootWidget, self).__init__(orientation=("vertical")) | |
47 for wid in widgets: | |
48 self.add_widget(wid) | |
49 | |
50 def change_widgets(self, widgets): | |
51 self.clear_widgets() | |
52 for wid in widgets: | |
53 self.add_widget(wid) | |
0 | 54 |
55 | |
56 class CagouApp(App): | |
57 """Kivy App for Cagou""" | |
58 | |
59 def build(self): | |
9 | 60 return CagouRootWidget([ProfileManager(self.host)]) |
0 | 61 |
62 | |
63 class Cagou(QuickApp): | |
64 MB_HANDLE = False | |
65 | |
66 def __init__(self): | |
67 super(Cagou, self).__init__(create_bridge=DBusBridgeFrontend, xmlui=xmlui) | |
68 self.app = CagouApp() | |
69 self.app.host = self | |
9 | 70 media_dir = self.app.media_dir = self.bridge.getConfig("", "media_dir") |
71 self.app.default_avatar = os.path.join(media_dir, "misc/default_avatar.png") | |
0 | 72 |
73 def run(self): | |
74 self.app.run() | |
75 | |
9 | 76 def plugging_profiles(self): |
12 | 77 widget_selector = WidgetSelector(self) |
13 | 78 self.app.root.change_widgets([WidgetsHandler(self, widget_selector)]) |
9 | 79 |
80 def setPresenceStatus(self, show='', status=None, profile=C.PROF_KEY_NONE): | |
81 log.info(u"Profile presence status set to {show}/{status}".format(show=show, status=status)) | |
82 | |
11
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
83 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
|
84 """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
|
85 |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
86 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
|
87 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
|
88 """ |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
89 for w in old.walk_reverse(): |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
90 if isinstance(w, CagouWidget): |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
91 parent = w.parent |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
92 idx = parent.children.index(w) |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
93 parent.remove_widget(w) |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
94 parent.add_widget(new, index=idx) |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
95 break |
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
96 |
0 | 97 |
98 if __name__ == '__main__': | |
99 Cagou().run() |