annotate cagou/kv/common.kv @ 354:aa860c10acfc

chat: new chat selector: Using the new ScreenManager feature, a widget to select a chat to display is shown when a user opens the chat (except if an entity jid is specified, in which case it opens directly the Chat widget), or when user presses ESC. When on ChatSelector, pressing ESC brings to the root widget (i.e. default widget). The ChatSelect is a first draft, it is planned to show opened chats, rooms, and a way to create new chats.
author Goffi <goffi@goffi.org>
date Fri, 17 Jan 2020 18:44:35 +0100
parents 38fd457b2158
children 841045d5a937
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
1 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client
282
1b835bcfa663 date update
Goffi <goffi@goffi.org>
parents: 274
diff changeset
2 # Copyright (C) 2016-2019 Jérôme Poisson (goffi@goffi.org)
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
3
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
4 # This program is free software: you can redistribute it and/or modify
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
5 # it under the terms of the GNU Affero General Public License as published by
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
6 # the Free Software Foundation, either version 3 of the License, or
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
7 # (at your option) any later version.
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
8
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
9 # This program is distributed in the hope that it will be useful,
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
12 # GNU Affero General Public License for more details.
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
13
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
14 # You should have received a copy of the GNU Affero General Public License
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
16
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
17
322
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
18 <ContactItem>:
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
19 size_hint: None, None
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
20 width: self.base_width
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
21 height: self.minimum_height
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
22 orientation: 'vertical'
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
23 Avatar:
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
24 id: avatar
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
25 size_hint: 1, None
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
26 height: dp(60)
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
27 source: root.data.get('avatar') or app.default_avatar
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
28 allow_stretch: True
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
29 Label:
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
30 id: jid_label
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
31 size_hint: None, None
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
32 text_size: root.base_width, None
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
33 size: self.texture_size
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
34 text: root.jid
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
35 bold: True
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
36 valign: 'middle'
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
37 halign: 'center'
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
38
e2b51663d8b8 core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents: 282
diff changeset
39
145
654b00fa3fdc core (common): renamed JidWidget to JidItem to avoid name conflict with XMLUI
Goffi <goffi@goffi.org>
parents: 134
diff changeset
40 <JidItem>:
193
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
41 size_hint: 1, None
274
7d5297984191 core, chat: UI improvments:
Goffi <goffi@goffi.org>
parents: 256
diff changeset
42 height: dp(68)
256
ba7b8cb7ddcd common: don't use anymore positional argument in JidItem
Goffi <goffi@goffi.org>
parents: 247
diff changeset
43 avatar: avatar
274
7d5297984191 core, chat: UI improvments:
Goffi <goffi@goffi.org>
parents: 256
diff changeset
44 padding: 0, dp(2), 0, dp(2)
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
45 canvas.before:
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
46 Color:
193
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
47 rgba: self.bg_color
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
48 Rectangle:
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
49 pos: self.pos
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
50 size: self.size
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
51 Image:
256
ba7b8cb7ddcd common: don't use anymore positional argument in JidItem
Goffi <goffi@goffi.org>
parents: 247
diff changeset
52 id: avatar
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
53 size_hint: None, None
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
54 size: dp(64), dp(64)
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
55 Label:
193
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
56 size_hint: 1, 1
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
57 text_size: self.size
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
58 color: root.color
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
59 bold: True
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
60 text: root.jid
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
61 halign: 'left'
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
62 valign: 'middle'
193
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
63 padding_x: dp(5)
131
36fc269e2a32 core: changed default background color to white
Goffi <goffi@goffi.org>
parents: 126
diff changeset
64
193
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
65 <JidToggle>:
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
66 canvas.before:
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
67 Color:
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
68 rgba: self.selected_color if self.state == 'down' else self.bg_color
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
69 Rectangle:
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
70 pos: self.pos
284cb5c467b0 core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents: 178
diff changeset
71 size: self.size
131
36fc269e2a32 core: changed default background color to white
Goffi <goffi@goffi.org>
parents: 126
diff changeset
72
134
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
73 <Symbol>:
247
cf61a011f731 core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents: 218
diff changeset
74 width: dp(35)
cf61a011f731 core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents: 218
diff changeset
75 height: dp(35)
134
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
76 font_name: app.expand('{media}/fonts/fontello/font/fontello.ttf')
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
77 text_size: self.size
247
cf61a011f731 core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents: 218
diff changeset
78 font_size: dp(30)
134
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
79 halign: 'center'
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
80 valign: 'middle'
215
254481ba2bae core (common): set width = height by default for Symbol + use a transparent background color by default
Goffi <goffi@goffi.org>
parents: 193
diff changeset
81 bg_color: 0, 0, 0, 0
134
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
82 canvas.before:
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
83 Color:
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
84 rgba: self.bg_color
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
85 Rectangle:
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
86 pos: self.pos
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
87 size: self.size
178
11ff8cd93659 common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents: 150
diff changeset
88
218
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
89 <SymbolLabel>:
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
90 size_hint: None, 1
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
91 width: self.minimum_width
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
92 symbol_wid: symbol_wid
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
93 label: label
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
94 Symbol:
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
95 id: symbol_wid
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
96 size_hint: None, 1
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
97 symbol: root.symbol
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
98 color: root.color
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
99 Label:
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
100 id: label
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
101 size_hint: None, 1
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
102 text_size: None, root.height
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
103 size: self.texture_size
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
104 padding_x: dp(5)
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
105 valign: 'middle'
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
106 text: root.text
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
107 bold: root.bold
30be583dbabc core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
Goffi <goffi@goffi.org>
parents: 215
diff changeset
108
178
11ff8cd93659 common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents: 150
diff changeset
109 <ActionSymbol>:
11ff8cd93659 common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents: 150
diff changeset
110 bg_color: 0, 0, 0, 0
11ff8cd93659 common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents: 150
diff changeset
111 color: app.c_sec_light
348
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
112
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
113
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
114 <JidSelector>:
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
115 layout: layout
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
116 StackLayout:
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
117 id: layout
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
118 size_hint: 1, None
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
119 height: self.minimum_height
38fd457b2158 core (common, share_widget): new JidSelector widget:
Goffi <goffi@goffi.org>
parents: 322
diff changeset
120 spacing: 0