blob: 480abec55873ac2353ad1abbf2d10bb52356879a (
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
|
<panel
height="400"
width="304"
follows="all"
layout="topleft"
name="panel_facebook_status">
<layout_stack
layout="topleft"
border_size="0"
height="392"
follows="all"
orientation="vertical"
name="stack_status"
top="8">
<layout_panel
name="status_detail_panel"
height="367">
<text
length="1"
follows="top|left|right"
font="SansSerif"
height="16"
left="9"
name="status_caption_label"
top="13"
type="string">
What's on your mind?
</text>
<text_editor
follows="left|top|right"
height="150"
width="250"
left="9"
length="1"
max_length="700"
name="status_message"
type="string"
word_wrap="true">
</text_editor>
</layout_panel>
<layout_panel
name="status_button_panel"
height="25">
<button
follows="left|bottom"
top="0"
left="9"
height="23"
label="Post"
name="post_status_btn"
width="100">
<button.commit_callback
function="SocialSharing.SendStatus" />
</button>
<button
follows="left|bottom"
height="23"
label="Cancel"
name="cancel_status_btn"
left_pad="15"
top_delta="0"
width="100">
<button.commit_callback
function="SocialSharing.Cancel" />
</button>
</layout_panel>
</layout_stack>
</panel>
|