-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathwindow.xml
More file actions
86 lines (85 loc) · 3.6 KB
/
window.xml
File metadata and controls
86 lines (85 loc) · 3.6 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<Window title="Loaded from éXML" style="SHADOW,CLOSE,BACKGROUND,TITLEBAR" pos="10 10" size="640 680" on-create="config_windo_load_event_for_widget">
<Notebook on-tab-change="on_tab_change_event">
<Box orientation="VERTICAL" label="Views">
<Label>This is an label!</Label>
<ProgressBar value="0.3" orientation="HORIZONTAL"/>
<Scrollbar orientation="HORIZONTAL"/>
<Separator orientation="HORIZONTAL"/>
<Spinner size="40 40" pos="0 0"/>
<ScrolledWindow size="400 200">
<Image src="data/maid.png"/>
</ScrolledWindow>
</Box>
<Box orientation="VERTICAL" label="Events" spacing="2">
<Button class="success">Success</Button>
<Button class="warning">Warning</Button>
<Button class="danger">Danger</Button>
<Button class="" on-left-click="button_click_event">Normal</Button>
<ToggleButton>ToggleButton</ToggleButton>
</Box>
<Box orientation="VERTICAL" label="Inputs">
<Box orientation="" label="Inputs">
<Frame label="CheckButton" size="200 120">
<Box orientation="VERTICAL">
<CheckButton label="CheckButton 1"/>
<CheckButton label="CheckButton 2"/>
<CheckButton label="CheckButton 3"/>
</Box>
</Frame>
<Frame label="RadioButton">
<Box orientation="VERTICAL">
<Frame label="Group 1">
<Box orientation="VERTICAL">
<RadioButton group="test" label="RadioButton 1"/>
<RadioButton group="test" label="RadioButton 2"/>
<RadioButton group="test" label="RadioButton 3"/>
</Box>
</Frame>
<Frame label="Group 2">
<Box orientation="VERTICAL">
<RadioButton group="next" label="RadioButton 4"/>
<RadioButton group="next" label="RadioButton 5"/>
<RadioButton group="next" label="RadioButton 6"/>
</Box>
</Frame>
</Box>
</Frame>
</Box>
<Entry id="entry_id" value="Value"/>
<Scale min="0" max="10" step="1" value="3"/>
<ComboBox selected="2">
<Item>Item 1</Item>
<Item>Item 2</Item>
<Item>Item 3</Item>
<Item>Item 4</Item>
<Item>Item 5</Item>
</ComboBox>
<SpinButton min="0" max="10" step="2" value="4"/>
</Box>
<Fixed label="Fixed Layout">
<Button pos="30 50">Fixed Button</Button>
<Label pos="100 10">Fixed Label</Label>
</Fixed>
<Table label="Table" spacing="10">
<Row>
<Col>
<Button>{0, 0} - {1, 1}</Button>
</Col>
<Col>
<Button rows="2">{1, 0} - {1, 2}</Button>
</Col>
</Row>
<Row>
<Col>
<Button>{0, 1} - {1, 1}</Button>
</Col>
</Row>
<Row>
<Col>
<Button cols="2">{0, 2} - {2, 1}</Button>
</Col>
</Row>
</Table>
</Notebook>
</Window>