13
|
1 # Cagou: desktop/mobile frontend for Salut à Toi XMPP client |
126
|
2 # Copyright (C) 2016-2018 Jérôme Poisson (goffi@goffi.org) |
13
|
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 |
154
|
17 <WHWrapper>: |
|
18 carousel: carousel |
|
19 _sp_top_y: self.y + self.height - self.sp_size |
|
20 padding: self.split_size + self.split_margin, self.split_size + self.split_margin, 0, 0 |
|
21 |
|
22 canvas.before: |
|
23 # 2 lines to indicate the split zones |
|
24 Color: |
|
25 rgba: self.split_color if self._split != 'left' else self.split_color_del if self._split_del else self.split_color_move |
|
26 Rectangle: |
|
27 pos: self.pos |
|
28 size: self.split_size, self.height |
|
29 Color: |
|
30 rgba: self.split_color if self._split != 'top' else self.split_color_del if self._split_del else self.split_color_move |
|
31 Rectangle: |
|
32 pos: self.x, self.y + self.height - self.split_size |
|
33 size: self.width, self.split_size |
|
34 # 3 dots to indicate the main split points |
|
35 Color: |
|
36 rgba: 0, 0, 0, 1 |
|
37 Point: |
|
38 # left |
|
39 points: self.x + self.sp_size, self.y + self.height / 2 - self.sp_size - self.sp_space, self.x + self.sp_size, self.y + self.height / 2, self.x + self.sp_size, self.y + self.height / 2 + self.sp_size + self.sp_space |
|
40 pointsize: self.sp_size |
|
41 Point: |
|
42 # top |
|
43 points: self.x + self.width / 2 - self.sp_size - self.sp_space, root._sp_top_y, self.x + self.width / 2, root._sp_top_y, self.x + self.width / 2 + self.sp_size + self.sp_space, root._sp_top_y |
|
44 pointsize: self.sp_size |
|
45 |
|
46 Carousel: |
|
47 id: carousel |
|
48 direction: 'right' |
|
49 ignore_perpendicular_swipes: True |
|
50 loop: True |