blob: 76a350dd294729e73dfa72559a2c26c3e730ba45 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
border="true"
can_close="true"
can_minimize="true"
save_rect="true"
help_topic="spelling_settings"
can_resize="false"
height="315"
width="490"
name="spellcheck_floater"
title="Spell Checker Settings">
<check_box
bottom_delta="30"
control_name="SpellCheck"
left_delta="15"
height="16"
width="100"
follows="left|top"
label="Enable spell checker"
name="spellcheck_enable" />
<view_border
top_pad="10"
left="2"
height="0"
width="491"
follows="left|top"
bevel_style="none"
border_thickness="1"
mouse_opaque="false"
name="divisor1"/>
<text
enabled_control="SpellCheck"
follows="top|left"
height="10"
layout="topleft"
left="38"
mouse_opaque="false"
name="spellcheck_main"
top_pad="15"
type="string"
width="90"
>
Main dictionary :
</text>
<combo_box
enabled_control="SpellCheck"
follows="top|left"
height="23"
layout="topleft"
left_pad="10"
name="spellcheck_main_combo"
top_pad="-15"
width="175"
/>
<text
enabled_control="SpellCheck"
follows="top|left"
height="10"
label="Logs:"
layout="topleft"
left="38"
mouse_opaque="false"
name="spellcheck_additional"
top_pad="15"
type="string"
width="190"
>
Additional dictionaries :
</text>
<text
follows="top|left"
height="12"
layout="topleft"
left="55"
length="1"
name="spellcheck_available"
top_pad="10"
type="string"
width="175">
Available
</text>
<text
follows="top|left"
height="12"
type="string"
left_pad="45"
length="1"
layout="topleft"
name="spellcheck_active"
width="175">
Active
</text>
<scroll_list
enabled_control="SpellCheck"
follows="top|left"
height="155"
layout="topleft"
left="55"
multi_select="true"
name="spellcheck_available_list"
sort_column="0"
sort_ascending="true"
width="175" />
<button
enabled_control="SpellCheck"
follows="top|left"
height="26"
image_overlay="Arrow_Right"
hover_glow_amount="0.15"
layout="topleft"
left_pad="10"
name="spellcheck_moveright_btn"
top_delta="50"
width="25">
</button>
<button
enabled_control="SpellCheck"
follows="top|left"
height="26"
image_overlay="Arrow_Left"
hover_glow_amount="0.15"
layout="topleft"
name="spellcheck_moveleft_btn"
top_delta="30"
width="25">
</button>
<scroll_list
enabled_control="SpellCheck"
follows="top|left"
height="155"
layout="topleft"
left_pad="10"
multi_select="true"
name="spellcheck_active_list"
sort_column="0"
sort_ascending="true"
top_pad="-105"
width="175"
/>
<button
enabled="false"
follows="left|top"
height="23"
label="Remove"
layout="topleft"
left="55"
name="spellcheck_remove_btn"
top_pad="5"
width="80" />
<button
follows="left|top"
height="23"
label="Import..."
layout="topleft"
left_pad="15"
name="spellcheck_import_btn"
top_delta="0"
width="80" />
</floater>
|