-
Notifications
You must be signed in to change notification settings - Fork 0
/
piblock.kv
258 lines (218 loc) · 6.86 KB
/
piblock.kv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
#:import C kivy.utils.get_color_from_hex
#:import FadeTransition kivy.uix.screenmanager.FadeTransition
<RobotoQuoteLabel@Label>:
font_name: 'Roboto'
font_size: 9
color: app.themeColor()
markup: True
text_size: self.size
<RobotoStatusLabel@Label>:
font_name: 'Roboto'
font_size: 15
color: app.themeColor()
markup: True
text_size: self.size
<RobotoInfoLabel@Label>:
font_name: 'Roboto'
font_size: 15
color: app.themeColor()
markup: True
text_size: self.size
<RobotoCondensedInfoValueLabel@Label>:
font_name: 'Roboto'
font_size: 12
color: app.themeColor()
markup: True
text_size: self.size
<RobotoDateLabel@Label>:
font_name: 'Roboto'
font_size: 20
color: app.themeColor()
markup: True
<RobotoClockLabel@Label>:
font_name: 'Roboto'
font_size: 60
color: app.themeColor()
markup: True
<RobotoTenderingScreenMessageLabel@Label>:
font_name: 'Roboto'
font_size: 30
color: app.themeColor()
markup: True
<RobotoCondensedFooterLabel@Label>:
id: copyright
font_name: 'RobotoCondensed'
font_size: 12
color: app.themeColor()
markup: True
text: "Copyright © 2015, [b]Apps Design Lab[/b], All rights reserved."
<PBClock@BoxLayout>:
orientation: 'vertical'
RobotoDateLabel:
id: date
size_hint: 1, 0.25
RobotoClockLabel:
id: time
<PBStatusLabel@RobotoStatusLabel>:
text_size: self.size
<PBQuote@BoxLayout>:
orientation: 'vertical'
spacing: 0
RobotoQuoteLabel:
id: quoteinfotitlelabel
halign: 'right'
valign: 'top'
text_size: self.size
text: "[b]Latest Quote Info:[/b]"
RobotoQuoteLabel:
id: quotebtcratelabel
halign: 'right'
valign: 'top'
text_size: self.size
RobotoQuoteLabel:
id: quotecurrencyratelabel
halign: 'right'
valign: 'top'
text_size: self.size
RobotoQuoteLabel:
id: quotesrclabel
halign: 'right'
valign: 'top'
text_size: self.size
<HeaderLayout@BoxLayout>:
size_hint: 1, 0.25
#cols: 3
Image:
id: bizlogo
size_hint: 0.3, 1
PBClock:
id: clock
BoxLayout:
orientation: 'vertical'
padding: 0
size_hint: 0.3, 1
PBStatusLabel:
id: statuslabel
halign: 'right'
valign: 'top'
PBQuote:
id: quote
halign: 'right'
valign: 'top'
<FooterLayout@BoxLayout>:
size_hint: 1, 0.1
BoxLayout:
id: footer
orientation: 'horizontal'
Image:
id: pblogothumbnail
size_hint: 0.3, 1
halign: 'right'
RobotoCondensedFooterLabel:
Image:
id: adllogothumbnail
size_hint: 0.3, 1
halign: 'left'
<PiBlockStartupScreen@Screen>:
name: 'startup'
BoxLayout:
orientation: 'vertical'
spacing: 5
BoxLayout:
spacing: 10
orientation: 'vertical'
size_hint: 1, 0.7
Image:
id: pbMainBannerImage
source: app.pbBannerImagePath
BoxLayout:
orientation: 'horizontal'
spacing: 0
size_hint: 1, 0.3
BoxLayout:
orientation: 'vertical'
spacing: 0
RobotoInfoLabel:
halign: 'left'
text: "[b]PiBlock's Current Settings[/b]"
BoxLayout:
orientation: 'vertical'
spacing: 0
RobotoCondensedInfoValueLabel:
text: "[i]Default Currency:[/i] [b]{}{}[/b]".format(app.getConfigValueForKey('defaultCurrencySymbol'), app.getConfigValueForKey('defaultCurrency'))
halign: 'left'
valign: 'bottom'
RobotoCondensedInfoValueLabel:
text: "[i]Processing Timeout:[/i] [b]{} secs[/b]".format(int(app.getConfigValueForKey('timeout'))/1000)
halign: 'left'
valign: 'bottom'
RobotoCondensedInfoValueLabel:
text: "[i]SSH Control Server Port:[/i] [b]{}[/b]".format(app.getConfigValueForKey('sshPort'))
halign: 'left'
valign: 'bottom'
RobotoCondensedInfoValueLabel:
text: "[i]Email:[/i] [b]{}[/b]".format(app.getConfigValueForKey('email'))
halign: 'left'
valign: 'bottom'
Image:
id: smileyIconImage
source: app.startupSmileyImagePath
BoxLayout:
orientation: 'vertical'
spacing: 0
RobotoInfoLabel:
halign: 'right'
text: "[b]PiBlock's System Info[/b]"
BoxLayout:
orientation: 'vertical'
spacing: 0
RobotoCondensedInfoValueLabel:
text: "[i]Started @:[/i] [b]{}[/b]".format(app.lastStartupTime)
halign: 'right'
valign: 'bottom'
RobotoCondensedInfoValueLabel:
id: uptimelabel
halign: 'right'
valign: 'bottom'
RobotoCondensedInfoValueLabel:
id: fpslabel
halign: 'right'
valign: 'bottom'
RobotoCondensedInfoValueLabel:
text: "[i]Control SSH Address:[/i] [b]{}[/b]".format(app.sshControlAddressCmd)
halign: 'right'
valign: 'bottom'
<PiBlockTenderScreen@Screen>:
name: 'tender'
BoxLayout:
orientation: 'vertical'
spacing: 5
BoxLayout:
spacing: 10
orientation: 'vertical'
size_hint: 1, 0.7
Image:
id: pbMainBannerImage
source: app.acceptBitcoinImagePath
RobotoTenderingScreenMessageLabel:
id: sample
text: '[b]Ready to accept your Bitcoin![/b]'
halign: 'center'
valign: 'middle'
BoxLayout:
orientation: 'vertical'
spacing: 0
size_hint: 1, 0.3
Image:
id: smileyIconImage
source: app.tenderSmileyImagePath
GridLayout:
cols: 1
rows: 3
padding: 10
HeaderLayout:
id: header
BoxLayout:
id: content
FooterLayout:
id: footer