blob: 6dc1bf9e9ed44b748d97b23356ec5c78db7c7c58 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
background_visible="true"
height="215"
label="instant_message"
layout="topleft"
left="0"
name="panel_notify_textbox"
top="0"
width="305">
<string
name="message_max_lines_count"
value="14" />
<!-- THIS PANEL CONTROLS TOAST HEIGHT? -->
<panel
bevel_style="none"
follows="all"
height="120"
label="info_panel"
layout="topleft"
left="0"
name="info_panel"
top="0"
width="305">
<text_editor
bg_readonly_color="Transparent"
border_visible="false"
embedded_items="false"
enabled="true"
follows="all"
font="SansSerif"
height="120"
layout="topleft"
left="10"
mouse_opaque="false"
name="text_editor_box"
read_only="true"
text_color="White"
text_readonly_color="White"
top="0"
visible="true"
width="285"
wrap="true"
parse_highlights="true"
parse_urls="true"/>
</panel>
<panel
bevel_style="none"
follows="left|right|bottom"
height="55"
label="info_panel"
layout="topleft"
left="0"
name="textbox_panel"
top_pad="5"
width="305">
<text_editor
parse_urls="true"
enabled="true"
follows="all"
height="50"
layout="topleft"
left="10"
max_length="250"
name="message"
parse_highlights="true"
read_only="false"
top ="0"
type="string"
use_ellipses="true"
value="message"
width="285"
word_wrap="true">
</text_editor>
</panel>
<panel
background_visible="false"
follows="left|right|bottom"
height="25"
width="290"
label="control_panel"
layout="topleft"
left="10"
name="control_panel"
top_pad="5">
<!--
Notes:
This panel holds the Ignore button and possibly other buttons of notification.
-->
<button
top="0"
follows="top|left"
height="20"
label="Submit"
layout="topleft"
name="btn_submit"
width="70" />
<button
follows="top|right"
height="20"
label="Ignore"
layout="topleft"
left="215"
name="ignore_btn"
top="0"
width="70" />
</panel>
</panel>
|