blob: 4b841b0a09dee7e1f8e979786d4573e264ab440c (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<!-- the web-based Home panel of the side tray -->
<panel
follows="all"
height="570"
min_height="350"
label="home_tab"
help_topic="sidetray_home"
layout="topleft"
top="0"
left="0"
name="home_tab"
width="333">
<layout_stack
follows="all"
height="550"
layout="topleft"
left="10"
name="stack"
top_pad="10"
width="313">
<layout_panel
auto_resize="false"
height="20"
layout="topleft"
left="0"
name="nav_controls"
top="0"
user_resize="false"
width="313">
<button
follows="left|top"
enabled="false"
height="20"
label="Back"
layout="topleft"
tab_stop="false"
left="0"
name="back"
top="0"
width="70">
<button.commit_callback
function="MediaBrowser.Back" />
</button>
<button
follows="left|top"
height="20"
enabled="false"
label="Forward"
layout="topleft"
tab_stop="false"
left_pad="3"
name="forward"
top_delta="0"
width="70">
<button.commit_callback
function="MediaBrowser.Forward" />
</button>
<button
follows="left|top"
height="20"
label="Home"
layout="topleft"
tab_stop="false"
left_pad="2"
name="home"
top_delta="0"
width="70">
<button.commit_callback
function="MediaBrowser.Home" />
</button>
</layout_panel>
<layout_panel
height="530"
layout="topleft"
left_delta="0"
name="browser_layout"
top_delta="0"
width="313">
<web_browser
border_visible="false"
follows="all"
height="530"
layout="topleft"
left="0"
name="browser"
start_url="data:text/html,%3Chtml%3E%3Cbody bgcolor=%22#2A2A2A%22 text=%22eeeeee%22%3E %3Ch3%3E %0D%0A%0D%0ALoading... %3C/h3%3E %3C/body%3E%3C/html%3E"
top="0"
width="313" />
</layout_panel>
</layout_stack>
</panel>
|