annotate cagou/core/cagou_main.py @ 272:c4990a7d5dbd

core: check if resync exist in widget before calling it
author Goffi <goffi@goffi.org>
date Wed, 20 Mar 2019 09:29:44 +0100
parents 896f78760b63
children 7d5297984191
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
85649eca9f9b core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents: 0
diff changeset
1 #!/usr//bin/env python2
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
3
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
4 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client
126
cd99f70ea592 global file reorganisation:
Goffi <goffi@goffi.org>
parents: 122
diff changeset
5 # Copyright (C) 2016-2018 Jérôme Poisson (goffi@goffi.org)
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
6
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
7 # This program is free software: you can redistribute it and/or modify
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
8 # it under the terms of the GNU Affero General Public License as published by
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
10 # (at your option) any later version.
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
11
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
12 # This program is distributed in the hope that it will be useful,
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
15 # GNU Affero General Public License for more details.
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
16
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
17 # You should have received a copy of the GNU Affero General Public License
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
19
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
20
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
21 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
22 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
23 kivy_hack.do_hack()
6
85649eca9f9b core (logs): integrate Kivy logs with SàT:
Goffi <goffi@goffi.org>
parents: 0
diff changeset
24 from constants import Const as C
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
25 from sat.core import log as logging
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
26 log = logging.getLogger(__name__)
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
27 from sat.core import exceptions
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
28 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
29 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
30 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
31 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
32 from sat_frontends.tools import jid
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
33 from sat.tools import config
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
34 from sat.tools.common import dynamic_import
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
35 import kivy
142
d276cfec38e8 core: kivy require is now 1.10.0
Goffi <goffi@goffi.org>
parents: 141
diff changeset
36 kivy.require('1.10.0')
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
37 import kivy.support
63
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
38 main_config = config.parseMainConf()
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
39 bridge_name = config.getConfig(main_config, '', 'bridge', 'dbus')
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
40 # FIXME: event loop is choosen according to bridge_name, a better way should be used
63
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
41 if 'dbus' in bridge_name:
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
42 kivy.support.install_gobject_iteration()
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
43 elif bridge_name in ('pb', 'embedded'):
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
44 kivy.support.install_twisted_reactor()
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
45 from kivy.app import App
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
46 from kivy.lang import Builder
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
47 from kivy import properties
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
48 import xmlui
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
49 from profile_manager import ProfileManager
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
50 from kivy.clock import Clock
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
51 from kivy.uix.label import Label
9
7b0a53d2afd3 contact list: first draft
Goffi <goffi@goffi.org>
parents: 6
diff changeset
52 from kivy.uix.boxlayout import BoxLayout
85
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
53 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
54 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
55 FallOutTransition, RiseInTransition)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
56 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
57 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
58 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
59 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
60 from kivy.metrics import dp
11
49d30fc15884 core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents: 9
diff changeset
61 from cagou_widget import CagouWidget
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
62 from . import widgets_handler
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
63 from .common import IconButton
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
64 from . import menu
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
65 from . import dialog
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
66 from importlib import import_module
9
7b0a53d2afd3 contact list: first draft
Goffi <goffi@goffi.org>
parents: 6
diff changeset
67 import os.path
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
68 import glob
15
56838ad5c84b files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents: 14
diff changeset
69 import cagou.plugins
56838ad5c84b files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents: 14
diff changeset
70 import cagou.kv
61
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
71 from kivy import utils as kivy_utils
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
72 import sys
184
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
73 try:
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
74 from plyer import notification
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
75 except ImportError:
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
76 notification = None
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
77 log.warning(_(u"Can't import plyer, some features disabled"))
131
36fc269e2a32 core: changed default background color to white
Goffi <goffi@goffi.org>
parents: 130
diff changeset
78
259
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
79 if kivy_utils.platform == "android":
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
80 import socket
131
36fc269e2a32 core: changed default background color to white
Goffi <goffi@goffi.org>
parents: 130
diff changeset
81
36fc269e2a32 core: changed default background color to white
Goffi <goffi@goffi.org>
parents: 130
diff changeset
82
61
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
83 # FIXME: move to separate android module
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
84 # sys.platform is "linux" on android by default
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
85 # so we change it to allow backend to detect android
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
86 sys.platform = "android"
87
17094a075fd2 core: use C.PLUGIN_EXT to know which plugin extension to use
Goffi <goffi@goffi.org>
parents: 86
diff changeset
87 C.PLUGIN_EXT = 'pyo'
259
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
88 SOCKET_DIR = "/data/data/org.salutatoi.cagou/"
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
89 SOCKET_FILE = ".socket"
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
90 STATE_RUNNING = "running"
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
91 STATE_PAUSED = "paused"
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
92 STATE_STOPPED = "stopped"
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
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
95 # 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
96 Window.clearcolor = (1, 1, 1, 1)
9
7b0a53d2afd3 contact list: first draft
Goffi <goffi@goffi.org>
parents: 6
diff changeset
97
7b0a53d2afd3 contact list: first draft
Goffi <goffi@goffi.org>
parents: 6
diff changeset
98
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
99 class NotifsIcon(IconButton):
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
100 notifs = properties.ListProperty()
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
101
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
102 def on_release(self):
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
103 callback, args, kwargs = self.notifs.pop(0)
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
104 callback(*args, **kwargs)
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
105
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
106 def addNotif(self, callback, *args, **kwargs):
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
107 self.notifs.append((callback, args, kwargs))
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
108
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
109
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
110 class Note(Label):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
111 title = properties.StringProperty()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
112 message = properties.StringProperty()
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
113 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
114 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
115 symbol = properties.StringProperty()
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
116 action = properties.ObjectProperty()
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
117
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
118
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
119 class NoteDrop(ButtonBehavior, BoxLayout):
208
c5c1dd7f88e1 root widget: improved notes:
Goffi <goffi@goffi.org>
parents: 190
diff changeset
120 title = properties.StringProperty()
c5c1dd7f88e1 root widget: improved notes:
Goffi <goffi@goffi.org>
parents: 190
diff changeset
121 message = properties.StringProperty()
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
122 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
123 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
124 symbol = properties.StringProperty()
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
125 action = properties.ObjectProperty()
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
126
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
127 def on_press(self):
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
128 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
129 self.parent.parent.select(self.action)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
130
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
131
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
132 class NotesDrop(DropDown):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
133 clear_btn = properties.ObjectProperty()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
134
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
135 def __init__(self, notes):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
136 super(NotesDrop, self).__init__()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
137 self.notes = notes
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
138
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
139 def open(self, widget):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
140 self.clear_widgets()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
141 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
142 kwargs = {
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
143 u'title': n.title,
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
144 u'message': n.message,
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
145 u'level': n.level
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
146 }
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
147 if n.symbol is not None:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
148 kwargs[u'symbol'] = n.symbol
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
149 if n.action is not None:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
150 kwargs[u'action'] = n.action
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
151 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
152 symbol=n.symbol, action=n.action))
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
153 self.add_widget(self.clear_btn)
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
154 super(NotesDrop, self).open(widget)
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
155
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
156 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
157 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
158 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
159
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
160
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
161 class RootHeadWidget(BoxLayout):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
162 """Notifications widget"""
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
163 manager = properties.ObjectProperty()
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
164 notifs_icon = properties.ObjectProperty()
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
165 notes = properties.ListProperty()
172
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
166 HEIGHT = dp(35)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
167
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
168 def __init__(self):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
169 super(RootHeadWidget, self).__init__()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
170 self.notes_last = None
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
171 self.notes_event = None
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
172 self.notes_drop = NotesDrop(self.notes)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
173
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
174 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
175 """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
176
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
177 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
178 @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
179 """
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
180 self.notifs_icon.addNotif(callback, *args, **kwargs)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
181
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
182 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
183 kwargs = {
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
184 u'title': title,
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
185 u'message': message,
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
186 u'level': level
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
187 }
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
188 if symbol is not None:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
189 kwargs[u'symbol'] = symbol
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
190 if action is not None:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
191 kwargs[u'action'] = action
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
192 note = Note(**kwargs)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
193 self.notes.append(note)
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
194 if self.notes_event is None:
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
195 self.notes_event = Clock.schedule_interval(self._displayNextNote, 5)
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
196 self._displayNextNote()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
197
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
198 def addNotifUI(self, ui):
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
199 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
200
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
201 def addNotifWidget(self, widget):
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
202 app = App.get_running_app()
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
203 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
204
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
205 def _displayNextNote(self, dummy=None):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
206 screen = Screen()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
207 try:
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
208 idx = self.notes.index(self.notes_last) + 1
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
209 except ValueError:
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
210 idx = 0
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
211 try:
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
212 note = self.notes_last = self.notes[idx]
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
213 except IndexError:
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
214 self.notes_event.cancel()
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
215 self.notes_event = None
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
216 else:
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
217 screen.add_widget(note)
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
218 self.manager.switch_to(screen)
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
219
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
220
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
221 class RootMenus(menu.MenusWidget):
166
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
222 HEIGHT = dp(30)
85
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
223
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
224
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
225 class RootBody(BoxLayout):
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
226 pass
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
227
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
228
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
229 class CagouRootWidget(FloatLayout):
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
230 root_menus = properties.ObjectProperty()
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
231 root_body = properties.ObjectProperty
9
7b0a53d2afd3 contact list: first draft
Goffi <goffi@goffi.org>
parents: 6
diff changeset
232
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
233 def __init__(self, main_widget):
85
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
234 super(CagouRootWidget, self).__init__()
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
235 # header
172
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
236 self.head_widget = RootHeadWidget()
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
237 self.root_body.add_widget(self.head_widget)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
238 # body
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
239 self._manager = ScreenManager()
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
240 # main widgets
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
241 main_screen = Screen(name='main')
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
242 main_screen.add_widget(main_widget)
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
243 self._manager.add_widget(main_screen)
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
244 # backend XMLUI (popups, forms, etc)
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
245 xmlui_screen = Screen(name='xmlui')
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
246 self._manager.add_widget(xmlui_screen)
78
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
247 # extra (file chooser, audio record, etc)
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
248 extra_screen = Screen(name='extra')
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
249 self._manager.add_widget(extra_screen)
85
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
250 self.root_body.add_widget(self._manager)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
251
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
252 def changeWidget(self, widget, screen_name="main"):
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
253 """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
254 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
255 # 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
256 # 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
257 self._manager.transition.stop()
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
258 screen = self._manager.get_screen(screen_name)
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
259 screen.clear_widgets()
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
260 screen.add_widget(widget)
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
261
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
262 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
263 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
264 # 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
265 # 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
266 self._manager.transition.stop()
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
267 if self._manager.current == screen:
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
268 return
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
269 if screen == "main":
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
270 self._manager.transition = FallOutTransition()
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
271 else:
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
272 self._manager.transition = RiseInTransition()
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
273 self._manager.current = screen
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
274
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
275 def newAction(self, handler, action_data, id_, security_limit, profile):
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
276 """Add a notification for an action"""
172
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
277 self.head_widget.addNotif(handler, action_data, id_, security_limit, profile)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
278
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
279 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
280 self.head_widget.addNote(title, message, level, symbol, action)
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
281
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
282 def addNotifUI(self, ui):
172
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
283 self.head_widget.addNotifUI(ui)
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
284
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
285 def addNotifWidget(self, widget):
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
286 self.head_widget.addNotifWidget(widget)
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
287
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
288
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
289 class CagouApp(App):
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
290 """Kivy App for Cagou"""
176
2cfef8fbfd4e core: moved main colors to constants
Goffi <goffi@goffi.org>
parents: 174
diff changeset
291 c_prim = properties.ListProperty(C.COLOR_PRIM)
2cfef8fbfd4e core: moved main colors to constants
Goffi <goffi@goffi.org>
parents: 174
diff changeset
292 c_prim_light = properties.ListProperty(C.COLOR_PRIM_LIGHT)
2cfef8fbfd4e core: moved main colors to constants
Goffi <goffi@goffi.org>
parents: 174
diff changeset
293 c_prim_dark = properties.ListProperty(C.COLOR_PRIM_DARK)
2cfef8fbfd4e core: moved main colors to constants
Goffi <goffi@goffi.org>
parents: 174
diff changeset
294 c_sec = properties.ListProperty(C.COLOR_SEC)
2cfef8fbfd4e core: moved main colors to constants
Goffi <goffi@goffi.org>
parents: 174
diff changeset
295 c_sec_light = properties.ListProperty(C.COLOR_SEC_LIGHT)
2cfef8fbfd4e core: moved main colors to constants
Goffi <goffi@goffi.org>
parents: 174
diff changeset
296 c_sec_dark = properties.ListProperty(C.COLOR_SEC_DARK)
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
297
152
b9fd83292fc4 core: disabled Kivy's default behaviour of displaying settings on F1
Goffi <goffi@goffi.org>
parents: 143
diff changeset
298 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
299 # 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
300 # 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
301 return
b9fd83292fc4 core: disabled Kivy's default behaviour of displaying settings on F1
Goffi <goffi@goffi.org>
parents: 143
diff changeset
302
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
303 def build(self):
143
05d602be0120 core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents: 142
diff changeset
304 Window.bind(on_keyboard=self.key_input)
166
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
305 wid = CagouRootWidget(Label(text=u"Loading please wait"))
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
306 if sys.platform == 'android':
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
307 # we don't want menu on Android
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
308 wid.root_menus.height = 0
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
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
311 def showWidget(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
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
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
fdaf914e2729 minor docstring fix
Goffi <goffi@goffi.org>
parents: 31
diff changeset
318 useful in kv. Values which can be used:
fdaf914e2729 minor docstring fix
Goffi <goffi@goffi.org>
parents: 31
diff changeset
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"""
75
b84dadbab62b core: added a platform check in on_start:
Goffi <goffi@goffi.org>
parents: 73
diff changeset
328 if sys.platform == "android":
259
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
329 # XXX: we use a separated socket instead of bridge because if we
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
330 # try to call a bridge method in on_pause method, the call data
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
331 # is not written before the actual pause
259
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
332 s = self._frontend_status_socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
333 s.connect(os.path.join(SOCKET_DIR, SOCKET_FILE))
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
334 s.sendall(STATE_RUNNING)
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
65
1c738621bc8d core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents: 64
diff changeset
336 def on_pause(self):
262
825e8c91b703 core: (de)activate sync flag when the frontend is being paused or resumed
Goffi <goffi@goffi.org>
parents: 260
diff changeset
337 self.host.sync = False
259
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
338 self._frontend_status_socket.sendall(STATE_PAUSED)
65
1c738621bc8d core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents: 64
diff changeset
339 return True
1c738621bc8d core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents: 64
diff changeset
340
1c738621bc8d core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents: 64
diff changeset
341 def on_resume(self):
259
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
342 self._frontend_status_socket.sendall(STATE_RUNNING)
262
825e8c91b703 core: (de)activate sync flag when the frontend is being paused or resumed
Goffi <goffi@goffi.org>
parents: 260
diff changeset
343 self.host.sync = True
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
344
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
345 def on_stop(self):
77
bc170ccca744 core: added forgotten platfom check in on_stop
Goffi <goffi@goffi.org>
parents: 75
diff changeset
346 if sys.platform == "android":
259
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
347 self._frontend_status_socket.sendall(STATE_STOPPED)
4601793b0dee core: use new unix socket mechanism to set frontend state
Goffi <goffi@goffi.org>
parents: 250
diff changeset
348 self._frontend_status_socket.close()
65
1c738621bc8d core: on_pause/on_resume handling (needed for Android)
Goffi <goffi@goffi.org>
parents: 64
diff changeset
349
143
05d602be0120 core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents: 142
diff changeset
350 def key_input(self, window, key, scancode, codepoint, modifier):
05d602be0120 core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents: 142
diff changeset
351 if key == 27:
166
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
352 # 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
353 return True
165
e6ec8ff62d87 core: toggle fullscreen on F11
Goffi <goffi@goffi.org>
parents: 154
diff changeset
354 elif key == 292:
166
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
355 # F11: full screen
165
e6ec8ff62d87 core: toggle fullscreen on F11
Goffi <goffi@goffi.org>
parents: 154
diff changeset
356 if not Window.fullscreen:
e6ec8ff62d87 core: toggle fullscreen on F11
Goffi <goffi@goffi.org>
parents: 154
diff changeset
357 window.fullscreen = 'auto'
e6ec8ff62d87 core: toggle fullscreen on F11
Goffi <goffi@goffi.org>
parents: 154
diff changeset
358 else:
e6ec8ff62d87 core: toggle fullscreen on F11
Goffi <goffi@goffi.org>
parents: 154
diff changeset
359 window.fullscreen = False
e6ec8ff62d87 core: toggle fullscreen on F11
Goffi <goffi@goffi.org>
parents: 154
diff changeset
360 return True
166
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
361 elif key == 109 and modifier == ['alt']:
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
362 # M-m we hide/show menu
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
363 menu = self.root.root_menus
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
364 if menu.height:
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
365 Animation(height=0, duration=0.3).start(menu)
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
366 else:
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
367 Animation(height=menu.HEIGHT, duration=0.3).start(menu)
37220459e93d core: hide/show menu on M-m + disable menu on Android
Goffi <goffi@goffi.org>
parents: 165
diff changeset
368 return True
172
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
369 elif key == 110 and modifier == ['alt']:
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
370 # M-n we hide/show notifications
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
371 head = self.root.head_widget
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
372 if head.height:
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
373 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
374 else:
7103655647aa core: hide notifications header on M-n
Goffi <goffi@goffi.org>
parents: 166
diff changeset
375 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
376 return True
143
05d602be0120 core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents: 142
diff changeset
377 else:
05d602be0120 core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents: 142
diff changeset
378 return False
05d602be0120 core: [esc] key handling is disabled (for now)
Goffi <goffi@goffi.org>
parents: 142
diff changeset
379
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
380
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
381 class Cagou(QuickApp):
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
382 MB_HANDLE = False
265
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
383 AUTO_RESYNC = False
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
384
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
385 def __init__(self):
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
386 if bridge_name == 'embedded':
63
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
387 from sat.core import sat_main
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
388 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
389 if sys.platform == 'android':
141
8a0019ce3632 core (android): service is now launched using pyjnius, as recommended in doc
Goffi <goffi@goffi.org>
parents: 131
diff changeset
390 from jnius import autoclass
240
f555b10712d7 misc: fixed Android namespace
Goffi <goffi@goffi.org>
parents: 229
diff changeset
391 service = autoclass('org.salutatoi.cagou.ServiceBackend')
141
8a0019ce3632 core (android): service is now launched using pyjnius, as recommended in doc
Goffi <goffi@goffi.org>
parents: 131
diff changeset
392 mActivity = autoclass('org.kivy.android.PythonActivity').mActivity
8a0019ce3632 core (android): service is now launched using pyjnius, as recommended in doc
Goffi <goffi@goffi.org>
parents: 131
diff changeset
393 argument = ''
8a0019ce3632 core (android): service is now launched using pyjnius, as recommended in doc
Goffi <goffi@goffi.org>
parents: 131
diff changeset
394 service.start(mActivity, argument)
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
395 self.service = service
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
396
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
397 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
398 if bridge_module is None:
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
399 log.error(u"Can't import {} bridge".format(bridge_name))
72
1a324c682d8a core: use onBridgeConnected and exit code 3 when bridge can't be imported
Goffi <goffi@goffi.org>
parents: 65
diff changeset
400 sys.exit(3)
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
401 else:
72
1a324c682d8a core: use onBridgeConnected and exit code 3 when bridge can't be imported
Goffi <goffi@goffi.org>
parents: 65
diff changeset
402 log.debug(u"Loading {} bridge".format(bridge_name))
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
403 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
404 xmlui=xmlui,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
405 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
406 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
407 self._import_kv()
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
408 self.app = CagouApp()
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
409 self.app.host = self
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
410 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
411 'media_dir')
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
412 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
413 'downloads_dir')
188
0abd24ab81b1 core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents: 184
diff changeset
414 if not os.path.exists(self.downloads_dir):
0abd24ab81b1 core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents: 184
diff changeset
415 try:
0abd24ab81b1 core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents: 184
diff changeset
416 os.makedirs(self.downloads_dir)
0abd24ab81b1 core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents: 184
diff changeset
417 except OSError as e:
0abd24ab81b1 core: retrieve downloads_dir on startup
Goffi <goffi@goffi.org>
parents: 184
diff changeset
418 log.warnings(_(u"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
419 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
420 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
421 "icons/muchoslava/png/cagou_profil_bleu_96.png")
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
422 self._plg_wids = [] # main widgets plugins
97
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
423 self._plg_wids_transfer = [] # transfer widgets plugins
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
424 self._import_plugins()
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
425 self._visible_widgets = {} # visible widgets by classes
246
15e47bbb192c about: show full version of SàT
Goffi <goffi@goffi.org>
parents: 244
diff changeset
426 self.version = C.APP_VERSION # will be replaced by getVersion()
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
427
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
428 @property
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
429 def visible_widgets(self):
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
430 for w_list in self._visible_widgets.itervalues():
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
431 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
432 yield w
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
433
265
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
434 @QuickApp.sync.setter
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
435 def sync(self, state):
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
436 QuickApp.sync.fset(self, state)
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
437 # widget are resynchronised in onVisible event,
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
438 # 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
439 if state:
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
440 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
441 try:
c4990a7d5dbd core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents: 267
diff changeset
442 resync = w.resync
c4990a7d5dbd core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents: 267
diff changeset
443 except AttributeError:
c4990a7d5dbd core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents: 267
diff changeset
444 pass
c4990a7d5dbd core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents: 267
diff changeset
445 else:
c4990a7d5dbd core: check if resync exist in widget before calling it
Goffi <goffi@goffi.org>
parents: 267
diff changeset
446 resync()
265
805c4103dac5 core: resync widgets only when they are visible:
Goffi <goffi@goffi.org>
parents: 264
diff changeset
447
72
1a324c682d8a core: use onBridgeConnected and exit code 3 when bridge can't be imported
Goffi <goffi@goffi.org>
parents: 65
diff changeset
448 def onBridgeConnected(self):
189
a91abcd6d9a5 core: call QuickApp.onBridgeConnected (so ns_map is filled)
Goffi <goffi@goffi.org>
parents: 188
diff changeset
449 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
450 self.registerSignal("otrState", iface="plugin")
63
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
451 self.bridge.getReady(self.onBackendReady)
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
452
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
453 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
454 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
455 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
456 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
457 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
458 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
459 from twisted.internet.error import ConnectionRefusedError
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
460 if failure.check(ConnectionRefusedError) and self.retried < 100:
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
461 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
462 log.debug("backend not ready, retrying ({})".format(self.retried))
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
463 Clock.schedule_once(lambda dummy: self.connectBridge(), 0.05)
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
464 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
465 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
466
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
467 def run(self):
63
af4f986d86f0 core: pb bridge implementation:
Goffi <goffi@goffi.org>
parents: 61
diff changeset
468 self.connectBridge()
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
469 self.app.bind(on_stop=self.onStop)
0
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
470 self.app.run()
160cc95ad7ea initial commit:
Goffi <goffi@goffi.org>
parents:
diff changeset
471
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
472 def onStop(self, obj):
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
473 try:
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
474 sat_instance = self.sat
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
475 except AttributeError:
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
476 pass
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
477 else:
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
478 sat_instance.stopService()
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
479
246
15e47bbb192c about: show full version of SàT
Goffi <goffi@goffi.org>
parents: 244
diff changeset
480 def _getVersionCb(self, version):
15e47bbb192c about: show full version of SàT
Goffi <goffi@goffi.org>
parents: 244
diff changeset
481 self.version = version
15e47bbb192c about: show full version of SàT
Goffi <goffi@goffi.org>
parents: 244
diff changeset
482
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
483 def onBackendReady(self):
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
484 self.app.showWidget()
246
15e47bbb192c about: show full version of SàT
Goffi <goffi@goffi.org>
parents: 244
diff changeset
485 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
486 self.app.initFrontendState()
60
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
487 self.postInit()
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
488
35abe494e6c7 core: bridge selection + improvments for android
Goffi <goffi@goffi.org>
parents: 52
diff changeset
489 def postInit(self, dummy=None):
61
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
490 # FIXME: resize seem to bug on android, so we use below_target for now
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
491 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
492 profile_manager = self.app._profile_manager
fd9cbf6ae663 core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents: 48
diff changeset
493 del self.app._profile_manager
fd9cbf6ae663 core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents: 48
diff changeset
494 super(Cagou, self).postInit(profile_manager)
fd9cbf6ae663 core: postInit() is now called, allowing automatic profile connection
Goffi <goffi@goffi.org>
parents: 48
diff changeset
495
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
496 def _defaultFactoryMain(self, plugin_info, target, profiles):
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
497 """default factory used to create main widgets instances
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
498
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
499 used when PLUGIN_INFO["factory"] is not set
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
500 @param plugin_info(dict): plugin datas
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
501 @param target: QuickWidget target
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
502 @param profiles(iterable): list of profiles
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
503 """
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
504 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
505 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
506 target,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
507 on_new_widget=None,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
508 profiles=iter(self.profiles))
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
509
97
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
510 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
511 """default factory used to create transfer widgets instances
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
512
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
513 @param plugin_info(dict): plugin datas
97
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
514 @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
515 @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
516 transfer widget must be used as first argument
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
517 @param profiles(iterable): list of profiles
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
518 None if not specified
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
519 """
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
520 main_cls = plugin_info['main']
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
521 return main_cls(callback=callback, cancel_cb=cancel_cb)
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
522
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
523 ## plugins & kv import ##
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
524
15
56838ad5c84b files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents: 14
diff changeset
525 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
526 """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
527 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
528 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
529 # 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
530 # 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
531 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
532 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
533 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
534 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
535 break
0ec3c3c0ed92 core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents: 126
diff changeset
536 else:
0ec3c3c0ed92 core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents: 126
diff changeset
537 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
538
0ec3c3c0ed92 core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents: 126
diff changeset
539 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
540 Builder.load_file(kv_file)
0ec3c3c0ed92 core (kv): new base.kv to handle default properties overriding on Kivy widgets
Goffi <goffi@goffi.org>
parents: 126
diff changeset
541 log.debug(u"kv file {} loaded".format(kv_file))
15
56838ad5c84b files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents: 14
diff changeset
542
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
543 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
544 """import all plugins"""
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
545 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
546 plugins_path = os.path.dirname(cagou.plugins.__file__)
17094a075fd2 core: use C.PLUGIN_EXT to know which plugin extension to use
Goffi <goffi@goffi.org>
parents: 86
diff changeset
547 plugin_glob = u"plugin*." + C.PLUGIN_EXT
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
548 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
549 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
550 plugin_glob)))]
61
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
551
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
552 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
553 # plugin with same import name
97
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
554 imported_names_transfer = set()
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
555 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
556 plugin_path = 'cagou.plugins.' + plug
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
557
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
558 # we get type from plugin name
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
559 suff = plug[7:]
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
560 if u'_' not in suff:
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
561 log.error(u"invalid plugin name: {}, skipping".format(plug))
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
562 continue
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
563 plugin_type = suff[:suff.find(u'_')]
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
564
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
565 # and select the variable to use according to type
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
566 if plugin_type == C.PLUG_TYPE_WID:
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
567 imported_names = imported_names_main
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
568 default_factory = self._defaultFactoryMain
97
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
569 elif plugin_type == C.PLUG_TYPE_TRANSFER:
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
570 imported_names = imported_names_transfer
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
571 default_factory = self._defaultFactoryTransfer
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
572 else:
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
573 log.error(u"unknown plugin type {type_} for plugin {file_}, skipping"
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
574 .format(
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
575 type_ = plugin_type,
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
576 file_ = plug
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
577 ))
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
578 continue
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
579 plugins_set = self._getPluginsSet(plugin_type)
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
580
15
56838ad5c84b files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents: 14
diff changeset
581 mod = import_module(plugin_path)
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
582 try:
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
583 plugin_info = mod.PLUGIN_INFO
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
584 except AttributeError:
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
585 plugin_info = {}
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
586
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
587 plugin_info['plugin_file'] = plug
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
588 plugin_info['plugin_type'] = plugin_type
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
589
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
590 if 'platforms' in plugin_info:
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
591 if sys.platform not in plugin_info['platforms']:
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
592 log.info(u"{plugin_file} is not used on this platform, skipping"
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
593 .format(**plugin_info))
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
594 continue
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
595
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
596 # import name is used to differentiate plugins
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
597 if 'import_name' not in plugin_info:
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
598 plugin_info['import_name'] = plug
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
599 if plugin_info['import_name'] in imported_names:
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
600 log.warning(_(u"there is already a plugin named {}, "
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
601 u"ignoring new one").format(plugin_info['import_name']))
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
602 continue
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
603 if plugin_info['import_name'] == C.WID_SELECTOR:
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
604 if plugin_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
605 log.error(u"{import_name} import name can only be used with {type_} "
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
606 u"type, skipping {name}".format(type_=C.PLUG_TYPE_WID,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
607 **plugin_info))
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
608 continue
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
609 # if WidgetSelector exists, it will be our default widget
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
610 self.default_wid = plugin_info
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
611
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
612 # we want everything optional, so we use plugin file name
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
613 # if actual name is not found
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
614 if 'name' not in plugin_info:
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
615 name_start = 8 + len(plugin_type)
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
616 plugin_info['name'] = plug[name_start:]
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
617
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
618 # we need to load the kv file
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
619 if 'kv_file' not in plugin_info:
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
620 plugin_info['kv_file'] = u'{}.kv'.format(plug)
15
56838ad5c84b files reorganisation, cagou is now launched with python2 cagou.py in src/
Goffi <goffi@goffi.org>
parents: 14
diff changeset
621 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
622 if not os.path.exists(kv_path):
d249df379fa3 core: kv files are not mandatory anymore for plugins
Goffi <goffi@goffi.org>
parents: 87
diff changeset
623 log.debug(u"no kv found for {plugin_file}".format(**plugin_info))
d249df379fa3 core: kv files are not mandatory anymore for plugins
Goffi <goffi@goffi.org>
parents: 87
diff changeset
624 else:
d249df379fa3 core: kv files are not mandatory anymore for plugins
Goffi <goffi@goffi.org>
parents: 87
diff changeset
625 Builder.load_file(kv_path)
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
626
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
627 # what is the main class ?
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
628 main_cls = getattr(mod, plugin_info['main'])
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
629 plugin_info['main'] = main_cls
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
630
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
631 # factory is used to create the instance
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
632 # if not found, we use a defaut one with getOrCreateWidget
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
633 if 'factory' not in plugin_info:
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
634 plugin_info['factory'] = default_factory
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
635
25
d09bd16dbbe2 code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents: 19
diff changeset
636 # icons
d09bd16dbbe2 code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents: 19
diff changeset
637 for size in ('small', 'medium'):
d09bd16dbbe2 code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents: 19
diff changeset
638 key = u'icon_{}'.format(size)
d09bd16dbbe2 code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents: 19
diff changeset
639 try:
d09bd16dbbe2 code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents: 19
diff changeset
640 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
641 except KeyError:
d09bd16dbbe2 code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents: 19
diff changeset
642 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
643 else:
d09bd16dbbe2 code (cagou widget), selector: icons handling + use of new muchoslava icon set
Goffi <goffi@goffi.org>
parents: 19
diff changeset
644 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
645 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
646 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
647 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
648
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
649 plugins_set.append(plugin_info)
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
650 if not self._plg_wids:
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
651 log.error(_(u"no widget plugin found"))
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
652 return
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
653
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
654 # we want widgets sorted by names
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
655 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
656 self._plg_wids_transfer.sort(key=lambda p: p['name'].lower())
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
657
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
658 if self.default_wid is None:
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
659 # we have no selector widget, we use the first widget as default
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
660 self.default_wid = self._plg_wids[0]
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
661
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
662 def _getPluginsSet(self, type_):
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
663 if type_ == C.PLUG_TYPE_WID:
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
664 return self._plg_wids
97
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
665 elif type_ == C.PLUG_TYPE_TRANSFER:
5d2289127bb7 menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents: 91
diff changeset
666 return self._plg_wids_transfer
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
667 else:
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
668 raise KeyError(u"{} plugin type is unknown".format(type_))
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
669
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
670 def getPluggedWidgets(self, type_=C.PLUG_TYPE_WID, except_cls=None):
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
671 """get available widgets plugin infos
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
672
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
673 @param type_(unicode): type of widgets to get
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
674 one of C.PLUG_TYPE_* constant
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
675 @param except_cls(None, class): if not None,
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
676 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
677 @return (iter[dict]): available widgets plugin infos
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
678 """
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
679 plugins_set = self._getPluginsSet(type_)
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
680 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
681 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
682 continue
c58b522607f4 main: fixed profiles value in _defaultFactory + getPluggedWidgets is now a generator
Goffi <goffi@goffi.org>
parents: 16
diff changeset
683 yield plugin_data
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
684
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
685 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
686 """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
687
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
688 @param type_(unicode): type of widgets to get
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
689 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
690 @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
691 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
692 @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
693 """
86
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
694 plugins_set = self._getPluginsSet(type_)
c711be670ecd core, chat: upload plugin system:
Goffi <goffi@goffi.org>
parents: 85
diff changeset
695 for plugin_info in plugins_set:
41
7cac2d1a6f20 core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents: 40
diff changeset
696 for k, w in kwargs.iteritems():
7cac2d1a6f20 core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents: 40
diff changeset
697 try:
7cac2d1a6f20 core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents: 40
diff changeset
698 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
699 continue
7cac2d1a6f20 core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents: 40
diff changeset
700 except KeyError:
7cac2d1a6f20 core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents: 40
diff changeset
701 continue
7cac2d1a6f20 core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents: 40
diff changeset
702 return plugin_info
7cac2d1a6f20 core: new getPluginInfo method to retrieve plugin info corresponding to filter(s)
Goffi <goffi@goffi.org>
parents: 40
diff changeset
703
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
704 ## widgets handling
9
7b0a53d2afd3 contact list: first draft
Goffi <goffi@goffi.org>
parents: 6
diff changeset
705
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
706 def newWidget(self, widget):
12fdc7d1feb1 core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents: 41
diff changeset
707 log.debug(u"new widget created: {}".format(widget))
12fdc7d1feb1 core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents: 41
diff changeset
708 if isinstance(widget, quick_chat.QuickChat) and widget.type == C.CHAT_GROUP:
12fdc7d1feb1 core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents: 41
diff changeset
709 self.addNote(u"", _(u"room {} has been joined").format(widget.target))
12fdc7d1feb1 core: newWidget implementation, it only display a not when a MUC room has been joined
Goffi <goffi@goffi.org>
parents: 41
diff changeset
710
11
49d30fc15884 core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents: 9
diff changeset
711 def switchWidget(self, old, new):
49d30fc15884 core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents: 9
diff changeset
712 """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
713
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
714 old(CagouWidgetn None): CagouWidget instance or a child
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
715 None to select automatically widget to switch
11
49d30fc15884 core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents: 9
diff changeset
716 new(CagouWidget): new widget instance
49d30fc15884 core: added switchWidget method, to change a CagouWidget for an other one
Goffi <goffi@goffi.org>
parents: 9
diff changeset
717 """
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
718 if old is None:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
719 old = self.getWidgetToSwitch()
14
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
720 to_change = None
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
721 if isinstance(old, CagouWidget):
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
722 to_change = old
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
723 else:
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
724 for w in old.walk_reverse():
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
725 if isinstance(w, CagouWidget):
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
726 to_change = w
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
727 break
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
728
21a432afd06d plugin system, first draft:
Goffi <goffi@goffi.org>
parents: 13
diff changeset
729 if to_change is None:
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
730 raise exceptions.InternalError(u"no CagouWidget found when "
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
731 u"trying to switch widget")
154
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
732
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
733 wrapper = to_change.parent
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
734 while wrapper is not None and not(isinstance(wrapper, widgets_handler.WHWrapper)):
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
735 wrapper = wrapper.parent
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
736
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
737 if wrapper is None:
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
738 raise exceptions.InternalError(u"no wrapper found")
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
739
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
740 wrapper.changeWidget(new)
249
5d69e4cab925 core: when switching to a new widget, it becomes the selected one.
Goffi <goffi@goffi.org>
parents: 248
diff changeset
741 self.selected_widget = new
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
742
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
743 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
744 """declare a widget visible
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
745
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
746 for internal use only!
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
747 """
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
748 assert isinstance(widget, CagouWidget)
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
749 self._visible_widgets.setdefault(widget.__class__, []).append(widget)
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
750 widget.onVisible()
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
751
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
752 def _removeVisibleWidget(self, widget):
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
753 """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
754
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
755 for internal use only!
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
756 """
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
757 self._visible_widgets[widget.__class__].remove(widget)
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
758 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
759 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
760 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
761 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
762
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
763 def getVisibleList(self, cls):
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
764 """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
765
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
766 @param cls(type): type of widgets to get
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
767 @return (list[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
768 """
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
769 try:
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
770 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
771 except KeyError:
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
772 return []
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
773
260
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
774 def deleteUnusedWidgetInstances(self, widget):
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
775 """Delete instance of this widget without parent
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
776
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
777 @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
778 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
779 """
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
780 # FIXME: unused for now
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
781 to_delete = []
267
896f78760b63 core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents: 266
diff changeset
782 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
783 for w in self.widgets.getWidgetInstances(widget):
896f78760b63 core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents: 266
diff changeset
784 if w.parent is None and w != widget:
896f78760b63 core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents: 266
diff changeset
785 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
786 for w in to_delete:
896f78760b63 core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents: 266
diff changeset
787 log.debug(u"cleaning widget: {wid}".format(wid=w))
896f78760b63 core: fixed crash when calling deleteUnusedWidgetInstances on widgets not inheriting from QuickWidget
Goffi <goffi@goffi.org>
parents: 266
diff changeset
788 self.widgets.deleteWidget(w)
260
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
789
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
790 def getOrClone(self, widget):
260
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
791 """Get a QuickWidget if it has not parent set else clone it
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
792
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
793 if an other instance of this widget exist without parent, it will be used.
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
794 """
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
795 if widget.parent is None:
260
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
796 self.deleteUnusedWidgetInstances(widget)
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
797 return widget
260
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
798 for w in self.widgets.getWidgetInstances(widget):
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
799 if w.parent is None:
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
800 self.deleteUnusedWidgetInstances(w)
145c29b5f2b5 core: improved getOrClone + use in chat and widgets_handler:
Goffi <goffi@goffi.org>
parents: 259
diff changeset
801 return w
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
802 targets = list(widget.targets)
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
803 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
804 targets[0],
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
805 on_new_widget=None,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
806 on_existing_widget=C.WIDGET_RECREATE,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
807 profiles=widget.profiles)
38
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
808 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
809 w.addTarget(t)
9f45098289cc widgets handler, core: hidden widgets can now be shown with swipes:
Goffi <goffi@goffi.org>
parents: 34
diff changeset
810 return w
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
811
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
812 def getWidgetToSwitch(self):
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
813 """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
814
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
815 @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
816 """
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
817 if self.selected_widget is not None:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
818 return self.selected_widget
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
819 # no widget is selected we check if we have any default widget
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
820 default_cls = self.default_wid['main']
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
821 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
822 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
823 return w
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
824
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
825 # 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
826 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
827
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
828 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
829 """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
830
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
831 @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
832 - 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
833 @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
834 @param profiles(list[unicode]): profiles to use
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
835 """
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
836 try:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
837 # 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
838 # in host
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
839 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
840 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
841 except IndexError:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
842 log.warning(u"No plugin widget found to do {action}".format(action=action))
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
843 else:
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
844 factory = plg_infos['factory']
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
845 self.switchWidget(None,
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
846 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
847
51
3f8599d9a766 core: menus first draft:
Goffi <goffi@goffi.org>
parents: 49
diff changeset
848 ## menus ##
3f8599d9a766 core: menus first draft:
Goffi <goffi@goffi.org>
parents: 49
diff changeset
849
112
d654bdfeb404 core: changes menu bridge call, to follow backend
Goffi <goffi@goffi.org>
parents: 97
diff changeset
850 def _menusGetCb(self, backend_menus):
85
c2a7234d13d2 menu: use of garden's contextmenu for menus
Goffi <goffi@goffi.org>
parents: 78
diff changeset
851 main_menu = self.app.root.root_menus
51
3f8599d9a766 core: menus first draft:
Goffi <goffi@goffi.org>
parents: 49
diff changeset
852 self.menus.addMenus(backend_menus)
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
853 self.menus.addMenu(C.MENU_GLOBAL,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
854 (_(u"Help"), _(u"About")),
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
855 callback=main_menu.onAbout)
51
3f8599d9a766 core: menus first draft:
Goffi <goffi@goffi.org>
parents: 49
diff changeset
856 main_menu.update(C.MENU_GLOBAL)
3f8599d9a766 core: menus first draft:
Goffi <goffi@goffi.org>
parents: 49
diff changeset
857
122
dcd6fbb3f010 chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents: 119
diff changeset
858 ## bridge handlers ##
dcd6fbb3f010 chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents: 119
diff changeset
859
dcd6fbb3f010 chat: handle new OTR state signal and change encryption icon consequently
Goffi <goffi@goffi.org>
parents: 119
diff changeset
860 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
861 """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
862 # 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
863 # 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
864 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
865 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
866 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
867 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
868 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
869
266
b3f97729e983 core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents: 265
diff changeset
870 def _debugHandler(self, action, parameters, profile):
b3f97729e983 core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents: 265
diff changeset
871 if action == u"visible_widgets_dump":
b3f97729e983 core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents: 265
diff changeset
872 from pprint import pformat
b3f97729e983 core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents: 265
diff changeset
873 log.info(u"Visible widgets dump:\n{data}".format(
b3f97729e983 core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents: 265
diff changeset
874 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
875 else:
b3f97729e983 core (debug): added "visible_widgets_dump" action to new _debug signal
Goffi <goffi@goffi.org>
parents: 265
diff changeset
876 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
877
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
878 ## misc ##
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
879
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
880 def plugging_profiles(self):
154
a5e8833184c6 widget handler: refactoring:
Goffi <goffi@goffi.org>
parents: 152
diff changeset
881 self.app.root.changeWidget(widgets_handler.WidgetsHandler())
112
d654bdfeb404 core: changes menu bridge call, to follow backend
Goffi <goffi@goffi.org>
parents: 97
diff changeset
882 self.bridge.menusGet("", C.NO_SECURITY_LIMIT, callback=self._menusGetCb)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
883
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
884 def setPresenceStatus(self, show='', status=None, profile=C.PROF_KEY_NONE):
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
885 log.info(u"Profile presence status set to {show}/{status}".format(show=show,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
886 status=status))
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
887
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
888 def errback(self, failure_, title=_('error'),
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
889 message=_(u'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
890 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
891
250
ff1efdeff53f core: notifs can now have a custom icon and be clickable:
Goffi <goffi@goffi.org>
parents: 249
diff changeset
892 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
893 action=None):
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
894 """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
895 self.app.root.addNote(title, message, level, symbol, action)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
896
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
897 def addNotifUI(self, ui):
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
898 """add a notification with a XMLUI attached
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
899
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
900 @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
901 """
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
902 self.app.root.addNotifUI(ui)
29
8b5827c43155 notes first draft:
Goffi <goffi@goffi.org>
parents: 28
diff changeset
903
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
904 def addNotifWidget(self, widget):
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
905 """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
906
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
907 @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
908 """
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
909 self.app.root.addNotifWidget(widget)
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
910
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
911 def showUI(self, ui):
78
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
912 """show a XMLUI"""
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
913 self.app.root.changeWidget(ui, "xmlui")
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
914 self.app.root.show("xmlui")
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
915
78
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
916 def showExtraUI(self, widget):
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
917 """show any extra widget"""
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
918 self.app.root.changeWidget(widget, "extra")
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
919 self.app.root.show("extra")
46d962910801 chat: file upload first draft:
Goffi <goffi@goffi.org>
parents: 77
diff changeset
920
33
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
921 def closeUI(self):
c21d1be2e54c core: XMLUI notifications coming from backend are handled:
Goffi <goffi@goffi.org>
parents: 32
diff changeset
922 self.app.root.show()
44
7819e9efa250 chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents: 43
diff changeset
923
7819e9efa250 chat: avatar and nick are now displayed, need further aesthetic improvments
Goffi <goffi@goffi.org>
parents: 43
diff changeset
924 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
925 return self.app.default_avatar
61
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
926
220
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
927 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
928 """generic dialog callback
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
929
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
930 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
931 """
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
932 def callback():
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
933 self.closeUI()
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
934 cb(*args, **kwargs)
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
935 return callback
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
936
61
0b7f10de416e android: android build first draft:
Goffi <goffi@goffi.org>
parents: 60
diff changeset
937 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
938 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
939 self.addNote(title, message, type)
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
940 elif type == "yes/no":
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
941 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
942 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
943 True,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
944 answer_data),
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
945 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
946 False,
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
947 answer_data)
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
948 )
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
949 self.addNotifWidget(wid)
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
950 else:
24f8ab7c08be core: implemented showDialog so message/dialogs from QuickFrontend are displayed
Goffi <goffi@goffi.org>
parents: 208
diff changeset
951 log.warning(_(u"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
952
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
953
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
954 def desktop_notif(self, message, title=u'', duration=5000):
c63922860f80 chat: show desktop notification and/or note when suitable
Goffi <goffi@goffi.org>
parents: 176
diff changeset
955 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
956 try:
ab523cc967bb core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents: 228
diff changeset
957 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
958 message=message,
ab523cc967bb core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents: 228
diff changeset
959 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
960 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
961 timeout = duration)
ab523cc967bb core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents: 228
diff changeset
962 except Exception as e:
ab523cc967bb core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents: 228
diff changeset
963 log.warning(_(u"Can't use notifications, disabling: {msg}").format(
ab523cc967bb core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents: 228
diff changeset
964 msg = e))
ab523cc967bb core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents: 228
diff changeset
965 global notification
ab523cc967bb core(notification): display a warning and disable notifications if something is going wrong
Goffi <goffi@goffi.org>
parents: 228
diff changeset
966 notification = None