Mxx_ru 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +26 -0
- data/NEWS +52 -0
- data/README +21 -0
- data/Rakefile +32 -0
- data/examples/exe_and_lib/main.cpp +15 -0
- data/examples/exe_and_lib/prj.rb +11 -0
- data/examples/exe_and_lib/say.cpp +13 -0
- data/examples/exe_and_lib/say.hpp +11 -0
- data/examples/exe_and_lib/say.rb +7 -0
- data/examples/exe_dll_lib/inout.cpp +15 -0
- data/examples/exe_dll_lib/inout.hpp +26 -0
- data/examples/exe_dll_lib/inout.rb +18 -0
- data/examples/exe_dll_lib/main.cpp +23 -0
- data/examples/exe_dll_lib/prj.rb +11 -0
- data/examples/exe_dll_lib/say.cpp +13 -0
- data/examples/exe_dll_lib/say.hpp +12 -0
- data/examples/exe_dll_lib/say.rb +9 -0
- data/examples/exe_dll_lib_2/build.rb +7 -0
- data/examples/exe_dll_lib_2/inout/inout.cpp +15 -0
- data/examples/exe_dll_lib_2/inout/inout.hpp +26 -0
- data/examples/exe_dll_lib_2/inout/prj.rb +16 -0
- data/examples/exe_dll_lib_2/main/main.cpp +23 -0
- data/examples/exe_dll_lib_2/main/prj.rb +9 -0
- data/examples/exe_dll_lib_2/say/prj.rb +8 -0
- data/examples/exe_dll_lib_2/say/say.cpp +13 -0
- data/examples/exe_dll_lib_2/say/say.hpp +12 -0
- data/examples/simple_exe/main.cpp +26 -0
- data/examples/simple_exe/prj.rb +7 -0
- data/lib/mxx_ru/abstract_target.rb +283 -0
- data/lib/mxx_ru/binary_target.rb +89 -0
- data/lib/mxx_ru/binary_unittest.rb +130 -0
- data/lib/mxx_ru/cpp/analyzer.rb +230 -0
- data/lib/mxx_ru/cpp/composite.rb +106 -0
- data/lib/mxx_ru/cpp/detect_toolset.rb +122 -0
- data/lib/mxx_ru/cpp/mode.rb +85 -0
- data/lib/mxx_ru/cpp/obj_placement.rb +321 -0
- data/lib/mxx_ru/cpp/qt.rb +333 -0
- data/lib/mxx_ru/cpp/rucodegen.rb +114 -0
- data/lib/mxx_ru/cpp/source_file.rb +71 -0
- data/lib/mxx_ru/cpp/target.rb +1371 -0
- data/lib/mxx_ru/cpp/toolset.rb +1029 -0
- data/lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb +52 -0
- data/lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb +451 -0
- data/lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb +56 -0
- data/lib/mxx_ru/cpp/toolsets/c89_nsk.rb +56 -0
- data/lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb +273 -0
- data/lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb +54 -0
- data/lib/mxx_ru/cpp/toolsets/gcc_family.rb +382 -0
- data/lib/mxx_ru/cpp/toolsets/gcc_linux.rb +60 -0
- data/lib/mxx_ru/cpp/toolsets/gcc_mingw.rb +144 -0
- data/lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb +87 -0
- data/lib/mxx_ru/cpp/toolsets/vc7.rb +62 -0
- data/lib/mxx_ru/cpp/toolsets/vc8.rb +452 -0
- data/lib/mxx_ru/cpp/toolsets/vc_family.rb +428 -0
- data/lib/mxx_ru/cpp.rb +36 -0
- data/lib/mxx_ru/ex.rb +134 -0
- data/lib/mxx_ru/makestyle_generator.rb +138 -0
- data/lib/mxx_ru/textfile_unittest.rb +284 -0
- data/lib/mxx_ru/util.rb +258 -0
- data/tests/c/pcre/chartables.c +183 -0
- data/tests/c/pcre/config.h +99 -0
- data/tests/c/pcre/dftables.c +167 -0
- data/tests/c/pcre/get.c +349 -0
- data/tests/c/pcre/internal.h +677 -0
- data/tests/c/pcre/maketables.c +140 -0
- data/tests/c/pcre/pcre.c +8304 -0
- data/tests/c/pcre/pcre.h +193 -0
- data/tests/c/pcre/pcre.rb +14 -0
- data/tests/c/pcre/pcredemo.c +316 -0
- data/tests/c/pcre/pcregrep.c +642 -0
- data/tests/c/pcre/pcreposix.c +305 -0
- data/tests/c/pcre/pcreposix.h +88 -0
- data/tests/c/pcre/pcretest.c +1483 -0
- data/tests/c/pcre/perltest +211 -0
- data/tests/c/pcre/printint.c +360 -0
- data/tests/c/pcre/study.c +472 -0
- data/tests/cpp/mswin_res_dll/build.rb +14 -0
- data/tests/cpp/mswin_res_dll/dll.cpp +17 -0
- data/tests/cpp/mswin_res_dll/dll.rb +30 -0
- data/tests/cpp/mswin_res_dll/dll.rc +48 -0
- data/tests/cpp/mswin_res_dll/h/dll.hpp +8 -0
- data/tests/cpp/mswin_res_dll/h/res.h +3 -0
- data/tests/cpp/mswin_res_dll/main.cpp +13 -0
- data/tests/cpp/mswin_res_dll/main.rb +20 -0
- data/tests/cpp/mswin_res_dll/res/tree_fol.bmp +0 -0
- data/tests/cpp/mswin_res_dll/res/tree_state_1.bmp +0 -0
- data/tests/cpp/mswin_res_dll/res/tree_state_2.bmp +0 -0
- data/tests/cpp/mswin_res_exe/build.rb +23 -0
- data/tests/cpp/mswin_res_exe/h/res.h +3 -0
- data/tests/cpp/mswin_res_exe/main.cpp +17 -0
- data/tests/cpp/mswin_res_exe/main.rc +48 -0
- data/tests/cpp/mswin_res_exe/res/tree_fol.bmp +0 -0
- data/tests/cpp/mswin_res_exe/res/tree_state_1.bmp +0 -0
- data/tests/cpp/mswin_res_exe/res/tree_state_2.bmp +0 -0
- data/tests/cpp/rucodegen/host_config.cpp +20 -0
- data/tests/cpp/rucodegen/host_config.rb +14 -0
- data/tests/cpp/rucodegen/impl/conn_params.cpp +7 -0
- data/tests/cpp/rucodegen/impl/conn_params.rb +14 -0
- data/tests/cpp/rucodegen/impl/h/conn_params.hpp +10 -0
- data/tests/cpp/rucodegen/prj.rb +17 -0
- data/tests/cpp/textfile_unittest/build.rb +8 -0
- data/tests/cpp/textfile_unittest/etalons/out_0.txt +0 -0
- data/tests/cpp/textfile_unittest/etalons/out_1.txt +1 -0
- data/tests/cpp/textfile_unittest/etalons/out_128.txt +128 -0
- data/tests/cpp/textfile_unittest/main.cpp +89 -0
- data/tests/cpp/textfile_unittest/prj.rb +8 -0
- data/tests/cpp/textfile_unittest/prj.ut.rb +18 -0
- data/tests/cpp/toolset_name.rb +6 -0
- data/tests/cpp/vc_cleanup/cout.log +72 -0
- data/tests/cpp/vc_cleanup/dll_hi.cpp +5 -0
- data/tests/cpp/vc_cleanup/exe_hi.cpp +10 -0
- data/tests/cpp/vc_cleanup/lib_hi.cpp +5 -0
- data/tests/cpp/vc_cleanup/prj_dll_no_implib.rb +10 -0
- data/tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb +11 -0
- data/tests/cpp/vc_cleanup/prj_dll_with_implib.rb +11 -0
- data/tests/cpp/vc_cleanup/prj_dll_with_implib_simple_target_root.rb +14 -0
- data/tests/cpp/vc_cleanup/prj_exe_no_implib.rb +10 -0
- data/tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb +11 -0
- data/tests/cpp/vc_cleanup/prj_lib.rb +10 -0
- data/tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb +11 -0
- data/tests/cpp/vc_cleanup/tc_vc_cleanup.rb +60 -0
- data/tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb +8 -0
- data/tests/mxx_ru/change_default_value/ignoring_by_build_root/child_1.rb +5 -0
- data/tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb +7 -0
- data/tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb +5 -0
- data/tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb +5 -0
- data/tests/mxx_ru/change_default_value/ok/build.rb +8 -0
- data/tests/mxx_ru/change_default_value/ok/child_1.rb +8 -0
- data/tests/mxx_ru/tc_makestyle_generator.rb +117 -0
- data/tests/mxx_ru/vc8/tc_actual_manifest.rb +230 -0
- data/tests/mxx_ru/vc8/tc_append_mt_commands.rb +104 -0
- data/tests/mxx_ru/vc8/tc_default_manifest.rb +17 -0
- data/tests/mxx_ru/vc8/tc_define_manifest.rb +173 -0
- data/tests/mxx_ru/vc8/tc_drop_default_manifest.rb +16 -0
- data/tests/mxx_ru/vc8/tc_invalid_params.rb +81 -0
- data/tests/mxx_ru/vc8/ts_vc8.rb +10 -0
- data/tests/qt/aclock/aclock.cpp +148 -0
- data/tests/qt/aclock/aclock.h +45 -0
- data/tests/qt/aclock/main.cpp +28 -0
- data/tests/qt/aclock/prj.rb +21 -0
- data/tests/qt/iconview/main.cpp +76 -0
- data/tests/qt/iconview/prj.rb +21 -0
- data/tests/qt/toplevel/main.cpp +9 -0
- data/tests/qt/toplevel/options.ui +587 -0
- data/tests/qt/toplevel/options.ui.h +98 -0
- data/tests/qt/toplevel/prj.rb +21 -0
- metadata +241 -0
|
@@ -0,0 +1,587 @@
|
|
|
1
|
+
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
|
|
2
|
+
<class>OptionsDialog</class>
|
|
3
|
+
<widget class="QDialog">
|
|
4
|
+
<property name="name">
|
|
5
|
+
<cstring>OptionsDialog</cstring>
|
|
6
|
+
</property>
|
|
7
|
+
<property name="geometry">
|
|
8
|
+
<rect>
|
|
9
|
+
<x>0</x>
|
|
10
|
+
<y>0</y>
|
|
11
|
+
<width>371</width>
|
|
12
|
+
<height>482</height>
|
|
13
|
+
</rect>
|
|
14
|
+
</property>
|
|
15
|
+
<property name="caption">
|
|
16
|
+
<string>Select Options</string>
|
|
17
|
+
</property>
|
|
18
|
+
<vbox>
|
|
19
|
+
<property name="name">
|
|
20
|
+
<cstring>unnamed</cstring>
|
|
21
|
+
</property>
|
|
22
|
+
<widget class="QLayoutWidget">
|
|
23
|
+
<property name="name">
|
|
24
|
+
<cstring>layout5</cstring>
|
|
25
|
+
</property>
|
|
26
|
+
<hbox>
|
|
27
|
+
<property name="name">
|
|
28
|
+
<cstring>unnamed</cstring>
|
|
29
|
+
</property>
|
|
30
|
+
<widget class="QLayoutWidget">
|
|
31
|
+
<property name="name">
|
|
32
|
+
<cstring>layout4</cstring>
|
|
33
|
+
</property>
|
|
34
|
+
<vbox>
|
|
35
|
+
<property name="name">
|
|
36
|
+
<cstring>unnamed</cstring>
|
|
37
|
+
</property>
|
|
38
|
+
<widget class="QButtonGroup">
|
|
39
|
+
<property name="name">
|
|
40
|
+
<cstring>bgBorder</cstring>
|
|
41
|
+
</property>
|
|
42
|
+
<property name="title">
|
|
43
|
+
<string>&Border</string>
|
|
44
|
+
</property>
|
|
45
|
+
<property name="flat">
|
|
46
|
+
<bool>true</bool>
|
|
47
|
+
</property>
|
|
48
|
+
<property name="checkable">
|
|
49
|
+
<bool>true</bool>
|
|
50
|
+
</property>
|
|
51
|
+
<property name="whatsThis" stdset="0">
|
|
52
|
+
<string>Select different types of borders, or turn the border off. Windows without a border are ignored by the window manager.</string>
|
|
53
|
+
</property>
|
|
54
|
+
<vbox>
|
|
55
|
+
<property name="name">
|
|
56
|
+
<cstring>unnamed</cstring>
|
|
57
|
+
</property>
|
|
58
|
+
<widget class="QRadioButton">
|
|
59
|
+
<property name="name">
|
|
60
|
+
<cstring>rbBorderNormal</cstring>
|
|
61
|
+
</property>
|
|
62
|
+
<property name="text">
|
|
63
|
+
<string>&Normal</string>
|
|
64
|
+
</property>
|
|
65
|
+
<property name="accel">
|
|
66
|
+
<string>Alt+N</string>
|
|
67
|
+
</property>
|
|
68
|
+
<property name="checked">
|
|
69
|
+
<bool>true</bool>
|
|
70
|
+
</property>
|
|
71
|
+
<property name="toolTip" stdset="0">
|
|
72
|
+
<string>A normal border</string>
|
|
73
|
+
</property>
|
|
74
|
+
<property name="whatsThis" stdset="0">
|
|
75
|
+
<string>Gives the window a normal, resizable border. The window should have a layout installed to handle the resizing gracefully.</string>
|
|
76
|
+
</property>
|
|
77
|
+
</widget>
|
|
78
|
+
<widget class="QRadioButton">
|
|
79
|
+
<property name="name">
|
|
80
|
+
<cstring>rbBorderDialog</cstring>
|
|
81
|
+
</property>
|
|
82
|
+
<property name="text">
|
|
83
|
+
<string>&Dialog</string>
|
|
84
|
+
</property>
|
|
85
|
+
<property name="accel">
|
|
86
|
+
<string>Alt+D</string>
|
|
87
|
+
</property>
|
|
88
|
+
<property name="toolTip" stdset="0">
|
|
89
|
+
<string>A thin dialog border</string>
|
|
90
|
+
</property>
|
|
91
|
+
<property name="whatsThis" stdset="0">
|
|
92
|
+
<string>Gives the window a thin dialog border. Depending on the window manager the window will not be resizable. Use QWidget::setFixedSize() in addition to enforce a static size on all systems.</string>
|
|
93
|
+
</property>
|
|
94
|
+
</widget>
|
|
95
|
+
</vbox>
|
|
96
|
+
</widget>
|
|
97
|
+
<widget class="QButtonGroup">
|
|
98
|
+
<property name="name">
|
|
99
|
+
<cstring>bgTitle</cstring>
|
|
100
|
+
</property>
|
|
101
|
+
<property name="title">
|
|
102
|
+
<string>&Titlebar</string>
|
|
103
|
+
</property>
|
|
104
|
+
<property name="flat">
|
|
105
|
+
<bool>true</bool>
|
|
106
|
+
</property>
|
|
107
|
+
<property name="checkable">
|
|
108
|
+
<bool>true</bool>
|
|
109
|
+
</property>
|
|
110
|
+
<property name="whatsThis" stdset="0">
|
|
111
|
+
<string>Select different controls you want to see in the titlebar, or turn the titlebar off. Popup windows should not have a titlebar.</string>
|
|
112
|
+
</property>
|
|
113
|
+
<vbox>
|
|
114
|
+
<property name="name">
|
|
115
|
+
<cstring>unnamed</cstring>
|
|
116
|
+
</property>
|
|
117
|
+
<widget class="QCheckBox">
|
|
118
|
+
<property name="name">
|
|
119
|
+
<cstring>cbTitleSystem</cstring>
|
|
120
|
+
</property>
|
|
121
|
+
<property name="text">
|
|
122
|
+
<string>S&ystem Menu</string>
|
|
123
|
+
</property>
|
|
124
|
+
<property name="accel">
|
|
125
|
+
<string>Alt+Y</string>
|
|
126
|
+
</property>
|
|
127
|
+
<property name="checked">
|
|
128
|
+
<bool>true</bool>
|
|
129
|
+
</property>
|
|
130
|
+
<property name="toolTip" stdset="0">
|
|
131
|
+
<string>A window system menu.</string>
|
|
132
|
+
</property>
|
|
133
|
+
<property name="whatsThis" stdset="0">
|
|
134
|
+
<string>Adds a window system menu. Many window managers require a system menu to be able to provide minimize or maximize controls. A system menu implies a close button.</string>
|
|
135
|
+
</property>
|
|
136
|
+
</widget>
|
|
137
|
+
<widget class="QCheckBox">
|
|
138
|
+
<property name="name">
|
|
139
|
+
<cstring>cbTitleMinimize</cstring>
|
|
140
|
+
</property>
|
|
141
|
+
<property name="text">
|
|
142
|
+
<string>Minimi&ze</string>
|
|
143
|
+
</property>
|
|
144
|
+
<property name="accel">
|
|
145
|
+
<string>Alt+Z</string>
|
|
146
|
+
</property>
|
|
147
|
+
<property name="toolTip" stdset="0">
|
|
148
|
+
<string>A minimize button</string>
|
|
149
|
+
</property>
|
|
150
|
+
<property name="whatsThis" stdset="0">
|
|
151
|
+
<string>Adds a minimze button. This option requires a system menu on many window managers.</string>
|
|
152
|
+
</property>
|
|
153
|
+
</widget>
|
|
154
|
+
<widget class="QCheckBox">
|
|
155
|
+
<property name="name">
|
|
156
|
+
<cstring>cbTitleMaximize</cstring>
|
|
157
|
+
</property>
|
|
158
|
+
<property name="text">
|
|
159
|
+
<string>Ma&ximize</string>
|
|
160
|
+
</property>
|
|
161
|
+
<property name="accel">
|
|
162
|
+
<string>Alt+X</string>
|
|
163
|
+
</property>
|
|
164
|
+
<property name="toolTip" stdset="0">
|
|
165
|
+
<string>A maximize button</string>
|
|
166
|
+
</property>
|
|
167
|
+
<property name="whatsThis" stdset="0">
|
|
168
|
+
<string>Adds a maximze button. This option requires a system menu on many window managers.</string>
|
|
169
|
+
</property>
|
|
170
|
+
</widget>
|
|
171
|
+
<widget class="QCheckBox">
|
|
172
|
+
<property name="name">
|
|
173
|
+
<cstring>cbTitleContext</cstring>
|
|
174
|
+
</property>
|
|
175
|
+
<property name="text">
|
|
176
|
+
<string>&What's This</string>
|
|
177
|
+
</property>
|
|
178
|
+
<property name="accel">
|
|
179
|
+
<string>Alt+W</string>
|
|
180
|
+
</property>
|
|
181
|
+
<property name="toolTip" stdset="0">
|
|
182
|
+
<string>A context help button</string>
|
|
183
|
+
</property>
|
|
184
|
+
<property name="whatsThis" stdset="0">
|
|
185
|
+
<string>Adds a context help button. This option requires a system menu on many window managers, and often doesn't work together with minimize and maximize buttons.</string>
|
|
186
|
+
</property>
|
|
187
|
+
</widget>
|
|
188
|
+
</vbox>
|
|
189
|
+
</widget>
|
|
190
|
+
</vbox>
|
|
191
|
+
</widget>
|
|
192
|
+
<widget class="QLayoutWidget">
|
|
193
|
+
<property name="name">
|
|
194
|
+
<cstring>layout3</cstring>
|
|
195
|
+
</property>
|
|
196
|
+
<vbox>
|
|
197
|
+
<property name="name">
|
|
198
|
+
<cstring>unnamed</cstring>
|
|
199
|
+
</property>
|
|
200
|
+
<widget class="QButtonGroup">
|
|
201
|
+
<property name="name">
|
|
202
|
+
<cstring>bgBehavior</cstring>
|
|
203
|
+
</property>
|
|
204
|
+
<property name="title">
|
|
205
|
+
<string>Behavior</string>
|
|
206
|
+
</property>
|
|
207
|
+
<property name="flat">
|
|
208
|
+
<bool>true</bool>
|
|
209
|
+
</property>
|
|
210
|
+
<property name="whatsThis" stdset="0">
|
|
211
|
+
<string>Select different behaviors of the window in runtime.</string>
|
|
212
|
+
</property>
|
|
213
|
+
<vbox>
|
|
214
|
+
<property name="name">
|
|
215
|
+
<cstring>unnamed</cstring>
|
|
216
|
+
</property>
|
|
217
|
+
<widget class="QCheckBox">
|
|
218
|
+
<property name="name">
|
|
219
|
+
<cstring>cbBehaviorTaskbar</cstring>
|
|
220
|
+
</property>
|
|
221
|
+
<property name="text">
|
|
222
|
+
<string>Taskbar &Entry</string>
|
|
223
|
+
</property>
|
|
224
|
+
<property name="accel">
|
|
225
|
+
<string>Alt+E</string>
|
|
226
|
+
</property>
|
|
227
|
+
<property name="toolTip" stdset="0">
|
|
228
|
+
<string>Entry in the taskbar</string>
|
|
229
|
+
</property>
|
|
230
|
+
<property name="whatsThis" stdset="0">
|
|
231
|
+
<string>Gives the window a separate task bar entry.</string>
|
|
232
|
+
</property>
|
|
233
|
+
</widget>
|
|
234
|
+
<widget class="QCheckBox">
|
|
235
|
+
<property name="name">
|
|
236
|
+
<cstring>cbBehaviorStays</cstring>
|
|
237
|
+
</property>
|
|
238
|
+
<property name="text">
|
|
239
|
+
<string>Stays on T&op</string>
|
|
240
|
+
</property>
|
|
241
|
+
<property name="accel">
|
|
242
|
+
<string>Alt+O</string>
|
|
243
|
+
</property>
|
|
244
|
+
<property name="toolTip" stdset="0">
|
|
245
|
+
<string>Stay on top of the desktop</string>
|
|
246
|
+
</property>
|
|
247
|
+
<property name="whatsThis" stdset="0">
|
|
248
|
+
<string>Informs the window system that the window should stay on top of all other windows, including windows from other applications. This is not supported on all X11 window managers.</string>
|
|
249
|
+
</property>
|
|
250
|
+
</widget>
|
|
251
|
+
<widget class="QCheckBox">
|
|
252
|
+
<property name="name">
|
|
253
|
+
<cstring>cbBehaviorPopup</cstring>
|
|
254
|
+
</property>
|
|
255
|
+
<property name="enabled">
|
|
256
|
+
<bool>false</bool>
|
|
257
|
+
</property>
|
|
258
|
+
<property name="text">
|
|
259
|
+
<string>&Popup</string>
|
|
260
|
+
</property>
|
|
261
|
+
<property name="accel">
|
|
262
|
+
<string>Alt+P</string>
|
|
263
|
+
</property>
|
|
264
|
+
<property name="toolTip" stdset="0">
|
|
265
|
+
<string>A popup window</string>
|
|
266
|
+
</property>
|
|
267
|
+
<property name="whatsThis" stdset="0">
|
|
268
|
+
<string>Indicates that this widget is a popup window. Popup windows are modal, but close automatically when the mouse is clicked.</string>
|
|
269
|
+
</property>
|
|
270
|
+
</widget>
|
|
271
|
+
<widget class="QCheckBox">
|
|
272
|
+
<property name="name">
|
|
273
|
+
<cstring>cbBehaviorTool</cstring>
|
|
274
|
+
</property>
|
|
275
|
+
<property name="text">
|
|
276
|
+
<string>Too&l</string>
|
|
277
|
+
</property>
|
|
278
|
+
<property name="accel">
|
|
279
|
+
<string>Alt+L</string>
|
|
280
|
+
</property>
|
|
281
|
+
<property name="toolTip" stdset="0">
|
|
282
|
+
<string>A tool window</string>
|
|
283
|
+
</property>
|
|
284
|
+
<property name="whatsThis" stdset="0">
|
|
285
|
+
<string>Makes the window a tool window. Tool windows often have a smaller titlebar and decoration, and don't activate automtically when displayed. Tool windows often cannot have their own taskbar entry.</string>
|
|
286
|
+
</property>
|
|
287
|
+
</widget>
|
|
288
|
+
<widget class="QCheckBox">
|
|
289
|
+
<property name="name">
|
|
290
|
+
<cstring>cbBehaviorModal</cstring>
|
|
291
|
+
</property>
|
|
292
|
+
<property name="text">
|
|
293
|
+
<string>&Modal</string>
|
|
294
|
+
</property>
|
|
295
|
+
<property name="accel">
|
|
296
|
+
<string>Alt+M</string>
|
|
297
|
+
</property>
|
|
298
|
+
<property name="toolTip" stdset="0">
|
|
299
|
+
<string>Show modal</string>
|
|
300
|
+
</property>
|
|
301
|
+
<property name="whatsThis" stdset="0">
|
|
302
|
+
<string>The window is modal for the application, e.g. input for other windows are blocked by this window.</string>
|
|
303
|
+
</property>
|
|
304
|
+
</widget>
|
|
305
|
+
</vbox>
|
|
306
|
+
</widget>
|
|
307
|
+
<spacer>
|
|
308
|
+
<property name="name">
|
|
309
|
+
<cstring>spacer2</cstring>
|
|
310
|
+
</property>
|
|
311
|
+
<property name="orientation">
|
|
312
|
+
<enum>Vertical</enum>
|
|
313
|
+
</property>
|
|
314
|
+
<property name="sizeType">
|
|
315
|
+
<enum>Expanding</enum>
|
|
316
|
+
</property>
|
|
317
|
+
<property name="sizeHint">
|
|
318
|
+
<size>
|
|
319
|
+
<width>20</width>
|
|
320
|
+
<height>31</height>
|
|
321
|
+
</size>
|
|
322
|
+
</property>
|
|
323
|
+
</spacer>
|
|
324
|
+
</vbox>
|
|
325
|
+
</widget>
|
|
326
|
+
</hbox>
|
|
327
|
+
</widget>
|
|
328
|
+
<widget class="QGroupBox">
|
|
329
|
+
<property name="name">
|
|
330
|
+
<cstring>gbProperties</cstring>
|
|
331
|
+
</property>
|
|
332
|
+
<property name="title">
|
|
333
|
+
<string>Properties</string>
|
|
334
|
+
</property>
|
|
335
|
+
<property name="flat">
|
|
336
|
+
<bool>true</bool>
|
|
337
|
+
</property>
|
|
338
|
+
<property name="whatsThis" stdset="0">
|
|
339
|
+
<string>Set other properties of the window.</string>
|
|
340
|
+
</property>
|
|
341
|
+
<grid>
|
|
342
|
+
<property name="name">
|
|
343
|
+
<cstring>unnamed</cstring>
|
|
344
|
+
</property>
|
|
345
|
+
<widget class="QLineEdit" row="0" column="1">
|
|
346
|
+
<property name="name">
|
|
347
|
+
<cstring>leCaption</cstring>
|
|
348
|
+
</property>
|
|
349
|
+
<property name="text">
|
|
350
|
+
<string>Caption</string>
|
|
351
|
+
</property>
|
|
352
|
+
<property name="toolTip" stdset="0">
|
|
353
|
+
<string>Window caption</string>
|
|
354
|
+
</property>
|
|
355
|
+
<property name="whatsThis" stdset="0">
|
|
356
|
+
<string>The caption of the window.</string>
|
|
357
|
+
</property>
|
|
358
|
+
</widget>
|
|
359
|
+
<widget class="QLayoutWidget" row="1" column="1">
|
|
360
|
+
<property name="name">
|
|
361
|
+
<cstring>layout2</cstring>
|
|
362
|
+
</property>
|
|
363
|
+
<hbox>
|
|
364
|
+
<property name="name">
|
|
365
|
+
<cstring>unnamed</cstring>
|
|
366
|
+
</property>
|
|
367
|
+
<widget class="QLineEdit">
|
|
368
|
+
<property name="name">
|
|
369
|
+
<cstring>leIcon</cstring>
|
|
370
|
+
</property>
|
|
371
|
+
<property name="toolTip" stdset="0">
|
|
372
|
+
<string>Icon file</string>
|
|
373
|
+
</property>
|
|
374
|
+
<property name="whatsThis" stdset="0">
|
|
375
|
+
<string>Provide an image file.</string>
|
|
376
|
+
</property>
|
|
377
|
+
</widget>
|
|
378
|
+
<widget class="QToolButton">
|
|
379
|
+
<property name="name">
|
|
380
|
+
<cstring>tbPick</cstring>
|
|
381
|
+
</property>
|
|
382
|
+
<property name="text">
|
|
383
|
+
<string>...</string>
|
|
384
|
+
</property>
|
|
385
|
+
<property name="toolTip" stdset="0">
|
|
386
|
+
<string>Pick an icon</string>
|
|
387
|
+
</property>
|
|
388
|
+
<property name="whatsThis" stdset="0">
|
|
389
|
+
<string>Select an image file.</string>
|
|
390
|
+
</property>
|
|
391
|
+
</widget>
|
|
392
|
+
</hbox>
|
|
393
|
+
</widget>
|
|
394
|
+
<widget class="QSlider" row="2" column="1">
|
|
395
|
+
<property name="name">
|
|
396
|
+
<cstring>slTransparency</cstring>
|
|
397
|
+
</property>
|
|
398
|
+
<property name="maxValue">
|
|
399
|
+
<number>100</number>
|
|
400
|
+
</property>
|
|
401
|
+
<property name="pageStep">
|
|
402
|
+
<number>10</number>
|
|
403
|
+
</property>
|
|
404
|
+
<property name="orientation">
|
|
405
|
+
<enum>Horizontal</enum>
|
|
406
|
+
</property>
|
|
407
|
+
<property name="tickmarks">
|
|
408
|
+
<enum>Below</enum>
|
|
409
|
+
</property>
|
|
410
|
+
<property name="tickInterval">
|
|
411
|
+
<number>10</number>
|
|
412
|
+
</property>
|
|
413
|
+
<property name="toolTip" stdset="0">
|
|
414
|
+
<string>Window transparency</string>
|
|
415
|
+
</property>
|
|
416
|
+
<property name="whatsThis" stdset="0">
|
|
417
|
+
<string>Set the transparency of the window.
|
|
418
|
+
A high value gives a high window transparency, e.g. it is less visible.
|
|
419
|
+
|
|
420
|
+
Note that this attribute is not supported on many windowing systems and will have no effect.</string>
|
|
421
|
+
</property>
|
|
422
|
+
</widget>
|
|
423
|
+
<widget class="QLabel" row="2" column="0">
|
|
424
|
+
<property name="name">
|
|
425
|
+
<cstring>textLabel3</cstring>
|
|
426
|
+
</property>
|
|
427
|
+
<property name="text">
|
|
428
|
+
<string>Transp&arency:</string>
|
|
429
|
+
</property>
|
|
430
|
+
<property name="buddy" stdset="0">
|
|
431
|
+
<cstring>slTransparency</cstring>
|
|
432
|
+
</property>
|
|
433
|
+
</widget>
|
|
434
|
+
<widget class="QLabel" row="1" column="0">
|
|
435
|
+
<property name="name">
|
|
436
|
+
<cstring>textLabel2</cstring>
|
|
437
|
+
</property>
|
|
438
|
+
<property name="text">
|
|
439
|
+
<string>&Icon:</string>
|
|
440
|
+
</property>
|
|
441
|
+
<property name="buddy" stdset="0">
|
|
442
|
+
<cstring>leIcon</cstring>
|
|
443
|
+
</property>
|
|
444
|
+
</widget>
|
|
445
|
+
<widget class="QLabel" row="0" column="0">
|
|
446
|
+
<property name="name">
|
|
447
|
+
<cstring>textLabel1</cstring>
|
|
448
|
+
</property>
|
|
449
|
+
<property name="text">
|
|
450
|
+
<string>&Caption:</string>
|
|
451
|
+
</property>
|
|
452
|
+
<property name="buddy" stdset="0">
|
|
453
|
+
<cstring>leCaption</cstring>
|
|
454
|
+
</property>
|
|
455
|
+
</widget>
|
|
456
|
+
</grid>
|
|
457
|
+
</widget>
|
|
458
|
+
<widget class="QLayoutWidget">
|
|
459
|
+
<property name="name">
|
|
460
|
+
<cstring>layout1</cstring>
|
|
461
|
+
</property>
|
|
462
|
+
<hbox>
|
|
463
|
+
<property name="name">
|
|
464
|
+
<cstring>unnamed</cstring>
|
|
465
|
+
</property>
|
|
466
|
+
<spacer>
|
|
467
|
+
<property name="name">
|
|
468
|
+
<cstring>spacer1</cstring>
|
|
469
|
+
</property>
|
|
470
|
+
<property name="orientation">
|
|
471
|
+
<enum>Horizontal</enum>
|
|
472
|
+
</property>
|
|
473
|
+
<property name="sizeType">
|
|
474
|
+
<enum>Expanding</enum>
|
|
475
|
+
</property>
|
|
476
|
+
<property name="sizeHint">
|
|
477
|
+
<size>
|
|
478
|
+
<width>70</width>
|
|
479
|
+
<height>21</height>
|
|
480
|
+
</size>
|
|
481
|
+
</property>
|
|
482
|
+
</spacer>
|
|
483
|
+
<widget class="QPushButton">
|
|
484
|
+
<property name="name">
|
|
485
|
+
<cstring>pbApply</cstring>
|
|
486
|
+
</property>
|
|
487
|
+
<property name="text">
|
|
488
|
+
<string>Apply</string>
|
|
489
|
+
</property>
|
|
490
|
+
<property name="accel">
|
|
491
|
+
<string></string>
|
|
492
|
+
</property>
|
|
493
|
+
<property name="default">
|
|
494
|
+
<bool>true</bool>
|
|
495
|
+
</property>
|
|
496
|
+
<property name="whatsThis" stdset="0">
|
|
497
|
+
<string>Creates a new window with the selected flags, or modifies the visible window.</string>
|
|
498
|
+
</property>
|
|
499
|
+
</widget>
|
|
500
|
+
<widget class="QPushButton">
|
|
501
|
+
<property name="name">
|
|
502
|
+
<cstring>pbClose</cstring>
|
|
503
|
+
</property>
|
|
504
|
+
<property name="text">
|
|
505
|
+
<string>Close</string>
|
|
506
|
+
</property>
|
|
507
|
+
<property name="accel">
|
|
508
|
+
<string></string>
|
|
509
|
+
</property>
|
|
510
|
+
<property name="whatsThis" stdset="0">
|
|
511
|
+
<string>Closes this dialog and exits the application.</string>
|
|
512
|
+
</property>
|
|
513
|
+
</widget>
|
|
514
|
+
</hbox>
|
|
515
|
+
</widget>
|
|
516
|
+
</vbox>
|
|
517
|
+
</widget>
|
|
518
|
+
<connections>
|
|
519
|
+
<connection>
|
|
520
|
+
<sender>pbClose</sender>
|
|
521
|
+
<signal>clicked()</signal>
|
|
522
|
+
<receiver>OptionsDialog</receiver>
|
|
523
|
+
<slot>close()</slot>
|
|
524
|
+
</connection>
|
|
525
|
+
<connection>
|
|
526
|
+
<sender>pbApply</sender>
|
|
527
|
+
<signal>clicked()</signal>
|
|
528
|
+
<receiver>OptionsDialog</receiver>
|
|
529
|
+
<slot>apply()</slot>
|
|
530
|
+
</connection>
|
|
531
|
+
<connection>
|
|
532
|
+
<sender>bgBorder</sender>
|
|
533
|
+
<signal>toggled(bool)</signal>
|
|
534
|
+
<receiver>bgTitle</receiver>
|
|
535
|
+
<slot>setEnabled(bool)</slot>
|
|
536
|
+
</connection>
|
|
537
|
+
<connection>
|
|
538
|
+
<sender>cbTitleSystem</sender>
|
|
539
|
+
<signal>toggled(bool)</signal>
|
|
540
|
+
<receiver>cbTitleMinimize</receiver>
|
|
541
|
+
<slot>setEnabled(bool)</slot>
|
|
542
|
+
</connection>
|
|
543
|
+
<connection>
|
|
544
|
+
<sender>cbTitleSystem</sender>
|
|
545
|
+
<signal>toggled(bool)</signal>
|
|
546
|
+
<receiver>cbTitleMaximize</receiver>
|
|
547
|
+
<slot>setEnabled(bool)</slot>
|
|
548
|
+
</connection>
|
|
549
|
+
<connection>
|
|
550
|
+
<sender>cbTitleSystem</sender>
|
|
551
|
+
<signal>toggled(bool)</signal>
|
|
552
|
+
<receiver>cbTitleContext</receiver>
|
|
553
|
+
<slot>setEnabled(bool)</slot>
|
|
554
|
+
</connection>
|
|
555
|
+
<connection>
|
|
556
|
+
<sender>bgTitle</sender>
|
|
557
|
+
<signal>toggled(bool)</signal>
|
|
558
|
+
<receiver>cbBehaviorPopup</receiver>
|
|
559
|
+
<slot>setDisabled(bool)</slot>
|
|
560
|
+
</connection>
|
|
561
|
+
<connection>
|
|
562
|
+
<sender>cbBehaviorPopup</sender>
|
|
563
|
+
<signal>toggled(bool)</signal>
|
|
564
|
+
<receiver>bgTitle</receiver>
|
|
565
|
+
<slot>setDisabled(bool)</slot>
|
|
566
|
+
</connection>
|
|
567
|
+
<connection>
|
|
568
|
+
<sender>tbPick</sender>
|
|
569
|
+
<signal>clicked()</signal>
|
|
570
|
+
<receiver>OptionsDialog</receiver>
|
|
571
|
+
<slot>pickIcon()</slot>
|
|
572
|
+
</connection>
|
|
573
|
+
</connections>
|
|
574
|
+
<includes>
|
|
575
|
+
<include location="global" impldecl="in declaration">qguardedptr.h</include>
|
|
576
|
+
<include location="global" impldecl="in declaration">qvbox.h</include>
|
|
577
|
+
<include location="global" impldecl="in implementation">qfiledialog.h</include>
|
|
578
|
+
</includes>
|
|
579
|
+
<variables>
|
|
580
|
+
<variable access="private">QGuardedPtr<QVBox> widget;</variable>
|
|
581
|
+
</variables>
|
|
582
|
+
<slots>
|
|
583
|
+
<slot>apply()</slot>
|
|
584
|
+
<slot access="protected">pickIcon()</slot>
|
|
585
|
+
</slots>
|
|
586
|
+
<layoutdefaults spacing="6" margin="11"/>
|
|
587
|
+
</UI>
|