-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAddGrid.xml
More file actions
executable file
·34 lines (34 loc) · 1.11 KB
/
Copy pathAddGrid.xml
File metadata and controls
executable file
·34 lines (34 loc) · 1.11 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
<?xml version='1.0' encoding='UTF-8'?>
<dialog buttons='accept,cancel' title='Add a Guide'>
<grid>
<columns>
<column/>
<column/>
</columns>
<rows>
<row>
<label value='Orientation:'/>
<radiogroup id='orientation'>
<radio selected='true' label='x'/>
<radio label='y'/>
</radiogroup>
</row>
<row>
<checkbox id="side_gutters" label="Side Gutters?" checked="false" />
</row>
<row>
<label value='Gutter Width:'/>
<textbox maxlength='16' multiline='false' id='gutter_width' value='12' tabindex='1'/>
</row>
<row>
<label value='#Columns:'/>
<textbox maxlength='16' multiline='false' id='num_columns' value='12' tabindex='2'/>
</row>
<row>
<label value='Columns Width:'/>
<textbox maxlength='16' multiline='false' id='column_width' value='69' tabindex='3'/>
</row>
</rows>
</grid>
<separator/>
</dialog>