Mercurial > libervia-desktop-kivy
annotate cagou/kv/common.kv @ 256:ba7b8cb7ddcd
common: don't use anymore positional argument in JidItem
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Jan 2019 20:24:48 +0100 |
parents | cf61a011f731 |
children | 7d5297984191 |
rev | line source |
---|---|
107 | 1 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client |
126 | 2 # Copyright (C) 2016-2018 Jérôme Poisson (goffi@goffi.org) |
107 | 3 |
4 # This program is free software: you can redistribute it and/or modify | |
5 # it under the terms of the GNU Affero General Public License as published by | |
6 # the Free Software Foundation, either version 3 of the License, or | |
7 # (at your option) any later version. | |
8 | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU Affero General Public License for more details. | |
13 | |
14 # You should have received a copy of the GNU Affero General Public License | |
15 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | |
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>: |
193
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
19 size_hint: 1, None |
107 | 20 height: dp(70) |
256
ba7b8cb7ddcd
common: don't use anymore positional argument in JidItem
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
21 avatar: avatar |
107 | 22 canvas.before: |
23 Color: | |
193
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
24 rgba: self.bg_color |
107 | 25 Rectangle: |
26 pos: self.pos | |
27 size: self.size | |
28 Image: | |
256
ba7b8cb7ddcd
common: don't use anymore positional argument in JidItem
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
29 id: avatar |
107 | 30 size_hint: None, None |
31 size: dp(64), dp(64) | |
32 Label: | |
193
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
33 size_hint: 1, 1 |
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
34 text_size: self.size |
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
35 color: root.color |
107 | 36 bold: True |
37 text: root.jid | |
38 halign: 'left' | |
39 valign: 'middle' | |
193
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
40 padding_x: dp(5) |
131
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
41 |
193
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
42 <JidToggle>: |
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
43 canvas.before: |
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
44 Color: |
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
45 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
|
46 Rectangle: |
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
47 pos: self.pos |
284cb5c467b0
core (common): split JidItem in 3 classes:
Goffi <goffi@goffi.org>
parents:
178
diff
changeset
|
48 size: self.size |
131
36fc269e2a32
core: changed default background color to white
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
49 |
134 | 50 <Symbol>: |
247
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
218
diff
changeset
|
51 width: dp(35) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
218
diff
changeset
|
52 height: dp(35) |
134 | 53 font_name: app.expand('{media}/fonts/fontello/font/fontello.ttf') |
54 text_size: self.size | |
247
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
218
diff
changeset
|
55 font_size: dp(30) |
134 | 56 halign: 'center' |
57 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
|
58 bg_color: 0, 0, 0, 0 |
134 | 59 canvas.before: |
60 Color: | |
61 rgba: self.bg_color | |
62 Rectangle: | |
63 pos: self.pos | |
64 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
|
65 |
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
|
66 <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
|
67 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
|
68 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
|
69 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
|
70 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
|
71 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
|
72 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
|
73 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
|
74 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
|
75 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
|
76 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
|
77 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
|
78 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
|
79 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
|
80 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
|
81 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
|
82 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
|
83 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
|
84 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
|
85 |
178
11ff8cd93659
common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents:
150
diff
changeset
|
86 <ActionSymbol>: |
11ff8cd93659
common: new ActionSymbol widget, which use a symbol to show an action
Goffi <goffi@goffi.org>
parents:
150
diff
changeset
|
87 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
|
88 color: app.c_sec_light |