summaryrefslogtreecommitdiffstats
path: root/examples/android/catalog/qml/ButtonView.qml
blob: ce09d1e6eb9314e41332706a56b3afdd162ee353 (plain)
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
import android.view 0.21
import android.widget 0.21
import android.support.v7.widget 0.21

ScrollView {
    LinearLayout {
        padding: 48
        orientation: LinearLayout.VERTICAL

        CardView {
            LinearLayout {
                padding: 48
                orientation: LinearLayout.VERTICAL

                TextView { text: "Button"; textSize: 18 }
                Space { LinearLayout.height: 48 }
                LinearLayout {
                    Button { text: "Ok" }
                    Button {
                        text: "Cancel"
                        onClick: toast.show()
                        Toast {
                            id: toast
                            text: "Cancelled"
                        }
                    }
                    Space {
                        LinearLayout.weight: 1
                        LinearLayout.width: Layout.WRAP_CONTENT
                    }
                    Button {
                        text: "Attach"
                        onClick: menu.show()
                        PopupMenu {
                            id: menu
                            MenuItem { title: "Image" }
                            MenuItem { title: "Document" }
                        }
                    }
                }
            }
        }

        Space { LinearLayout.height: 48 }

        CardView {
            LinearLayout {
                padding: 48
                orientation: LinearLayout.VERTICAL

                TextView { text: "ToggleButton"; textSize: 18 }
                Space { LinearLayout.height: 48 }
                LinearLayout {
                    ToggleButton { checked: true }
                    ToggleButton { }
                }
            }
        }

        Space { LinearLayout.height: 48 }

        CardView {
            LinearLayout {
                padding: 48
                orientation: LinearLayout.VERTICAL

                TextView { text: "CheckBox"; textSize: 18 }
                Space { LinearLayout.height: 48 }
                CheckBox { text: "E-mail"; checked: true }
                CheckBox { text: "Calendar" }
                CheckBox { text: "Contacts" }
            }
        }

        Space { LinearLayout.height: 48 }

        CardView {
            LinearLayout {
                padding: 48
                orientation: LinearLayout.VERTICAL

                TextView { text: "RadioButton"; textSize: 18 }
                Space { LinearLayout.height: 48 }
                RadioGroup {
                    RadioButton { text: "Portrait";  checked: true }
                    RadioButton { text: "Landscape" }
                    RadioButton { text: "Automatic" }
                }
            }
        }

        Space { LinearLayout.height: 48 }

        CardView {
            LinearLayout {
                padding: 48
                orientation: LinearLayout.VERTICAL

                TextView { text: "Switch"; textSize: 18 }
                Space { LinearLayout.height: 48 }
                Switch { text: "Wifi"; checked: true }
                Space { LinearLayout.height: 24 }
                Switch { text: "Bluetooth" }
            }
        }
    }
}