blob: a277294be17156c0030cfa5c44a863fbe8da4fdb (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
can_resize="true"
height="440"
layout="topleft"
min_height="140"
min_width="467"
name="floater_about"
save_rect="true"
title="Media Browser"
width="820">
<!--TODO: ADD CLOSE X TO WINDOW-->
<!-- <button
follows="bottom|right"
height="20"
label="Close"
layout="topleft"
left_pad="80"
name="close"
top_delta="0"
width="70">
<button.commit_callback
function="MediaBrowser.Close" />
</button>-->
<layout_stack
follows="left|right|top|bottom"
layout="topleft"
left="10"
name="stack1"
top="20"
width="800"
height="400"
>
<layout_panel
auto_resize="false"
layout="topleft"
name="nav_controls"
user_resize="false">
<button
left="1"
follows="left|top"
font="SansSerifSmall"
height="20"
image_disabled="PushButton_Disabled"
image_disabled_selected="PushButton_Disabled"
image_overlay="Arrow_Left_Off"
image_selected="PushButton_Selected"
image_unselected="PushButton_Off"
hover_glow_amount="0.15"
layout="topleft"
name="back"
picture_style="true"
tool_tip="Go back to previous location"
width="20">
<button.commit_callback
function="MediaBrowser.Back" />
</button>
<button
follows="left|top"
font="SansSerifSmall"
height="20"
image_disabled="PushButton_Disabled"
image_disabled_selected="PushButton_Disabled"
image_overlay="Arrow_Right_Off"
image_selected="PushButton_Selected"
image_unselected="PushButton_Off"
hover_glow_amount="0.15"
layout="topleft"
left_pad="2"
name="forward"
picture_style="true"
tool_tip="Go forward one location"
width="20">
<button.commit_callback
function="MediaBrowser.Forward" />
</button>
<button
enabled="false"
follows="left|top"
height="20"
label="Reload"
layout="topleft"
left_pad="2"
name="reload"
width="70">
<button.commit_callback
function="MediaBrowser.Refresh" />
</button>
<combo_box
allow_text_entry="true"
name="address"
follows="left|right|top"
halign="right"
height="20"
label="Location"
layout="topleft"
left_pad="5"
max_chars="254"
mouse_opaque="false"
top_delta="0"
width="340">
<combo_box.commit_callback
function="MediaBrowser.EnterAddress" />
</combo_box>
<button
enabled="false"
follows="right|top"
height="20"
label="Go"
layout="topleft"
left_pad="5"
name="go"
width="50">
<button.commit_callback
function="MediaBrowser.Go" />
</button>
<button
follows="right|top"
height="20"
left_pad="20"
label="Open in My Browser"
layout="topleft"
name="open_browser"
width="145">
<button.commit_callback
function="MediaBrowser.OpenWebBrowser" />
</button>
<check_box
control_name="UseExternalBrowser"
follows="right|top"
label="Always"
layout="topleft"
left_pad="5"
width="140"
name="open_always" />
<!--
<button
enabled="false"
follows="left|top"
height="20"
label="Send Current URL to Parcel"
layout="topleft"
left="0"
name="assign"
top="0"
width="200">
<button.commit_callback
function="MediaBrowser.Assign" />
</button>
</layout_panel>
<layout_panel
auto_resize="false"
layout="topleft"
name="browser"
left="0"
top="0"
user_resize="false">-->
<web_browser
follows="left|right|top|bottom"
layout="topleft"
left="0"
name="browser" />
</layout_panel>
</layout_stack>
</floater>
|