blob: abe8344097ce80fa40d80cf0a745defd3f0f4dfa (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater
can_resize="false"
show_title="false"
can_minimize="false"
can_close="false"
header_height="10"
bg_opaque_image="Window_NoTitle_Foreground"
bg_alpha_image="Window_NoTitle_Background"
height="305"
layout="topleft"
name="create_landmark"
width="330">
<string name="favorites_bar">
Favorites bar
</string>
<text
follows="left|top"
height="15"
layout="topleft"
left="20"
name="title_label"
top="5"
font="SansSerifLargeBold"
value="Landmark added"
width="290" />
<text
follows="left|top"
height="15"
layout="topleft"
left="20"
name="name_label"
top_pad="10"
value="Name"
width="290" />
<line_editor
follows="left|top"
height="22"
layout="topleft"
max_length_bytes="63"
name="title_editor"
prevalidator="ascii"
text_readonly_color="white"
top_pad="5"
width="290" />
<text
follows="left|top"
height="15"
layout="topleft"
name="folder_label"
top_pad="10"
value="Save this landmark in:"
width="290" />
<combo_box
follows="bottom|left"
height="23"
layout="topleft"
name="folder_combo"
top_pad="2"
width="290" />
<text
follows="left|top"
layout="topleft"
top_pad="6"
left="20"
name="new_folder_textbox"
height="20"
parse_urls="true"
skip_link_underline="true"
wrap="true">
[secondlife:/// Create new folder]
</text>
<text
follows="left|top"
height="15"
layout="topleft"
name="notes_label"
top_pad="10"
value="My notes"
width="290" />
<text_editor
bg_readonly_color="DkGray0"
follows="all"
height="75"
layout="topleft"
max_length="127"
name="notes_editor"
spellcheck="true"
text_readonly_color="white"
prevalidator="ascii_with_newline"
commit_on_focus_lost="true"
top_pad="5"
width="290"
wrap="true" />
<button
follows="bottom|left|right"
height="23"
label="OK"
layout="topleft"
mouse_opaque="false"
name="ok_btn"
top_pad="10"
left="19"
width="140" />
<button
follows="bottom|left|right"
height="23"
label="Cancel"
layout="topleft"
left_pad="12"
mouse_opaque="false"
name="cancel_btn"
width="140" />
</floater>
|