Mercurial > libervia-desktop-kivy
annotate cagou/core/constants.py @ 464:be8ed5e4c718
core: modified names constants according to global renaming
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 20 Mar 2021 14:26:29 +0100 |
parents | 3c9ba4a694ef |
children | f0d497b8f57c |
rev | line source |
---|---|
378 | 1 #!/usr/bin/env python3 |
9 | 2 |
378 | 3 # Cagou: a SàT frontend |
461 | 4 # Copyright (C) 2016-2021 Jérôme Poisson (goffi@goffi.org) |
9 | 5 |
6 # This program is free software: you can redistribute it and/or modify | |
7 # it under the terms of the GNU Affero General Public License as published by | |
8 # the Free Software Foundation, either version 3 of the License, or | |
9 # (at your option) any later version. | |
10 | |
11 # This program is distributed in the hope that it will be useful, | |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 # GNU Affero General Public License for more details. | |
15 | |
16 # You should have received a copy of the GNU Affero General Public License | |
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 | |
19 from sat_frontends.quick_frontend import constants | |
302
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
282
diff
changeset
|
20 import cagou |
9 | 21 |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
312
diff
changeset
|
22 # Kivy must not be imported here due to log hijacking see core/kivy_hack.py |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
312
diff
changeset
|
23 |
9 | 24 |
25 class Const(constants.Const): | |
464
be8ed5e4c718
core: modified names constants according to global renaming
Goffi <goffi@goffi.org>
parents:
461
diff
changeset
|
26 APP_NAME = "Libervia Desktop" |
be8ed5e4c718
core: modified names constants according to global renaming
Goffi <goffi@goffi.org>
parents:
461
diff
changeset
|
27 APP_COMPONENT = "desktop/mobile" |
be8ed5e4c718
core: modified names constants according to global renaming
Goffi <goffi@goffi.org>
parents:
461
diff
changeset
|
28 APP_NAME_ALT = "Cagou" |
be8ed5e4c718
core: modified names constants according to global renaming
Goffi <goffi@goffi.org>
parents:
461
diff
changeset
|
29 APP_NAME_FILE = "libervia_desktop" |
302
f55b60659ec1
core (about): improved "about" popup:
Goffi <goffi@goffi.org>
parents:
282
diff
changeset
|
30 APP_VERSION = cagou.__version__ |
9 | 31 LOG_OPT_SECTION = APP_NAME.lower() |
32 CONFIG_SECTION = APP_NAME.lower() | |
312 | 33 WID_SELECTOR = 'selector' |
34 ICON_SIZES = ('small', 'medium') # small = 32, medium = 44 | |
35 DEFAULT_WIDGET_ICON = '{media}/misc/black.png' | |
86 | 36 |
322
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
312
diff
changeset
|
37 BTN_HEIGHT = '35dp' |
e2b51663d8b8
core, android: new share widget + added Cagou to "share" menu:
Goffi <goffi@goffi.org>
parents:
312
diff
changeset
|
38 |
312 | 39 PLUG_TYPE_WID = 'wid' |
40 PLUG_TYPE_TRANSFER = 'transfer' | |
97
5d2289127bb7
menu (upload): better menu using dedicated widget:
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
41 |
312 | 42 TRANSFER_UPLOAD = "upload" |
43 TRANSFER_SEND = "send" | |
176
2cfef8fbfd4e
core: moved main colors to constants
Goffi <goffi@goffi.org>
parents:
126
diff
changeset
|
44 |
247
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
45 COLOR_PRIM = (0.98, 0.98, 0.98, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
46 COLOR_PRIM_LIGHT = (1, 1, 1, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
47 COLOR_PRIM_DARK = (0.78, 0.78, 0.78, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
48 COLOR_SEC = (0.27, 0.54, 1.0, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
49 COLOR_SEC_LIGHT = (0.51, 0.73, 1.0, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
50 COLOR_SEC_DARK = (0.0, 0.37, 0.8, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
51 |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
52 COLOR_INFO = COLOR_PRIM_LIGHT |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
53 COLOR_WARNING = (1.0, 1.0, 0.0, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
54 COLOR_ERROR = (1.0, 0.0, 0.0, 1) |
cf61a011f731
core (notes), common (symbol): added an icon showing note level:
Goffi <goffi@goffi.org>
parents:
187
diff
changeset
|
55 |
274 | 56 COLOR_BTN_LIGHT = (0.4, 0.4, 0.4, 1) |
325 | 57 |
58 # values are in dp | |
422
efee0e0afb78
core (common): moved simple_xhtml's image code to a generic "SizedImage" widget
Goffi <goffi@goffi.org>
parents:
420
diff
changeset
|
59 IMG_MAX_WIDTH = 400 |
efee0e0afb78
core (common): moved simple_xhtml's image code to a generic "SizedImage" widget
Goffi <goffi@goffi.org>
parents:
420
diff
changeset
|
60 IMG_MAX_HEIGHT = 400 |
420 | 61 |
62 # files | |
63 FILE_DEST_DOWNLOAD = "DOWNLOAD" | |
64 FILE_DEST_CACHE = "CACHE" |