blob: 22e6598352714a4b700c12bc4fa7e23e3beb05f1 (
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
168
|
<panel
height="400"
width="272"
layout="topleft"
follows="all"
name="panel_facebook_photo">
<combo_box
control_name="FacebookPhotoResolution"
follows="left|top"
layout="topleft"
top="7"
left="10"
name="resolution_combobox"
tool_tip="Image resolution"
height="21"
width="124">
<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="1200x630"
name="1200x630"
value="[i1200,i630]" />
</combo_box>
<combo_box
control_name="FacebookPhotoFilters"
follows="left|top"
layout="topleft"
name="filters_combobox"
tool_tip="Image filters"
top="7"
left_pad="4"
height="21"
width="124">
<combo_box.item
label="No Filter"
name="NoFilter"
value="NoFilter" />
</combo_box>
<panel
height="150"
width="252"
visible="true"
layout="topleft"
name="thumbnail_placeholder"
top_pad="5"
follows="left|top|rith"
right="-10"
left="10">
</panel>
<text
follows="left|top"
layout="topleft"
font="SansSerif"
text_color="EmphasisColor"
height="14"
top_pad="2"
left="10"
length="1"
halign="center"
name="working_lbl"
translate="false"
type="string"
visible="true"
width="251">
Refreshing...
</text>
<view_border
bevel_style="in"
follows="left|top"
layout="topleft"
height="1"
left="10"
name="refresh_border"
width="250"
top_pad="0"/>
<button
follows="left|top"
layout="topleft"
height="23"
label="Refresh"
left="10"
top_pad="5"
name="new_snapshot_btn"
tool_tip="Click to refresh"
visible="true"
width="100" >
<button.commit_callback
function="SocialSharing.RefreshPhoto" />
</button>
<button
follows="right|top"
layout="topleft"
height="23"
label="Preview"
right="-10"
top_delta="0"
name="big_preview_btn"
tool_tip="Click to toggle preview"
is_toggle="true"
visible="true"
width="100" >
<button.commit_callback
function="SocialSharing.BigPreview" />
</button>
<text
length="1"
follows="top|left|right"
layout="topleft"
font="SansSerif"
height="16"
left="10"
name="caption_label"
top_pad="20"
type="string">
Comment (optional):
</text>
<text_editor
follows="left|top|right|bottom"
layout="topleft"
height="87"
width="250"
left="10"
right="-10"
length="1"
max_length="700"
name="photo_caption"
type="string"
word_wrap="true">
</text_editor>
<button
follows="left|top"
layout="topleft"
top_pad="22"
left="10"
height="23"
label="Post"
name="post_photo_btn"
width="100">
<button.commit_callback
function="SocialSharing.SendPhoto" />
</button>
<button
follows="right|top"
layout="topleft"
height="23"
label="Cancel"
name="cancel_photo_btn"
right="-10"
top_delta="0"
width="100">
<button.commit_callback
function="SocialSharing.Cancel" />
</button>
</panel>
|