forked from brunojulia/quantumlabUB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquantumlab.kv
55 lines (49 loc) · 1.51 KB
/
quantumlab.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
<QuantumLabScreen>:
orientation: "vertical"
Label:
text: "QuantumLab UB"
font_size: 64
BoxLayout:
orientation: "horizontal"
padding: [0.1,0.1,0.1,0.1]
canvas.before:
Color:
rgba: 0.8, 0.8, 1, 0.2
Rectangle:
pos: self.pos
size: self.size
Image:
source: "images/gaussian.png"
Label:
text: "Classical vs Quantum traps"
markup: True
Button:
size_hint_x: (0.25)
text: "Run"
on_press: root.run_python("ClavsQua/clavsqua/clavsqua.py")
BoxLayout:
orientation: "horizontal"
padding: [0.1,0.1,0.1,0.1]
canvas.before:
Color:
rgba: 1, 0.8, 0.8, 0.2
Rectangle:
pos: self.pos
size: self.size
Image:
source: "images/doubleslit.png"
Label:
text: "Double-slit experiment"
markup: True
Button:
size_hint_x: (0.25)
text: "Run"
on_press: root.run_python("doubleslit/doubleslit.py")
BoxLayout:
orientation: "horizontal"
Label:
text: "[b]Made by:[/b]\nJan Albert Iglesias\nDaniel Allepuz Requena\n[b]With the help and supervision of:[/b]\nMuntsa Guilleumas Morell\nBruno Juli"+u'\xe1'+" D"+u'\xed'+"az"
markup: True
font_size: 20
Image:
source: "images/ub_logo.png"