-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplitter.xul
82 lines (67 loc) · 3.46 KB
/
splitter.xul
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
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window title="XUL Splitters"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script>
<![CDATA[
]]>
</script>
<description><html:h1>XUL Splitters</html:h1></description>
<vbox flex="1" style="overflow: auto">
<groupbox orient="horizontal" flex="1">
<caption label="collapse before" />
<groupbox flex="1"><label flex="1" value="Left side" /></groupbox>
<splitter collapse="before" ><grippy /></splitter>
<groupbox flex="1"><label flex="1" value="Right side" /></groupbox>
</groupbox>
<groupbox orient="horizontal" flex="1">
<caption label="collapse after" />
<groupbox flex="1"><label flex="1" value="Left side" /></groupbox>
<splitter collapse="after" ><grippy /></splitter>
<groupbox flex="1"><label flex="1" value="Right side" /></groupbox>
</groupbox>
<groupbox orient="horizontal" flex="1">
<caption label="no collapse" />
<groupbox flex="1"><label flex="1" value="Left side" /></groupbox>
<splitter collapse="none" />
<groupbox flex="1"><label flex="1" value="Right side" /></groupbox>
</groupbox>
<groupbox orient="horizontal" flex="1">
<caption label="resize the closest widgets on both sides" />
<groupbox flex="1"><description>Left most side</description></groupbox>
<groupbox flex="1"><description>Middle Left side</description></groupbox>
<groupbox flex="1"><description>Closest Left side</description></groupbox>
<splitter collapse="none" resizebefore="closest" resizeafter="closest" />
<groupbox flex="1"><description>Closest Right side</description></groupbox>
<groupbox flex="1"><description>Middle Right side</description></groupbox>
<groupbox flex="1"><description>Right most side</description></groupbox>
</groupbox>
<groupbox orient="horizontal" flex="1">
<caption label="resize the farthest widgets on both sides" />
<groupbox flex="1"><description>Left most side</description></groupbox>
<groupbox flex="1"><description>Middle Left side</description></groupbox>
<groupbox flex="1"><description>Closest Left side</description></groupbox>
<splitter collapse="none" resizebefore="farthest" resizeafter="farthest" />
<groupbox flex="1"><description>Closest Right side</description></groupbox>
<groupbox flex="1"><description>Middle Right side</description></groupbox>
<groupbox flex="1"><description>Right most side</description></groupbox>
</groupbox>
<groupbox orient="horizontal" flex="1">
<caption label="grow the widgets on the right side" />
<groupbox flex="1"><description>Left side</description></groupbox>
<splitter collapse="none" resizebefore="grow" resizeafter="grow" />
<groupbox flex="1"><description>Closest Right side</description></groupbox>
<groupbox flex="1"><description>Middle Right side</description></groupbox>
<groupbox flex="1"><description>Right most side</description></groupbox>
</groupbox>
<groupbox orient="horizontal" flex="1">
<caption label="double splitters" />
<groupbox flex="1"><label flex="1" value="Left side" /></groupbox>
<splitter collapse="before" ><grippy /></splitter>
<groupbox flex="1"><label flex="1" value="Middle" /></groupbox>
<splitter collapse="after" ><grippy /></splitter>
<groupbox flex="1"><label flex="1" value="Right side" /></groupbox>
</groupbox>
</vbox>
</window>