blob: d86cb92981040bc1ad28386c9b31b2b3fcdcb976 (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
height="380"
layout="topleft"
name="panel_snapshot_profile"
width="490">
<icon
follows="top|left"
height="18"
image_name="Snapshot_Profile"
layout="topleft"
left="12"
mouse_opaque="true"
name="title_icon"
top="7"
width="18" />
<text
follows="top|left|right"
font="SansSerifBold"
height="14"
layout="topleft"
left_pad="12"
length="1"
name="title"
right="-10"
text_color="white"
type="string"
top_delta="4">
Profile
</text>
<view_border
bevel_style="in"
follows="left|top|right"
height="1"
left="9"
layout="topleft"
name="hr"
right="-5"
top_pad="5"
/>
<combo_box
follows="left|top|right"
height="23"
label="Resolution"
layout="topleft"
left="10"
right="-5"
name="profile_size_combo"
top_pad="5"
width="180">
<combo_box.item
label="Current Window"
name="CurrentWindow"
value="[i0,i0]" />
<combo_box.item
label="640x480"
name="640x480"
value="[i640,i480]" />
<combo_box.item
label="800x600"
name="800x600"
value="[i800,i600]" />
<combo_box.item
label="1024x768"
name="1024x768"
value="[i1024,i768]" />
<combo_box.item
label="Custom"
name="Custom"
value="[i-1,i-1]" />
</combo_box>
<spinner
allow_text_entry="false"
decimal_digits="0"
follows="left|top"
height="20"
increment="32"
label="Width x Height"
label_width="90"
layout="topleft"
left="10"
max_val="6016"
min_val="32"
name="profile_snapshot_width"
top_pad="7"
width="144" />
<spinner
allow_text_entry="false"
decimal_digits="0"
follows="left|top"
height="20"
increment="32"
label=""
label_width="0"
layout="topleft"
left_pad="0"
max_val="6016"
min_val="32"
name="profile_snapshot_height"
top_delta="0"
width="54" />
<check_box
top_pad="12"
label="Constrain proportions"
layout="topleft"
left="10"
name="profile_keep_aspect_check" />
<text
length="1"
follows="top|left|right"
height="16"
layout="topleft"
left="12"
name="caption_label"
right="-10"
top_pad="4"
type="string">
Caption:
</text>
<text_editor
follows="top|left|right"
height="35"
layout="topleft"
left="10"
right="-5"
length="1"
max_length="700"
name="caption"
width="200"
top_pad="2"
type="string"
word_wrap="true">
</text_editor>
<check_box
follows="left|top"
initial_value="true"
label="Include location"
layout="topleft"
left_delta="0"
height="18"
name="add_location_cb"
top_pad="3" />
<button
follows="right|bottom"
height="23"
label="Cancel"
layout="topleft"
name="cancel_btn"
right="-5"
top="337"
width="97">
<button.commit_callback
function="PostToProfile.Cancel" />
</button>
<button
follows="left|bottom"
height="23"
label="Post"
layout="topleft"
left="10"
name="post_btn"
top_delta="0"
width="97">
<button.commit_callback
function="PostToProfile.Send" />
</button>
</panel>
|