annotate cagou/kv/common.kv @ 178:11ff8cd93659

common: new ActionSymbol widget, which use a symbol to show an action
author Goffi <goffi@goffi.org>
date Tue, 01 May 2018 18:28:22 +0200
parents a12fda5d9aa9
children 284cb5c467b0
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
126
cd99f70ea592 global file reorganisation:
Goffi <goffi@goffi.org>
parents: 107
diff changeset
2 # Copyright (C) 2016-2018 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
145
654b00fa3fdc core (common): renamed JidWidget to JidItem to avoid name conflict with XMLUI
Goffi <goffi@goffi.org>
parents: 134
diff changeset
18 <JidItem>:
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
19 size_hint: None, None
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
20 height: dp(70)
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
21 canvas.before:
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
22 Color:
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
23 rgba: 0.2, 0.2, 0.2, 1
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
24 Rectangle:
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
25 pos: self.pos
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
26 size: self.size
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
27 Image:
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
28 source: root.getImage(self)
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
29 size_hint: None, None
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
30 size: dp(64), dp(64)
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
31 Label:
150
a12fda5d9aa9 core (common): use white for labels in JidItem
Goffi <goffi@goffi.org>
parents: 145
diff changeset
32 color: 1, 1, 1, 1
107
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
33 bold: True
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
34 text: root.jid
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
35 text_size: self.size
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
36 halign: 'left'
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
37 valign: 'middle'
f0cf44df8486 JidWidget: first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
38 padding_x: dp(20)
131
36fc269e2a32 core: changed default background color to white
Goffi <goffi@goffi.org>
parents: 126
diff changeset
39
36fc269e2a32 core: changed default background color to white
Goffi <goffi@goffi.org>
parents: 126
diff changeset
40
134
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
41 <Symbol>:
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
42 font_name: app.expand('{media}/fonts/fontello/font/fontello.ttf')
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
43 text_size: self.size
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
44 font_size: self.width - self.margin
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
45 margin: dp(5)
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
46 halign: 'center'
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
47 valign: 'middle'
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
48 bg_color: 1, 1, 1, 1
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
49 canvas.before:
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
50 Color:
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
51 rgba: self.bg_color
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
52 Rectangle:
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
53 pos: self.pos
1cca97e27a69 core (common): new Symbol widget:
Goffi <goffi@goffi.org>
parents: 131
diff changeset
54 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
55
11ff8cd93659 common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents: 150
diff changeset
56 <ActionSymbol>:
11ff8cd93659 common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents: 150
diff changeset
57 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
58 color: app.c_sec_light
11ff8cd93659 common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents: 150
diff changeset
59 margin: dp(10)