Mercurial > libervia-desktop-kivy
annotate cagou/core/cagou_main.py @ 388:de066b72f5a8
core: cache MUC bookmarks on startup
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 06 Feb 2020 21:16:21 +0100 |
parents | 6dacaf81339a |
children | ae6f7fd1cb0e |
rev | line source |
---|---|
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1 #!/usr/bin/env python3 |
0 | 2 |
3 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client | |
378 | 4 # Copyright (C) 2016-2020 Jérôme Poisson (goffi@goffi.org) |
0 | 5 |
6 # This program is free software: you can redistribute it and/or modify | |
7 # it under the terms of the GNU Affero General Public License as published by | |
8 # the Free Software Foundation, either version 3 of the License, or | |
9 # (at your option) any later version. | |
10 | |
11 # This program is distributed in the hope that it will be useful, | |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 # GNU Affero General Public License for more details. | |
15 | |
16 # You should have received a copy of the GNU Affero General Public License | |
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 | |
19 | |
285
3f7e227aab00
core: disable multitouch emulation with mouse
Goffi <goffi@goffi.org>
parents:
284
diff
changeset
|
20 import os.path |
3f7e227aab00
core: disable multitouch emulation with mouse
Goffi <goffi@goffi.org>
parents:
284
diff
changeset
|
21 import glob |
3f7e227aab00
core: disable multitouch emulation with mouse
Goffi <goffi@goffi.org>
parents:
284
diff
changeset
|
22 import sys |
388
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
23 from functools import partial |
14 | 24 from sat.core.i18n import _ |
119
1bbbe26846f4
buildozer: moved sat.conf in a specific dir (platform/android), so it's not used on desktop
Goffi <goffi@goffi.org>
parents:
112
diff
changeset
|
25 from . import kivy_hack |
48
028a98983e46
core: avoid kivy arguments hijacking so QuickApp arguments parsing can be used
Goffi <goffi@goffi.org>
parents:
44
diff
changeset
|
26 kivy_hack.do_hack() |
323
5bd583d00594
backport: added a new "backport" module for using unreleased code from Kivy:
Goffi <goffi@goffi.org>
parents:
322
diff
changeset
|
27 from cagou.backport import do_backport |
5bd583d00594
backport: added a new "backport" module for using unreleased code from Kivy:
Goffi <goffi@goffi.org>
parents:
322
diff
changeset
|
28 do_backport() |
312 | 29 from .constants import Const as C |
0 | 30 from sat.core import log as logging |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
31 from sat.core import exceptions |
0 | 32 from sat_frontends.quick_frontend.quick_app import QuickApp |
34
02acbb297a61
handler, widget: deleteWidget is now properly called when a QuickWidget is deleted
Goffi <goffi@goffi.org>
parents:
33
diff
changeset
|
33 from sat_frontends.quick_frontend import quick_widgets |
43
12fdc7d1feb1
core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
34 from sat_frontends.quick_frontend import quick_chat |
48
028a98983e46
core: avoid kivy arguments hijacking so QuickApp arguments parsing can be used
Goffi <goffi@goffi.org>
parents:
44
diff
changeset
|
35 from sat_frontends.quick_frontend import quick_utils |
244
5bd94bc08f5c
plugin chat: fixed OTR State filtering + removed some legacy code
Goffi <goffi@goffi.org>
parents:
240
diff
changeset
|
36 from sat_frontends.tools import jid |
302
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
37 from sat.tools import utils as sat_utils |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
38 from sat.tools import config |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
39 from sat.tools.common import dynamic_import |
0 | 40 import kivy |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
41 kivy.require('1.11.0') |
0 | 42 import kivy.support |
63 | 43 main_config = config.parseMainConf() |
44 bridge_name = config.getConfig(main_config, '', 'bridge', 'dbus') | |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
45 # FIXME: event loop is choosen according to bridge_name, a better way should be used |
63 | 46 if 'dbus' in bridge_name: |
47 kivy.support.install_gobject_iteration() | |
48 elif bridge_name in ('pb', 'embedded'): | |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
49 kivy.support.install_twisted_reactor() |
0 | 50 from kivy.app import App |
14 | 51 from kivy.lang import Builder |
29 | 52 from kivy import properties |
312 | 53 from . import xmlui |
54 from .profile_manager import ProfileManager | |
29 | 55 from kivy.clock import Clock |
56 from kivy.uix.label import Label | |
9 | 57 from kivy.uix.boxlayout import BoxLayout |
85
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
58 from kivy.uix.floatlayout import FloatLayout |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
59 from kivy.uix.screenmanager import (ScreenManager, Screen, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
60 FallOutTransition, RiseInTransition) |
29 | 61 from kivy.uix.dropdown import DropDown |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
62 from kivy.uix.behaviors import ButtonBehavior |
166
37220459e93d
core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
63 from kivy.core.window import Window |
37220459e93d
core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
64 from kivy.animation import Animation |
37220459e93d
core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
65 from kivy.metrics import dp |
312 | 66 from .cagou_widget import CagouWidget |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
67 from .share_widget import ShareWidget |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
68 from . import widgets_handler |
29 | 69 from .common import IconButton |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
70 from . import dialog |
14 | 71 from importlib import import_module |
302
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
72 import sat |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
73 import cagou |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
74 import cagou.plugins |
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
75 import cagou.kv |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
76 |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
77 |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
78 log = logging.getLogger(__name__) |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
79 |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
80 |
184
c63922860f80
chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents:
176
diff
changeset
|
81 try: |
c63922860f80
chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents:
176
diff
changeset
|
82 from plyer import notification |
c63922860f80
chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents:
176
diff
changeset
|
83 except ImportError: |
c63922860f80
chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents:
176
diff
changeset
|
84 notification = None |
312 | 85 log.warning(_("Can't import plyer, some features disabled")) |
131
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
130
diff
changeset
|
86 |
286 | 87 |
88 ## platform specific settings ## | |
89 | |
342
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
90 from . import platform_ |
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
91 local_platform = platform_.create() |
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
92 local_platform.init_platform() |
259
4601793b0dee
core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents:
250
diff
changeset
|
93 |
4601793b0dee
core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents:
250
diff
changeset
|
94 |
286 | 95 ## General Configuration ## |
96 | |
259
4601793b0dee
core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents:
250
diff
changeset
|
97 # we want white background by default |
4601793b0dee
core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents:
250
diff
changeset
|
98 Window.clearcolor = (1, 1, 1, 1) |
9 | 99 |
100 | |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
101 class NotifsIcon(IconButton): |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
102 notifs = properties.ListProperty() |
29 | 103 |
104 def on_release(self): | |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
105 callback, args, kwargs = self.notifs.pop(0) |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
106 callback(*args, **kwargs) |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
107 |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
108 def addNotif(self, callback, *args, **kwargs): |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
109 self.notifs.append((callback, args, kwargs)) |
29 | 110 |
111 | |
112 class Note(Label): | |
113 title = properties.StringProperty() | |
114 message = properties.StringProperty() | |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
115 level = properties.OptionProperty(C.XMLUI_DATA_LVL_DEFAULT, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
116 options=list(C.XMLUI_DATA_LVLS)) |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
117 symbol = properties.StringProperty() |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
118 action = properties.ObjectProperty() |
29 | 119 |
120 | |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
121 class NoteDrop(ButtonBehavior, BoxLayout): |
208 | 122 title = properties.StringProperty() |
123 message = properties.StringProperty() | |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
124 level = properties.OptionProperty(C.XMLUI_DATA_LVL_DEFAULT, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
125 options=list(C.XMLUI_DATA_LVLS)) |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
126 symbol = properties.StringProperty() |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
127 action = properties.ObjectProperty() |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
128 |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
129 def on_press(self): |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
130 if self.action is not None: |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
131 self.parent.parent.select(self.action) |
29 | 132 |
133 | |
134 class NotesDrop(DropDown): | |
135 clear_btn = properties.ObjectProperty() | |
136 | |
137 def __init__(self, notes): | |
138 super(NotesDrop, self).__init__() | |
139 self.notes = notes | |
140 | |
141 def open(self, widget): | |
142 self.clear_widgets() | |
143 for n in self.notes: | |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
144 kwargs = { |
312 | 145 'title': n.title, |
146 'message': n.message, | |
147 'level': n.level | |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
148 } |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
149 if n.symbol is not None: |
312 | 150 kwargs['symbol'] = n.symbol |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
151 if n.action is not None: |
312 | 152 kwargs['action'] = n.action |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
153 self.add_widget(NoteDrop(title=n.title, message=n.message, level=n.level, |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
154 symbol=n.symbol, action=n.action)) |
29 | 155 self.add_widget(self.clear_btn) |
156 super(NotesDrop, self).open(widget) | |
157 | |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
158 def on_select(self, action_kwargs): |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
159 app = App.get_running_app() |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
160 app.host.doAction(**action_kwargs) |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
161 |
29 | 162 |
163 class RootHeadWidget(BoxLayout): | |
164 """Notifications widget""" | |
165 manager = properties.ObjectProperty() | |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
166 notifs_icon = properties.ObjectProperty() |
29 | 167 notes = properties.ListProperty() |
172
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
168 HEIGHT = dp(35) |
29 | 169 |
170 def __init__(self): | |
171 super(RootHeadWidget, self).__init__() | |
172 self.notes_last = None | |
173 self.notes_event = None | |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
174 self.notes_drop = NotesDrop(self.notes) |
29 | 175 |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
176 def addNotif(self, callback, *args, **kwargs): |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
177 """add a notification with a callback attached |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
178 |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
179 when notification is pressed, callback is called |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
180 @param *args, **kwargs: arguments of callback |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
181 """ |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
182 self.notifs_icon.addNotif(callback, *args, **kwargs) |
29 | 183 |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
184 def addNote(self, title, message, level, symbol, action): |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
185 kwargs = { |
312 | 186 'title': title, |
187 'message': message, | |
188 'level': level | |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
189 } |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
190 if symbol is not None: |
312 | 191 kwargs['symbol'] = symbol |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
192 if action is not None: |
312 | 193 kwargs['action'] = action |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
194 note = Note(**kwargs) |
29 | 195 self.notes.append(note) |
196 if self.notes_event is None: | |
197 self.notes_event = Clock.schedule_interval(self._displayNextNote, 5) | |
198 self._displayNextNote() | |
199 | |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
200 def addNotifUI(self, ui): |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
201 self.notifs_icon.addNotif(ui.show, force=True) |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
202 |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
203 def addNotifWidget(self, widget): |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
204 app = App.get_running_app() |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
205 self.notifs_icon.addNotif(app.host.showExtraUI, widget=widget) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
206 |
284 | 207 def _displayNextNote(self, __=None): |
29 | 208 screen = Screen() |
209 try: | |
210 idx = self.notes.index(self.notes_last) + 1 | |
211 except ValueError: | |
212 idx = 0 | |
213 try: | |
214 note = self.notes_last = self.notes[idx] | |
215 except IndexError: | |
216 self.notes_event.cancel() | |
217 self.notes_event = None | |
218 else: | |
219 screen.add_widget(note) | |
220 self.manager.switch_to(screen) | |
221 | |
222 | |
85
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
223 class RootBody(BoxLayout): |
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
224 pass |
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
225 |
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
226 |
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
227 class CagouRootWidget(FloatLayout): |
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
228 root_body = properties.ObjectProperty |
9 | 229 |
29 | 230 def __init__(self, main_widget): |
85
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
231 super(CagouRootWidget, self).__init__() |
29 | 232 # header |
172
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
233 self.head_widget = RootHeadWidget() |
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
234 self.root_body.add_widget(self.head_widget) |
29 | 235 # body |
236 self._manager = ScreenManager() | |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
237 # main widgets |
29 | 238 main_screen = Screen(name='main') |
239 main_screen.add_widget(main_widget) | |
240 self._manager.add_widget(main_screen) | |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
241 # backend XMLUI (popups, forms, etc) |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
242 xmlui_screen = Screen(name='xmlui') |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
243 self._manager.add_widget(xmlui_screen) |
78 | 244 # extra (file chooser, audio record, etc) |
245 extra_screen = Screen(name='extra') | |
246 self._manager.add_widget(extra_screen) | |
85
c2a7234d13d2
menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents:
78
diff
changeset
|
247 self.root_body.add_widget(self._manager) |
29 | 248 |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
249 def changeWidget(self, widget, screen_name="main"): |
29 | 250 """change main widget""" |
52
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
251 if self._manager.transition.is_active: |
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
252 # FIXME: workaround for what seems a Kivy bug |
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
253 # TODO: report this upstream |
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
254 self._manager.transition.stop() |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
255 screen = self._manager.get_screen(screen_name) |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
256 screen.clear_widgets() |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
257 screen.add_widget(widget) |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
258 |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
259 def show(self, screen="main"): |
52
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
260 if self._manager.transition.is_active: |
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
261 # FIXME: workaround for what seems a Kivy bug |
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
262 # TODO: report this upstream |
647f32d0a004
core: workaround issue happening when root widget is changed too quickly (during a transition)
Goffi <goffi@goffi.org>
parents:
51
diff
changeset
|
263 self._manager.transition.stop() |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
264 if self._manager.current == screen: |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
265 return |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
266 if screen == "main": |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
267 self._manager.transition = FallOutTransition() |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
268 else: |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
269 self._manager.transition = RiseInTransition() |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
270 self._manager.current = screen |
29 | 271 |
272 def newAction(self, handler, action_data, id_, security_limit, profile): | |
273 """Add a notification for an action""" | |
172
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
274 self.head_widget.addNotif(handler, action_data, id_, security_limit, profile) |
29 | 275 |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
276 def addNote(self, title, message, level, symbol, action): |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
277 self.head_widget.addNote(title, message, level, symbol, action) |
0 | 278 |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
279 def addNotifUI(self, ui): |
172
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
280 self.head_widget.addNotifUI(ui) |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
281 |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
282 def addNotifWidget(self, widget): |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
283 self.head_widget.addNotifWidget(widget) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
284 |
0 | 285 |
286 class CagouApp(App): | |
287 """Kivy App for Cagou""" | |
176
2cfef8fbfd4e
core: moved main colors to constants
Goffi <goffi@goffi.org>
parents:
174
diff
changeset
|
288 c_prim = properties.ListProperty(C.COLOR_PRIM) |
2cfef8fbfd4e
core: moved main colors to constants
Goffi <goffi@goffi.org>
parents:
174
diff
changeset
|
289 c_prim_light = properties.ListProperty(C.COLOR_PRIM_LIGHT) |
2cfef8fbfd4e
core: moved main colors to constants
Goffi <goffi@goffi.org>
parents:
174
diff
changeset
|
290 c_prim_dark = properties.ListProperty(C.COLOR_PRIM_DARK) |
2cfef8fbfd4e
core: moved main colors to constants
Goffi <goffi@goffi.org>
parents:
174
diff
changeset
|
291 c_sec = properties.ListProperty(C.COLOR_SEC) |
2cfef8fbfd4e
core: moved main colors to constants
Goffi <goffi@goffi.org>
parents:
174
diff
changeset
|
292 c_sec_light = properties.ListProperty(C.COLOR_SEC_LIGHT) |
2cfef8fbfd4e
core: moved main colors to constants
Goffi <goffi@goffi.org>
parents:
174
diff
changeset
|
293 c_sec_dark = properties.ListProperty(C.COLOR_SEC_DARK) |
346
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
294 connected = properties.BooleanProperty(False) |
274 | 295 # we have to put those constants here and not in core/constants.py |
296 # because of the use of dp(), which would import Kivy too early | |
297 # and prevent the log hack | |
298 MARGIN_LEFT = MARGIN_RIGHT = dp(10) | |
0 | 299 |
152
b9fd83292fc4
core: disabled Kivy's default behaviour of displaying settings on F1
Goffi <goffi@goffi.org>
parents:
143
diff
changeset
|
300 def _install_settings_keys(self, window): |
b9fd83292fc4
core: disabled Kivy's default behaviour of displaying settings on F1
Goffi <goffi@goffi.org>
parents:
143
diff
changeset
|
301 # we don't want default Kivy's behaviour of displaying |
b9fd83292fc4
core: disabled Kivy's default behaviour of displaying settings on F1
Goffi <goffi@goffi.org>
parents:
143
diff
changeset
|
302 # a settings screen when pressing F1 or platform specific key |
b9fd83292fc4
core: disabled Kivy's default behaviour of displaying settings on F1
Goffi <goffi@goffi.org>
parents:
143
diff
changeset
|
303 return |
b9fd83292fc4
core: disabled Kivy's default behaviour of displaying settings on F1
Goffi <goffi@goffi.org>
parents:
143
diff
changeset
|
304 |
0 | 305 def build(self): |
143
05d602be0120
core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents:
142
diff
changeset
|
306 Window.bind(on_keyboard=self.key_input) |
312 | 307 wid = CagouRootWidget(Label(text="Loading please wait")) |
342
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
308 local_platform.on_app_build(wid) |
166
37220459e93d
core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
309 return wid |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
310 |
377
b2a87239af25
android: platform specific menu to disconnect profile:
Goffi <goffi@goffi.org>
parents:
375
diff
changeset
|
311 def showProfileManager(self): |
49
fd9cbf6ae663
core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents:
48
diff
changeset
|
312 self._profile_manager = ProfileManager() |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
313 self.root.changeWidget(self._profile_manager) |
0 | 314 |
31
4f9e701d76b4
core: expand now accepts extra arguments, which will be used in format
Goffi <goffi@goffi.org>
parents:
29
diff
changeset
|
315 def expand(self, path, *args, **kwargs): |
28
9f9532eb835f
core: added expand method to expand filename with magic values, specially useful in kv
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
316 """expand path and replace known values |
9f9532eb835f
core: added expand method to expand filename with magic values, specially useful in kv
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
317 |
32 | 318 useful in kv. Values which can be used: |
319 - {media}: media dir | |
31
4f9e701d76b4
core: expand now accepts extra arguments, which will be used in format
Goffi <goffi@goffi.org>
parents:
29
diff
changeset
|
320 @param path(unicode): path to expand |
4f9e701d76b4
core: expand now accepts extra arguments, which will be used in format
Goffi <goffi@goffi.org>
parents:
29
diff
changeset
|
321 @param *args: additional arguments used in format |
4f9e701d76b4
core: expand now accepts extra arguments, which will be used in format
Goffi <goffi@goffi.org>
parents:
29
diff
changeset
|
322 @param **kwargs: additional keyword arguments used in format |
28
9f9532eb835f
core: added expand method to expand filename with magic values, specially useful in kv
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
323 """ |
31
4f9e701d76b4
core: expand now accepts extra arguments, which will be used in format
Goffi <goffi@goffi.org>
parents:
29
diff
changeset
|
324 return os.path.expanduser(path).format(*args, media=self.host.media_dir, **kwargs) |
28
9f9532eb835f
core: added expand method to expand filename with magic values, specially useful in kv
Goffi <goffi@goffi.org>
parents:
25
diff
changeset
|
325 |
259
4601793b0dee
core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents:
250
diff
changeset
|
326 def initFrontendState(self): |
4601793b0dee
core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents:
250
diff
changeset
|
327 """Init state to handle paused/stopped/running on mobile OSes""" |
342
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
328 local_platform.on_initFrontendState() |
73
674b1fa3c945
core: use memory map on a file to indicate pause/resume status, so backend can now it
Goffi <goffi@goffi.org>
parents:
72
diff
changeset
|
329 |
65
1c738621bc8d
core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
330 def on_pause(self): |
342
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
331 return local_platform.on_pause() |
65
1c738621bc8d
core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
332 |
1c738621bc8d
core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
333 def on_resume(self): |
342
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
334 return local_platform.on_resume() |
73
674b1fa3c945
core: use memory map on a file to indicate pause/resume status, so backend can now it
Goffi <goffi@goffi.org>
parents:
72
diff
changeset
|
335 |
674b1fa3c945
core: use memory map on a file to indicate pause/resume status, so backend can now it
Goffi <goffi@goffi.org>
parents:
72
diff
changeset
|
336 def on_stop(self): |
342
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
337 return local_platform.on_stop() |
65
1c738621bc8d
core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
338 |
143
05d602be0120
core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents:
142
diff
changeset
|
339 def key_input(self, window, key, scancode, codepoint, modifier): |
349
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
340 |
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
341 # we first check if selected widget handles the key |
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
342 if ((self.host.selected_widget is not None |
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
343 and hasattr(self.host.selected_widget, 'key_input') |
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
344 and self.host.selected_widget.key_input(window, key, scancode, codepoint, |
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
345 modifier))): |
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
346 return True |
33244f944bd8
core: "key_input" method is now checked and used if suitable in selected widget.
Goffi <goffi@goffi.org>
parents:
346
diff
changeset
|
347 |
143
05d602be0120
core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents:
142
diff
changeset
|
348 if key == 27: |
357
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
349 if ((self.host.selected_widget is None |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
350 or self.host.selected_widget.__class__ == self.host.default_class)): |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
351 # we are on root widget, or nothing is selected |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
352 return local_platform.on_key_back_root() |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
353 |
166
37220459e93d
core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
354 # we disable [esc] handling, because default action is to quit app |
143
05d602be0120
core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents:
142
diff
changeset
|
355 return True |
165 | 356 elif key == 292: |
166
37220459e93d
core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
357 # F11: full screen |
165 | 358 if not Window.fullscreen: |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
359 Window.fullscreen = 'auto' |
165 | 360 else: |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
361 Window.fullscreen = False |
165 | 362 return True |
375
ae9059b791fe
core: fixed handling of M-n if other modifier (e.g. numlock) are present
Goffi <goffi@goffi.org>
parents:
373
diff
changeset
|
363 elif key == 110 and 'alt' in modifier: |
172
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
364 # M-n we hide/show notifications |
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
365 head = self.root.head_widget |
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
366 if head.height: |
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
367 Animation(height=0, opacity=0, duration=0.3).start(head) |
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
368 else: |
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
369 Animation(height=head.HEIGHT, opacity=1, duration=0.3).start(head) |
7103655647aa
core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
370 return True |
143
05d602be0120
core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents:
142
diff
changeset
|
371 else: |
05d602be0120
core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents:
142
diff
changeset
|
372 return False |
05d602be0120
core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents:
142
diff
changeset
|
373 |
0 | 374 |
375 class Cagou(QuickApp): | |
376 MB_HANDLE = False | |
265
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
377 AUTO_RESYNC = False |
0 | 378 |
379 def __init__(self): | |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
380 if bridge_name == 'embedded': |
63 | 381 from sat.core import sat_main |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
382 self.sat = sat_main.SAT() |
64
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
383 |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
384 bridge_module = dynamic_import.bridge(bridge_name, 'sat_frontends.bridge') |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
385 if bridge_module is None: |
316
86566968837a
android (p4a): updated P4A option to use Python 3:
Goffi <goffi@goffi.org>
parents:
312
diff
changeset
|
386 log.error(f"Can't import {bridge_name} bridge") |
72
1a324c682d8a
core: use onBridgeConnected and exit code 3 when bridge can't be imported
Goffi <goffi@goffi.org>
parents:
65
diff
changeset
|
387 sys.exit(3) |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
388 else: |
316
86566968837a
android (p4a): updated P4A option to use Python 3:
Goffi <goffi@goffi.org>
parents:
312
diff
changeset
|
389 log.debug(f"Loading {bridge_name} bridge") |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
390 super(Cagou, self).__init__(bridge_factory=bridge_module.Bridge, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
391 xmlui=xmlui, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
392 check_options=quick_utils.check_options, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
393 connect_bridge=False) |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
394 self._import_kv() |
0 | 395 self.app = CagouApp() |
29 | 396 self.app.host = self |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
397 self.media_dir = self.app.media_dir = config.getConfig(main_config, '', |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
398 'media_dir') |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
399 self.downloads_dir = self.app.downloads_dir = config.getConfig(main_config, '', |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
400 'downloads_dir') |
188
0abd24ab81b1
core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents:
184
diff
changeset
|
401 if not os.path.exists(self.downloads_dir): |
0abd24ab81b1
core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents:
184
diff
changeset
|
402 try: |
0abd24ab81b1
core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents:
184
diff
changeset
|
403 os.makedirs(self.downloads_dir) |
0abd24ab81b1
core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents:
184
diff
changeset
|
404 except OSError as e: |
312 | 405 log.warnings(_("Can't create downloads dir: {reason}").format(reason=e)) |
25
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
406 self.app.default_avatar = os.path.join(self.media_dir, "misc/default_avatar.png") |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
407 self.app.icon = os.path.join(self.media_dir, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
408 "icons/muchoslava/png/cagou_profil_bleu_96.png") |
360
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
409 # main widgets plugins |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
410 self._plg_wids = [] |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
411 # transfer widgets plugins |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
412 self._plg_wids_transfer = [] |
14 | 413 self._import_plugins() |
360
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
414 # visible widgets by classes |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
415 self._visible_widgets = {} |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
416 # used to keep track of last selected widget in "main" screen when changing |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
417 # root screen |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
418 self._selected_widget_main = None |
302
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
419 self.backend_version = sat.__version__ # will be replaced by getVersion() |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
420 if C.APP_VERSION.endswith('D'): |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
421 self.version = "{} {}".format( |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
422 C.APP_VERSION, |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
423 sat_utils.getRepositoryData(cagou) |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
424 ) |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
425 else: |
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
426 self.version = C.APP_VERSION |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
427 |
281
ef77423ce500
core: store tls_validation flag in host and use if for file upload.
Goffi <goffi@goffi.org>
parents:
280
diff
changeset
|
428 self.tls_validation = not C.bool(config.getConfig(main_config, |
ef77423ce500
core: store tls_validation flag in host and use if for file upload.
Goffi <goffi@goffi.org>
parents:
280
diff
changeset
|
429 C.CONFIG_SECTION, |
ef77423ce500
core: store tls_validation flag in host and use if for file upload.
Goffi <goffi@goffi.org>
parents:
280
diff
changeset
|
430 'no_certificate_validation', |
ef77423ce500
core: store tls_validation flag in host and use if for file upload.
Goffi <goffi@goffi.org>
parents:
280
diff
changeset
|
431 C.BOOL_FALSE)) |
ef77423ce500
core: store tls_validation flag in host and use if for file upload.
Goffi <goffi@goffi.org>
parents:
280
diff
changeset
|
432 if not self.tls_validation: |
280
b0461363bc65
core: certificate validation can be disabled:
Goffi <goffi@goffi.org>
parents:
276
diff
changeset
|
433 from cagou.core import patches |
b0461363bc65
core: certificate validation can be disabled:
Goffi <goffi@goffi.org>
parents:
276
diff
changeset
|
434 patches.apply() |
312 | 435 log.warning("SSL certificate validation is disabled, this is unsecure!") |
280
b0461363bc65
core: certificate validation can be disabled:
Goffi <goffi@goffi.org>
parents:
276
diff
changeset
|
436 |
342
89799148f894
core: use classes and factory to handle platform specific behaviours in a generic way
Goffi <goffi@goffi.org>
parents:
331
diff
changeset
|
437 local_platform.on_host_init(self) |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
438 |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
439 @property |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
440 def visible_widgets(self): |
312 | 441 for w_list in self._visible_widgets.values(): |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
442 for w in w_list: |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
443 yield w |
0 | 444 |
357
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
445 @property |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
446 def default_class(self): |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
447 if self.default_wid is None: |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
448 return None |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
449 return self.default_wid['main'] |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
450 |
265
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
451 @QuickApp.sync.setter |
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
452 def sync(self, state): |
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
453 QuickApp.sync.fset(self, state) |
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
454 # widget are resynchronised in onVisible event, |
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
455 # so we must call resync for widgets which are already visible |
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
456 if state: |
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
457 for w in self.visible_widgets: |
272
c4990a7d5dbd
core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents:
267
diff
changeset
|
458 try: |
c4990a7d5dbd
core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents:
267
diff
changeset
|
459 resync = w.resync |
c4990a7d5dbd
core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents:
267
diff
changeset
|
460 except AttributeError: |
c4990a7d5dbd
core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents:
267
diff
changeset
|
461 pass |
c4990a7d5dbd
core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents:
267
diff
changeset
|
462 else: |
c4990a7d5dbd
core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents:
267
diff
changeset
|
463 resync() |
291
04e4cd7c9351
core: refill contact lists on resync
Goffi <goffi@goffi.org>
parents:
290
diff
changeset
|
464 self.contact_lists.fill() |
265
805c4103dac5
core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents:
264
diff
changeset
|
465 |
381
eb3f622d8791
android: create/clean a temporary directory on startup:
Goffi <goffi@goffi.org>
parents:
378
diff
changeset
|
466 def getConfig(self, section, name, default=None): |
eb3f622d8791
android: create/clean a temporary directory on startup:
Goffi <goffi@goffi.org>
parents:
378
diff
changeset
|
467 return config.getConfig(main_config, section, name, default) |
eb3f622d8791
android: create/clean a temporary directory on startup:
Goffi <goffi@goffi.org>
parents:
378
diff
changeset
|
468 |
72
1a324c682d8a
core: use onBridgeConnected and exit code 3 when bridge can't be imported
Goffi <goffi@goffi.org>
parents:
65
diff
changeset
|
469 def onBridgeConnected(self): |
189
a91abcd6d9a5
core: call QuickApp.onBridgeConnected (so ns_map is filled)
Goffi <goffi@goffi.org>
parents:
188
diff
changeset
|
470 super(Cagou, self).onBridgeConnected() |
122
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
471 self.registerSignal("otrState", iface="plugin") |
63 | 472 |
64
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
473 def _bridgeEb(self, failure): |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
474 if bridge_name == "pb" and sys.platform == "android": |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
475 try: |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
476 self.retried += 1 |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
477 except AttributeError: |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
478 self.retried = 1 |
317
4b0fa73caad4
core: bridge are now raising generic BridgeExceptionNoService
Goffi <goffi@goffi.org>
parents:
316
diff
changeset
|
479 if ((isinstance(failure, exceptions.BridgeExceptionNoService) |
4b0fa73caad4
core: bridge are now raising generic BridgeExceptionNoService
Goffi <goffi@goffi.org>
parents:
316
diff
changeset
|
480 and self.retried < 100)): |
64
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
481 if self.retried % 20 == 0: |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
482 log.debug("backend not ready, retrying ({})".format(self.retried)) |
284 | 483 Clock.schedule_once(lambda __: self.connectBridge(), 0.05) |
64
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
484 return |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
485 super(Cagou, self)._bridgeEb(failure) |
8e16abcadbb8
core: launch SàT backend as a service on Android and wait for it on pb bridge connection.
Goffi <goffi@goffi.org>
parents:
63
diff
changeset
|
486 |
0 | 487 def run(self): |
63 | 488 self.connectBridge() |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
489 self.app.bind(on_stop=self.onStop) |
0 | 490 self.app.run() |
491 | |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
492 def onStop(self, obj): |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
493 try: |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
494 sat_instance = self.sat |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
495 except AttributeError: |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
496 pass |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
497 else: |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
498 sat_instance.stopService() |
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
499 |
246 | 500 def _getVersionCb(self, version): |
302
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
501 self.backend_version = version |
246 | 502 |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
503 def onBackendReady(self): |
366
58e395c0777e
core: don't call onBackendReady explicitly anymore now that it is handle in QuickApp
Goffi <goffi@goffi.org>
parents:
363
diff
changeset
|
504 super().onBackendReady() |
377
b2a87239af25
android: platform specific menu to disconnect profile:
Goffi <goffi@goffi.org>
parents:
375
diff
changeset
|
505 self.app.showProfileManager() |
246 | 506 self.bridge.getVersion(callback=self._getVersionCb) |
259
4601793b0dee
core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents:
250
diff
changeset
|
507 self.app.initFrontendState() |
370
1a12bbd80943
android: autoconnect profile using the new `profileAutoconnectGet` backend method:
Goffi <goffi@goffi.org>
parents:
366
diff
changeset
|
508 if local_platform.do_postInit(): |
1a12bbd80943
android: autoconnect profile using the new `profileAutoconnectGet` backend method:
Goffi <goffi@goffi.org>
parents:
366
diff
changeset
|
509 self.postInit() |
60
35abe494e6c7
core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents:
52
diff
changeset
|
510 |
284 | 511 def postInit(self, __=None): |
276 | 512 # FIXME: resize doesn't work with SDL2 on android, so we use below_target for now |
61 | 513 self.app.root_window.softinput_mode = "below_target" |
49
fd9cbf6ae663
core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents:
48
diff
changeset
|
514 profile_manager = self.app._profile_manager |
fd9cbf6ae663
core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents:
48
diff
changeset
|
515 del self.app._profile_manager |
fd9cbf6ae663
core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents:
48
diff
changeset
|
516 super(Cagou, self).postInit(profile_manager) |
fd9cbf6ae663
core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents:
48
diff
changeset
|
517 |
388
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
518 def _bookmarksListCb(self, bookmarks_dict, profile): |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
519 bookmarks = set() |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
520 for data in bookmarks_dict.values(): |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
521 bookmarks.update({jid.JID(k) for k in data.keys()}) |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
522 self.profiles[profile]._bookmarks = sorted(bookmarks) |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
523 |
346
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
524 def profilePlugged(self, profile): |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
525 super().profilePlugged(profile) |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
526 # FIXME: this won't work with multiple profiles |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
527 self.app.connected = self.profiles[profile].connected |
388
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
528 self.bridge.bookmarksList( |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
529 "muc", "all", profile, |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
530 callback=partial(self._bookmarksListCb, profile=profile), |
de066b72f5a8
core: cache MUC bookmarks on startup
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
531 errback=partial(self.errback, title=_("Bookmark error"))) |
346
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
532 |
86 | 533 def _defaultFactoryMain(self, plugin_info, target, profiles): |
534 """default factory used to create main widgets instances | |
535 | |
536 used when PLUGIN_INFO["factory"] is not set | |
537 @param plugin_info(dict): plugin datas | |
538 @param target: QuickWidget target | |
539 @param profiles(iterable): list of profiles | |
540 """ | |
14 | 541 main_cls = plugin_info['main'] |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
542 return self.widgets.getOrCreateWidget(main_cls, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
543 target, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
544 on_new_widget=None, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
545 profiles=iter(self.profiles)) |
14 | 546 |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
547 def _defaultFactoryTransfer(self, plugin_info, callback, cancel_cb, profiles): |
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
548 """default factory used to create transfer widgets instances |
86 | 549 |
550 @param plugin_info(dict): plugin datas | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
551 @param callback(callable): method to call with path to file to transfer |
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
552 @param cancel_cb(callable): call when transfer is cancelled |
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
553 transfer widget must be used as first argument |
86 | 554 @param profiles(iterable): list of profiles |
555 None if not specified | |
556 """ | |
557 main_cls = plugin_info['main'] | |
558 return main_cls(callback=callback, cancel_cb=cancel_cb) | |
559 | |
29 | 560 ## plugins & kv import ## |
561 | |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
562 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
|
563 """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
|
564 path = os.path.dirname(cagou.kv.__file__) |
130
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
565 kv_files = glob.glob(os.path.join(path, "*.kv")) |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
566 # we want to be sure that base.kv is loaded first |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
567 # as it override some Kivy widgets properties |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
568 for kv_file in kv_files: |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
569 if kv_file.endswith('base.kv'): |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
570 kv_files.remove(kv_file) |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
571 kv_files.insert(0, kv_file) |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
572 break |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
573 else: |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
574 raise exceptions.InternalError("base.kv is missing") |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
575 |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
576 for kv_file in kv_files: |
0ec3c3c0ed92
core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
577 Builder.load_file(kv_file) |
316
86566968837a
android (p4a): updated P4A option to use Python 3:
Goffi <goffi@goffi.org>
parents:
312
diff
changeset
|
578 log.debug(f"kv file {kv_file} loaded") |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
579 |
14 | 580 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
|
581 """import all plugins""" |
14 | 582 self.default_wid = None |
87
17094a075fd2
core: use C.PLUGIN_EXT to know which plugin extension to use
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
583 plugins_path = os.path.dirname(cagou.plugins.__file__) |
312 | 584 plugin_glob = "plugin*." + C.PLUGIN_EXT |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
585 plug_lst = [os.path.splitext(p)[0] for p in |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
586 map(os.path.basename, glob.glob(os.path.join(plugins_path, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
587 plugin_glob)))] |
61 | 588 |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
589 imported_names_main = set() # used to avoid loading 2 times |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
590 # plugin with same import name |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
591 imported_names_transfer = set() |
14 | 592 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
|
593 plugin_path = 'cagou.plugins.' + plug |
86 | 594 |
595 # we get type from plugin name | |
596 suff = plug[7:] | |
312 | 597 if '_' not in suff: |
598 log.error("invalid plugin name: {}, skipping".format(plug)) | |
86 | 599 continue |
312 | 600 plugin_type = suff[:suff.find('_')] |
86 | 601 |
602 # and select the variable to use according to type | |
603 if plugin_type == C.PLUG_TYPE_WID: | |
604 imported_names = imported_names_main | |
605 default_factory = self._defaultFactoryMain | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
606 elif plugin_type == C.PLUG_TYPE_TRANSFER: |
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
607 imported_names = imported_names_transfer |
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
608 default_factory = self._defaultFactoryTransfer |
86 | 609 else: |
312 | 610 log.error("unknown plugin type {type_} for plugin {file_}, skipping" |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
611 .format( |
86 | 612 type_ = plugin_type, |
613 file_ = plug | |
614 )) | |
615 continue | |
616 plugins_set = self._getPluginsSet(plugin_type) | |
617 | |
15
56838ad5c84b
files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
618 mod = import_module(plugin_path) |
14 | 619 try: |
620 plugin_info = mod.PLUGIN_INFO | |
621 except AttributeError: | |
622 plugin_info = {} | |
623 | |
86 | 624 plugin_info['plugin_file'] = plug |
625 plugin_info['plugin_type'] = plugin_type | |
626 | |
627 if 'platforms' in plugin_info: | |
628 if sys.platform not in plugin_info['platforms']: | |
312 | 629 log.info("{plugin_file} is not used on this platform, skipping" |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
630 .format(**plugin_info)) |
86 | 631 continue |
632 | |
14 | 633 # import name is used to differentiate plugins |
634 if 'import_name' not in plugin_info: | |
635 plugin_info['import_name'] = plug | |
86 | 636 if plugin_info['import_name'] in imported_names: |
312 | 637 log.warning(_("there is already a plugin named {}, " |
638 "ignoring new one").format(plugin_info['import_name'])) | |
14 | 639 continue |
640 if plugin_info['import_name'] == C.WID_SELECTOR: | |
86 | 641 if plugin_type != C.PLUG_TYPE_WID: |
312 | 642 log.error("{import_name} import name can only be used with {type_} " |
643 "type, skipping {name}".format(type_=C.PLUG_TYPE_WID, | |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
644 **plugin_info)) |
86 | 645 continue |
14 | 646 # if WidgetSelector exists, it will be our default widget |
647 self.default_wid = plugin_info | |
648 | |
649 # we want everything optional, so we use plugin file name | |
650 # if actual name is not found | |
651 if 'name' not in plugin_info: | |
86 | 652 name_start = 8 + len(plugin_type) |
653 plugin_info['name'] = plug[name_start:] | |
14 | 654 |
655 # we need to load the kv file | |
656 if 'kv_file' not in plugin_info: | |
312 | 657 plugin_info['kv_file'] = '{}.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
|
658 kv_path = os.path.join(plugins_path, plugin_info['kv_file']) |
89
d249df379fa3
core: kv files are not mandatory anymore for plugins
Goffi <goffi@goffi.org>
parents:
87
diff
changeset
|
659 if not os.path.exists(kv_path): |
312 | 660 log.debug("no kv found for {plugin_file}".format(**plugin_info)) |
89
d249df379fa3
core: kv files are not mandatory anymore for plugins
Goffi <goffi@goffi.org>
parents:
87
diff
changeset
|
661 else: |
d249df379fa3
core: kv files are not mandatory anymore for plugins
Goffi <goffi@goffi.org>
parents:
87
diff
changeset
|
662 Builder.load_file(kv_path) |
14 | 663 |
664 # what is the main class ? | |
665 main_cls = getattr(mod, plugin_info['main']) | |
666 plugin_info['main'] = main_cls | |
667 | |
668 # factory is used to create the instance | |
669 # if not found, we use a defaut one with getOrCreateWidget | |
670 if 'factory' not in plugin_info: | |
86 | 671 plugin_info['factory'] = default_factory |
14 | 672 |
25
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
673 # icons |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
674 for size in ('small', 'medium'): |
312 | 675 key = 'icon_{}'.format(size) |
25
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
676 try: |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
677 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
|
678 except KeyError: |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
679 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
|
680 else: |
d09bd16dbbe2
code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents:
19
diff
changeset
|
681 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
|
682 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
|
683 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
|
684 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
|
685 |
86 | 686 plugins_set.append(plugin_info) |
14 | 687 if not self._plg_wids: |
312 | 688 log.error(_("no widget plugin found")) |
14 | 689 return |
690 | |
691 # we want widgets sorted by names | |
692 self._plg_wids.sort(key=lambda p: p['name'].lower()) | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
693 self._plg_wids_transfer.sort(key=lambda p: p['name'].lower()) |
14 | 694 |
695 if self.default_wid is None: | |
696 # we have no selector widget, we use the first widget as default | |
697 self.default_wid = self._plg_wids[0] | |
698 | |
86 | 699 def _getPluginsSet(self, type_): |
700 if type_ == C.PLUG_TYPE_WID: | |
701 return self._plg_wids | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
702 elif type_ == C.PLUG_TYPE_TRANSFER: |
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
91
diff
changeset
|
703 return self._plg_wids_transfer |
86 | 704 else: |
312 | 705 raise KeyError("{} plugin type is unknown".format(type_)) |
86 | 706 |
707 def getPluggedWidgets(self, type_=C.PLUG_TYPE_WID, except_cls=None): | |
14 | 708 """get available widgets plugin infos |
709 | |
86 | 710 @param type_(unicode): type of widgets to get |
711 one of C.PLUG_TYPE_* constant | |
14 | 712 @param except_cls(None, class): if not None, |
713 widgets from this class will be excluded | |
41
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
714 @return (iter[dict]): available widgets plugin infos |
14 | 715 """ |
86 | 716 plugins_set = self._getPluginsSet(type_) |
717 for plugin_data in plugins_set: | |
19
c58b522607f4
main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
718 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
|
719 continue |
c58b522607f4
main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
720 yield plugin_data |
14 | 721 |
86 | 722 def getPluginInfo(self, type_=C.PLUG_TYPE_WID, **kwargs): |
41
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
723 """get first plugin info corresponding to filters |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
724 |
86 | 725 @param type_(unicode): type of widgets to get |
726 one of C.PLUG_TYPE_* constant | |
41
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
727 @param **kwargs: filter(s) to use, each key present here must also |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
728 exist and be of the same value in requested plugin info |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
729 @return (dict, None): found plugin info or None |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
730 """ |
86 | 731 plugins_set = self._getPluginsSet(type_) |
732 for plugin_info in plugins_set: | |
312 | 733 for k, w in kwargs.items(): |
41
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
734 try: |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
735 if plugin_info[k] != w: |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
736 continue |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
737 except KeyError: |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
738 continue |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
739 return plugin_info |
7cac2d1a6f20
core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents:
40
diff
changeset
|
740 |
29 | 741 ## widgets handling |
9 | 742 |
43
12fdc7d1feb1
core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
743 def newWidget(self, widget): |
312 | 744 log.debug("new widget created: {}".format(widget)) |
43
12fdc7d1feb1
core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
745 if isinstance(widget, quick_chat.QuickChat) and widget.type == C.CHAT_GROUP: |
312 | 746 self.addNote("", _("room {} has been joined").format(widget.target)) |
43
12fdc7d1feb1
core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
747 |
350
1ac40d3121f6
core (Cagou): "new" arg can be None in switchWidget, in which case default widget is used.
Goffi <goffi@goffi.org>
parents:
349
diff
changeset
|
748 def switchWidget(self, old, new=None): |
11
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
749 """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
|
750 |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
751 @param old(CagouWidget, None): CagouWidget instance or a child |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
752 None to select automatically widget to switch |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
753 @param new(CagouWidget): new widget instance |
350
1ac40d3121f6
core (Cagou): "new" arg can be None in switchWidget, in which case default widget is used.
Goffi <goffi@goffi.org>
parents:
349
diff
changeset
|
754 None to use default widget |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
755 @return (CagouWidget): new widget |
11
49d30fc15884
core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
756 """ |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
757 if old is None: |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
758 old = self.getWidgetToSwitch() |
350
1ac40d3121f6
core (Cagou): "new" arg can be None in switchWidget, in which case default widget is used.
Goffi <goffi@goffi.org>
parents:
349
diff
changeset
|
759 if new is None: |
1ac40d3121f6
core (Cagou): "new" arg can be None in switchWidget, in which case default widget is used.
Goffi <goffi@goffi.org>
parents:
349
diff
changeset
|
760 factory = self.default_wid['factory'] |
358
8efed1d47d9f
core: don't crash when a widget without profiles switch to default widget
Goffi <goffi@goffi.org>
parents:
357
diff
changeset
|
761 try: |
8efed1d47d9f
core: don't crash when a widget without profiles switch to default widget
Goffi <goffi@goffi.org>
parents:
357
diff
changeset
|
762 profiles = old.profiles |
8efed1d47d9f
core: don't crash when a widget without profiles switch to default widget
Goffi <goffi@goffi.org>
parents:
357
diff
changeset
|
763 except AttributeError: |
8efed1d47d9f
core: don't crash when a widget without profiles switch to default widget
Goffi <goffi@goffi.org>
parents:
357
diff
changeset
|
764 profiles = None |
8efed1d47d9f
core: don't crash when a widget without profiles switch to default widget
Goffi <goffi@goffi.org>
parents:
357
diff
changeset
|
765 new = factory(self.default_wid, None, profiles=profiles) |
14 | 766 to_change = None |
767 if isinstance(old, CagouWidget): | |
768 to_change = old | |
769 else: | |
770 for w in old.walk_reverse(): | |
771 if isinstance(w, CagouWidget): | |
772 to_change = w | |
773 break | |
774 | |
775 if to_change is None: | |
312 | 776 raise exceptions.InternalError("no CagouWidget found when " |
777 "trying to switch widget") | |
154 | 778 |
357
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
779 # selected_widget can be modified in changeWidget, so we need to set it before |
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
780 self.selected_widget = new |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
781 to_change.whwrapper.changeWidget(new) |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
782 return new |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
783 |
248
b6e33b35538b
core, widgets handler: visible_widgets now keep all CagouWidgets, not only QuickWidgets. visible_quick_widgets can be used if only QuickWidgets are desired.
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
784 def _addVisibleWidget(self, widget): |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
785 """declare a widget visible |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
786 |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
787 for internal use only! |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
788 """ |
248
b6e33b35538b
core, widgets handler: visible_widgets now keep all CagouWidgets, not only QuickWidgets. visible_quick_widgets can be used if only QuickWidgets are desired.
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
789 assert isinstance(widget, CagouWidget) |
352
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
790 log.debug(f"Visible widget: {widget}") |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
791 self._visible_widgets.setdefault(widget.__class__, set()).add(widget) |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
792 log.debug(f"visible widgets list: {self.getVisibleList(None)}") |
264
3e11b5d923e2
core: call new methods onVisible and onNotVisible when a widget is displayed or hidden + fixed a deletion bug on _removeVisibleWidget
Goffi <goffi@goffi.org>
parents:
262
diff
changeset
|
793 widget.onVisible() |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
794 |
352
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
795 def _removeVisibleWidget(self, widget, ignore_missing=False): |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
796 """declare a widget not visible anymore |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
797 |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
798 for internal use only! |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
799 """ |
352
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
800 log.debug(f"Widget not visible anymore: {widget}") |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
801 try: |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
802 self._visible_widgets[widget.__class__].remove(widget) |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
803 except KeyError as e: |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
804 if not ignore_missing: |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
805 log.error(f"trying to remove a not visible widget ({widget}): {e}") |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
806 return |
434f770fe55b
core (Cagou): add debug log for widget visibility + ignore_missing:
Goffi <goffi@goffi.org>
parents:
351
diff
changeset
|
807 log.debug(f"visible widgets list: {self.getVisibleList(None)}") |
264
3e11b5d923e2
core: call new methods onVisible and onNotVisible when a widget is displayed or hidden + fixed a deletion bug on _removeVisibleWidget
Goffi <goffi@goffi.org>
parents:
262
diff
changeset
|
808 if isinstance(widget, CagouWidget): |
3e11b5d923e2
core: call new methods onVisible and onNotVisible when a widget is displayed or hidden + fixed a deletion bug on _removeVisibleWidget
Goffi <goffi@goffi.org>
parents:
262
diff
changeset
|
809 widget.onNotVisible() |
3e11b5d923e2
core: call new methods onVisible and onNotVisible when a widget is displayed or hidden + fixed a deletion bug on _removeVisibleWidget
Goffi <goffi@goffi.org>
parents:
262
diff
changeset
|
810 if isinstance(widget, quick_widgets.QuickWidget): |
248
b6e33b35538b
core, widgets handler: visible_widgets now keep all CagouWidgets, not only QuickWidgets. visible_quick_widgets can be used if only QuickWidgets are desired.
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
811 self.widgets.deleteWidget(widget) |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
812 |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
813 def getVisibleList(self, cls): |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
814 """get list of visible widgets for a given class |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
815 |
248
b6e33b35538b
core, widgets handler: visible_widgets now keep all CagouWidgets, not only QuickWidgets. visible_quick_widgets can be used if only QuickWidgets are desired.
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
816 @param cls(type): type of widgets to get |
351
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
817 None to get all visible widgets |
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
818 @return (set[type]): visible widgets of this class |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
819 """ |
351
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
820 if cls is None: |
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
821 ret = set() |
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
822 for widgets in self._visible_widgets.values(): |
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
823 for w in widgets: |
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
824 ret.add(w) |
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
825 return ret |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
826 try: |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
827 return self._visible_widgets[cls] |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
828 except KeyError: |
351
e9d3c3793f94
core (Cagou): "None" can be used in getVisibleList's cls to get all visible widgets
Goffi <goffi@goffi.org>
parents:
350
diff
changeset
|
829 return set() |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
830 |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
831 def deleteUnusedWidgetInstances(self, widget): |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
832 """Delete instance of this widget which are not attached to a WHWrapper |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
833 |
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
834 @param widget(quick_widgets.QuickWidget): reference widget |
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
835 other instance of this widget will be deleted if they have no parent |
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
836 """ |
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
837 to_delete = [] |
267
896f78760b63
core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents:
266
diff
changeset
|
838 if isinstance(widget, quick_widgets.QuickWidget): |
896f78760b63
core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents:
266
diff
changeset
|
839 for w in self.widgets.getWidgetInstances(widget): |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
840 if w.whwrapper is None and w != widget: |
267
896f78760b63
core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents:
266
diff
changeset
|
841 to_delete.append(w) |
896f78760b63
core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents:
266
diff
changeset
|
842 for w in to_delete: |
312 | 843 log.debug("cleaning widget: {wid}".format(wid=w)) |
267
896f78760b63
core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents:
266
diff
changeset
|
844 self.widgets.deleteWidget(w) |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
845 |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
846 def getOrClone(self, widget, **kwargs): |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
847 """Get a QuickWidget if it is not in a WHWrapper, else clone it |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
848 |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
849 if an other instance of this widget exist without being in a WHWrapper |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
850 (i.e. if it is not already in use) it will be used. |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
851 """ |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
852 if widget.whwrapper is None: |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
853 if widget.parent is not None: |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
854 widget.parent.remove_widget(widget) |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
855 self.deleteUnusedWidgetInstances(widget) |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
856 return widget |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
857 for w in self.widgets.getWidgetInstances(widget): |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
858 if w.whwrapper is None: |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
859 if w.parent is not None: |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
860 w.parent.remove_widget(w) |
260
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
861 self.deleteUnusedWidgetInstances(w) |
145c29b5f2b5
core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents:
259
diff
changeset
|
862 return w |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
863 targets = list(widget.targets) |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
864 w = self.widgets.getOrCreateWidget(widget.__class__, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
865 targets[0], |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
866 on_new_widget=None, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
867 on_existing_widget=C.WIDGET_RECREATE, |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
868 profiles=widget.profiles, |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
869 **kwargs) |
38
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
870 for t in targets[1:]: |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
871 w.addTarget(t) |
9f45098289cc
widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents:
34
diff
changeset
|
872 return w |
29 | 873 |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
874 def getWidgetToSwitch(self): |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
875 """Choose best candidate when we need to switch widget and old is not specified |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
876 |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
877 @return (CagouWidget): widget to switch |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
878 """ |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
879 if (self._selected_widget_main is not None |
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
880 and self._selected_widget_main.whwrapper is not None): |
363
816a0c880f52
core: use selected widget from main screen in getWidgetToSwitch:
Goffi <goffi@goffi.org>
parents:
360
diff
changeset
|
881 # we are not on the main screen, we want to switch a widget from main screen |
816a0c880f52
core: use selected widget from main screen in getWidgetToSwitch:
Goffi <goffi@goffi.org>
parents:
360
diff
changeset
|
882 return self._selected_widget_main |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
883 elif (self.selected_widget is not None |
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
884 and isinstance(self.selected_widget, CagouWidget) |
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
885 and self.selected_widget.whwrapper is not None): |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
886 return self.selected_widget |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
887 # no widget is selected we check if we have any default widget |
357
4d3a0c4f2430
core: better back key (ESC) management:
Goffi <goffi@goffi.org>
parents:
356
diff
changeset
|
888 default_cls = self.default_class |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
889 for w in self.visible_widgets: |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
890 if isinstance(w, default_cls): |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
891 return w |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
892 |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
893 # no default widget found, we return the first widget |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
894 return next(iter(self.visible_widgets)) |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
895 |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
896 def doAction(self, action, target, profiles): |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
897 """Launch an action handler by a plugin |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
898 |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
899 @param action(unicode): action to do, can be: |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
900 - chat: open a chat widget |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
901 @param target(unicode): target of the action |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
902 @param profiles(list[unicode]): profiles to use |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
903 @return (CagouWidget, None): new widget |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
904 """ |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
905 try: |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
906 # FIXME: Q&D way to get chat plugin, should be replaced by a clean method |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
907 # in host |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
908 plg_infos = [p for p in self.getPluggedWidgets() |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
909 if action in p['import_name']][0] |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
910 except IndexError: |
312 | 911 log.warning("No plugin widget found to do {action}".format(action=action)) |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
912 else: |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
913 factory = plg_infos['factory'] |
385
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
914 return self.switchWidget( |
6dacaf81339a
core: return newly switched widget in switchWidget and doAction
Goffi <goffi@goffi.org>
parents:
381
diff
changeset
|
915 None, |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
916 factory(plg_infos, target=target, profiles=profiles)) |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
917 |
122
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
918 ## bridge handlers ## |
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
919 |
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
920 def otrStateHandler(self, state, dest_jid, profile): |
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
921 """OTR state has changed for on destinee""" |
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
922 # XXX: this method could be in QuickApp but it's here as |
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
923 # it's only used by Cagou so far |
244
5bd94bc08f5c
plugin chat: fixed OTR State filtering + removed some legacy code
Goffi <goffi@goffi.org>
parents:
240
diff
changeset
|
924 dest_jid = jid.JID(dest_jid) |
5bd94bc08f5c
plugin chat: fixed OTR State filtering + removed some legacy code
Goffi <goffi@goffi.org>
parents:
240
diff
changeset
|
925 bare_jid = dest_jid.bare |
122
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
926 for widget in self.widgets.getWidgets(quick_chat.QuickChat, profiles=(profile,)): |
244
5bd94bc08f5c
plugin chat: fixed OTR State filtering + removed some legacy code
Goffi <goffi@goffi.org>
parents:
240
diff
changeset
|
927 if widget.type == C.CHAT_ONE2ONE and widget.target == bare_jid: |
5bd94bc08f5c
plugin chat: fixed OTR State filtering + removed some legacy code
Goffi <goffi@goffi.org>
parents:
240
diff
changeset
|
928 widget.onOTRState(state, dest_jid, profile) |
122
dcd6fbb3f010
chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
929 |
266
b3f97729e983
core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents:
265
diff
changeset
|
930 def _debugHandler(self, action, parameters, profile): |
312 | 931 if action == "visible_widgets_dump": |
266
b3f97729e983
core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents:
265
diff
changeset
|
932 from pprint import pformat |
312 | 933 log.info("Visible widgets dump:\n{data}".format( |
266
b3f97729e983
core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents:
265
diff
changeset
|
934 data=pformat(self._visible_widgets))) |
b3f97729e983
core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents:
265
diff
changeset
|
935 else: |
b3f97729e983
core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents:
265
diff
changeset
|
936 return super(Cagou, self)._debugHandler(action, parameters, profile) |
b3f97729e983
core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents:
265
diff
changeset
|
937 |
346
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
938 def connectedHandler(self, jid_s, profile): |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
939 # FIXME: this won't work with multiple profiles |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
940 super().connectedHandler(jid_s, profile) |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
941 self.app.connected = True |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
942 |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
943 def disconnectedHandler(self, profile): |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
944 # FIXME: this won't work with multiple profiles |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
945 super().disconnectedHandler(profile) |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
946 self.app.connected = False |
7b9a0e57df53
core: new "connected" property in CagouApp
Goffi <goffi@goffi.org>
parents:
342
diff
changeset
|
947 |
29 | 948 ## misc ## |
949 | |
950 def plugging_profiles(self): | |
356
307c2501d8b2
chat: keep as many instances of opened chat as there are active WHWrapper, instead of just one:
Goffi <goffi@goffi.org>
parents:
353
diff
changeset
|
951 self.widgets_handler = widgets_handler.WidgetsHandler() |
307c2501d8b2
chat: keep as many instances of opened chat as there are active WHWrapper, instead of just one:
Goffi <goffi@goffi.org>
parents:
353
diff
changeset
|
952 self.app.root.changeWidget(self.widgets_handler) |
29 | 953 |
954 def setPresenceStatus(self, show='', status=None, profile=C.PROF_KEY_NONE): | |
312 | 955 log.info("Profile presence status set to {show}/{status}".format(show=show, |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
956 status=status)) |
29 | 957 |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
958 def errback(self, failure_, title=_('error'), |
312 | 959 message=_('error while processing: {msg}')): |
190
33ac2d2ce5d7
core: new errback method which can be use as a generic way to show error as notes
Goffi <goffi@goffi.org>
parents:
189
diff
changeset
|
960 self.addNote(title, message.format(msg=failure_), level=C.XMLUI_DATA_LVL_WARNING) |
33ac2d2ce5d7
core: new errback method which can be use as a generic way to show error as notes
Goffi <goffi@goffi.org>
parents:
189
diff
changeset
|
961 |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
962 def addNote(self, title, message, level=C.XMLUI_DATA_LVL_INFO, symbol=None, |
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
963 action=None): |
29 | 964 """add a note (message which disappear) to root widget's header""" |
250
ff1efdeff53f
core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents:
249
diff
changeset
|
965 self.app.root.addNote(title, message, level, symbol, action) |
29 | 966 |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
967 def addNotifUI(self, ui): |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
968 """add a notification with a XMLUI attached |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
969 |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
970 @param ui(xmlui.XMLUIPanel): XMLUI instance to show when notification is selected |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
971 """ |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
972 self.app.root.addNotifUI(ui) |
29 | 973 |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
974 def addNotifWidget(self, widget): |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
975 """add a notification with a Kivy widget attached |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
976 |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
977 @param widget(kivy.uix.Widget): widget to attach to notification |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
978 """ |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
979 self.app.root.addNotifWidget(widget) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
980 |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
981 def showUI(self, ui): |
78 | 982 """show a XMLUI""" |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
983 self.app.root.changeWidget(ui, "xmlui") |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
984 self.app.root.show("xmlui") |
360
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
985 self._selected_widget_main = self.selected_widget |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
986 self.selected_widget = ui |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
987 |
78 | 988 def showExtraUI(self, widget): |
989 """show any extra widget""" | |
990 self.app.root.changeWidget(widget, "extra") | |
991 self.app.root.show("extra") | |
360
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
992 self._selected_widget_main = self.selected_widget |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
993 self.selected_widget = widget |
78 | 994 |
33
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
995 def closeUI(self): |
c21d1be2e54c
core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents:
32
diff
changeset
|
996 self.app.root.show() |
360
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
997 self.selected_widget = self._selected_widget_main |
a77386b73e55
core: change selected_widget when root screen widget is changed
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
998 self._selected_widget_main = None |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
999 screen = self.app.root._manager.get_screen("extra") |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1000 screen.clear_widgets() |
44
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
43
diff
changeset
|
1001 |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
43
diff
changeset
|
1002 def getDefaultAvatar(self, entity=None): |
7819e9efa250
chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents:
43
diff
changeset
|
1003 return self.app.default_avatar |
61 | 1004 |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1005 def _dialog_cb(self, cb, *args, **kwargs): |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1006 """generic dialog callback |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1007 |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1008 close dialog then call the callback with given arguments |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1009 """ |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1010 def callback(): |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1011 self.closeUI() |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1012 cb(*args, **kwargs) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1013 return callback |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1014 |
61 | 1015 def showDialog(self, message, title, type="info", answer_cb=None, answer_data=None): |
220
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1016 if type in ('info', 'warning', 'error'): |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1017 self.addNote(title, message, type) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1018 elif type == "yes/no": |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1019 wid = dialog.ConfirmDialog(title=title, message=message, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1020 yes_cb=self._dialog_cb(answer_cb, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1021 True, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1022 answer_data), |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1023 no_cb=self._dialog_cb(answer_cb, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1024 False, |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1025 answer_data) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1026 ) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1027 self.addNotifWidget(wid) |
24f8ab7c08be
core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents:
208
diff
changeset
|
1028 else: |
312 | 1029 log.warning(_("unknown dialog type: {dialog_type}").format(dialog_type=type)) |
184
c63922860f80
chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents:
176
diff
changeset
|
1030 |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1031 def share(self, media_type, data): |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1032 share_wid = ShareWidget(media_type=media_type, data=data) |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1033 try: |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1034 self.showExtraUI(share_wid) |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1035 except Exception as e: |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1036 log.error(e) |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1037 self.closeUI() |
184
c63922860f80
chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents:
176
diff
changeset
|
1038 |
312 | 1039 def desktop_notif(self, message, title='', duration=5000): |
1040 global notification | |
184
c63922860f80
chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents:
176
diff
changeset
|
1041 if notification is not None: |
229
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1042 try: |
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1043 notification.notify(title=title, |
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1044 message=message, |
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1045 app_name=C.APP_NAME, |
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1046 app_icon=self.app.icon, |
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1047 timeout = duration) |
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1048 except Exception as e: |
312 | 1049 log.warning(_("Can't use notifications, disabling: {msg}").format( |
229
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1050 msg = e)) |
ab523cc967bb
core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents:
228
diff
changeset
|
1051 notification = None |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1052 |
353
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1053 def getParentWHWrapper(self, wid): |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1054 """Retrieve parent WHWrapper instance managing a widget |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1055 |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1056 @param wid(Widget): widget to check |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1057 @return (WHWrapper, None): found instance if any, else None |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1058 """ |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1059 wh = self.getAncestorWidget(wid, widgets_handler.WHWrapper) |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1060 if wh is None: |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1061 # we may have a screen |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1062 try: |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1063 sm = wid.screen_manager |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1064 except (exceptions.InternalError, exceptions.NotFound): |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1065 return None |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1066 else: |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1067 wh = self.getAncestorWidget(sm, widgets_handler.WHWrapper) |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1068 return wh |
19422bbd9c8e
core (widgets handler): refactoring:
Goffi <goffi@goffi.org>
parents:
352
diff
changeset
|
1069 |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1070 def getAncestorWidget(self, wid, cls): |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1071 """Retrieve an ancestor of given class |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1072 |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1073 @param wid(Widget): current widget |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1074 @param cls(type): class of the ancestor to retrieve |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1075 @return (Widget, None): found instance or None |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1076 """ |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1077 parent = wid.parent |
331
d36040493434
core: fixed handling of classes with multiple inheritances in getAncestorWidget
Goffi <goffi@goffi.org>
parents:
323
diff
changeset
|
1078 while parent and not isinstance(parent, cls): |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1079 parent = parent.parent |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
318
diff
changeset
|
1080 return parent |