File: splitter.py

package info (click to toggle)
kivy 2.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 35,316 kB
  • sloc: python: 80,678; ansic: 5,326; javascript: 780; objc: 725; lisp: 195; sh: 173; makefile: 150
file content (74 lines) | stat: -rw-r--r-- 2,396 bytes parent folder | download | duplicates (3)
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
from kivy.base import runTouchApp
from kivy.lang import Builder

bl = Builder.load_string('''
BoxLayout:
    orientation: 'vertical'
    BoxLayout:
        size_hint_y: None
        height: sp(60)
        Label:
            text: 'keep_within_parent?'
        CheckBox:
            id: in_parent_box
            active: False
        Label:
            text: 'rescale_with_parent?'
        CheckBox:
            id: rescale_box
            active: False
    BoxLayout:
        orientation: 'horizontal'
        Button:
            text: 'left btn'
            size_hint_x: 0.3
        BoxLayout:
            orientation: 'vertical'
            Button:
                text: "Btn0"
            BoxLayout:
                Splitter:
                    sizable_from: 'right'
                    keep_within_parent: in_parent_box.active
                    rescale_with_parent: rescale_box.active
                    Button:
                        text: 'Btn5'
                Button:
                    text: 'Btn6'
            BoxLayout:
                sizable_from: 'top'
                BoxLayout:
                    orientation: 'horizontal'
                    BoxLayout:
                        orientation: 'vertical'
                        Button:
                            text: "Btn1"
                        Splitter:
                            sizable_from: 'top'
                            keep_within_parent: in_parent_box.active
                            rescale_with_parent: rescale_box.active
                            Button:
                                text: "Btn2"
                    Splitter:
                        sizable_from: 'left'
                        keep_within_parent: in_parent_box.active
                        rescale_with_parent: rescale_box.active
                        Button:
                            text: "Btn3"
        BoxLayout:
            orientation: 'vertical'
            size_hint_x: 0.3
            Button:
                text: 'right btn'
            Splitter:
                sizable_from: 'bottom'
                keep_within_parent: in_parent_box.active
                rescale_with_parent: rescale_box.active
                Button:
                    text: 'Btn7'
            Button:
                text: 'right btn'
''')


runTouchApp(bl)