Mercurial > libervia-desktop-kivy
annotate src/cagou.py @ 10:8b2836b5b6c7
added CagouWidget:
CagouWidget is the base for all selectable widgets, it currently displays basic drop/down menu which will be used to switch widget (in a similar way as in Blender), and a text input which will be the generic search field (behaviour may vary between widgets).
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 08 Jul 2016 20:17:09 +0200 |
parents | 7b0a53d2afd3 |
children | 49d30fc15884 |
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 | |
9 | 36 from contact_list import ContactList |
37 from kivy.uix.boxlayout import BoxLayout | |
38 import os.path | |
39 | |
40 | |
41 class CagouRootWidget(BoxLayout): | |
42 | |
43 def __init__(self, widgets): | |
44 super(CagouRootWidget, self).__init__(orientation=("vertical")) | |
45 for wid in widgets: | |
46 self.add_widget(wid) | |
47 | |
48 def change_widgets(self, widgets): | |
49 self.clear_widgets() | |
50 for wid in widgets: | |
51 self.add_widget(wid) | |
0 | 52 |
53 | |
54 class CagouApp(App): | |
55 """Kivy App for Cagou""" | |
56 | |
57 def build(self): | |
9 | 58 return CagouRootWidget([ProfileManager(self.host)]) |
0 | 59 |
60 | |
61 class Cagou(QuickApp): | |
62 MB_HANDLE = False | |
63 | |
64 def __init__(self): | |
65 super(Cagou, self).__init__(create_bridge=DBusBridgeFrontend, xmlui=xmlui) | |
66 self.app = CagouApp() | |
67 self.app.host = self | |
9 | 68 media_dir = self.app.media_dir = self.bridge.getConfig("", "media_dir") |
69 self.app.default_avatar = os.path.join(media_dir, "misc/default_avatar.png") | |
0 | 70 |
71 def run(self): | |
72 self.app.run() | |
73 | |
9 | 74 def plugging_profiles(self): |
75 contact_list = self.widgets.getOrCreateWidget(ContactList, None, on_new_widget=None) | |
76 self.app.root.change_widgets([contact_list]) | |
77 | |
78 def setPresenceStatus(self, show='', status=None, profile=C.PROF_KEY_NONE): | |
79 log.info(u"Profile presence status set to {show}/{status}".format(show=show, status=status)) | |
80 | |
0 | 81 |
82 if __name__ == '__main__': | |
83 Cagou().run() |