1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <ui version="4.0"> |
---|
3 | <class>MainWindow</class> |
---|
4 | <widget class="QMainWindow" name="MainWindow"> |
---|
5 | <property name="geometry"> |
---|
6 | <rect> |
---|
7 | <x>0</x> |
---|
8 | <y>0</y> |
---|
9 | <width>640</width> |
---|
10 | <height>480</height> |
---|
11 | </rect> |
---|
12 | </property> |
---|
13 | <property name="windowTitle"> |
---|
14 | <string>Travelling salesman problem[*]</string> |
---|
15 | </property> |
---|
16 | <property name="windowIcon"> |
---|
17 | <iconset resource="../resources/tspsg.qrc"> |
---|
18 | <normaloff>:/images/Icon.png</normaloff>:/images/Icon.png</iconset> |
---|
19 | </property> |
---|
20 | <widget class="QWidget" name="centralwidget"> |
---|
21 | <layout class="QGridLayout"> |
---|
22 | <item row="0" column="0"> |
---|
23 | <widget class="QTabWidget" name="tabWidget"> |
---|
24 | <property name="sizePolicy"> |
---|
25 | <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> |
---|
26 | <horstretch>0</horstretch> |
---|
27 | <verstretch>0</verstretch> |
---|
28 | </sizepolicy> |
---|
29 | </property> |
---|
30 | <property name="currentIndex"> |
---|
31 | <number>0</number> |
---|
32 | </property> |
---|
33 | <widget class="QWidget" name="tabTask"> |
---|
34 | <attribute name="title"> |
---|
35 | <string>Task</string> |
---|
36 | </attribute> |
---|
37 | <layout class="QVBoxLayout"> |
---|
38 | <item> |
---|
39 | <layout class="QHBoxLayout"> |
---|
40 | <item> |
---|
41 | <spacer> |
---|
42 | <property name="orientation"> |
---|
43 | <enum>Qt::Horizontal</enum> |
---|
44 | </property> |
---|
45 | <property name="sizeHint" stdset="0"> |
---|
46 | <size> |
---|
47 | <width>40</width> |
---|
48 | <height>20</height> |
---|
49 | </size> |
---|
50 | </property> |
---|
51 | </spacer> |
---|
52 | </item> |
---|
53 | <item> |
---|
54 | <widget class="QLabel" name="labelVariant"> |
---|
55 | <property name="text"> |
---|
56 | <string>&Variant:</string> |
---|
57 | </property> |
---|
58 | <property name="buddy"> |
---|
59 | <cstring>spinVariant</cstring> |
---|
60 | </property> |
---|
61 | </widget> |
---|
62 | </item> |
---|
63 | <item> |
---|
64 | <widget class="QSpinBox" name="spinVariant"> |
---|
65 | <property name="cursor"> |
---|
66 | <cursorShape>PointingHandCursor</cursorShape> |
---|
67 | </property> |
---|
68 | <property name="statusTip"> |
---|
69 | <string>Number of variant</string> |
---|
70 | </property> |
---|
71 | <property name="minimum"> |
---|
72 | <number>1</number> |
---|
73 | </property> |
---|
74 | </widget> |
---|
75 | </item> |
---|
76 | <item> |
---|
77 | <widget class="QLabel" name="labelCities"> |
---|
78 | <property name="text"> |
---|
79 | <string>&Cities:</string> |
---|
80 | </property> |
---|
81 | <property name="buddy"> |
---|
82 | <cstring>spinCities</cstring> |
---|
83 | </property> |
---|
84 | </widget> |
---|
85 | </item> |
---|
86 | <item> |
---|
87 | <widget class="QSpinBox" name="spinCities"> |
---|
88 | <property name="cursor"> |
---|
89 | <cursorShape>PointingHandCursor</cursorShape> |
---|
90 | </property> |
---|
91 | <property name="statusTip"> |
---|
92 | <string>Number of cities</string> |
---|
93 | </property> |
---|
94 | <property name="minimum"> |
---|
95 | <number>3</number> |
---|
96 | </property> |
---|
97 | <property name="maximum"> |
---|
98 | <number>5</number> |
---|
99 | </property> |
---|
100 | <property name="value"> |
---|
101 | <number>5</number> |
---|
102 | </property> |
---|
103 | </widget> |
---|
104 | </item> |
---|
105 | <item> |
---|
106 | <spacer> |
---|
107 | <property name="orientation"> |
---|
108 | <enum>Qt::Horizontal</enum> |
---|
109 | </property> |
---|
110 | <property name="sizeHint" stdset="0"> |
---|
111 | <size> |
---|
112 | <width>40</width> |
---|
113 | <height>20</height> |
---|
114 | </size> |
---|
115 | </property> |
---|
116 | </spacer> |
---|
117 | </item> |
---|
118 | </layout> |
---|
119 | </item> |
---|
120 | <item> |
---|
121 | <widget class="QTableView" name="taskView"> |
---|
122 | <property name="statusTip"> |
---|
123 | <string>Cost of travel from city to city</string> |
---|
124 | </property> |
---|
125 | <property name="selectionMode"> |
---|
126 | <enum>QAbstractItemView::NoSelection</enum> |
---|
127 | </property> |
---|
128 | </widget> |
---|
129 | </item> |
---|
130 | <item> |
---|
131 | <layout class="QHBoxLayout"> |
---|
132 | <item> |
---|
133 | <spacer> |
---|
134 | <property name="orientation"> |
---|
135 | <enum>Qt::Horizontal</enum> |
---|
136 | </property> |
---|
137 | <property name="sizeHint" stdset="0"> |
---|
138 | <size> |
---|
139 | <width>40</width> |
---|
140 | <height>20</height> |
---|
141 | </size> |
---|
142 | </property> |
---|
143 | </spacer> |
---|
144 | </item> |
---|
145 | <item> |
---|
146 | <widget class="QPushButton" name="buttonRandom"> |
---|
147 | <property name="cursor"> |
---|
148 | <cursorShape>PointingHandCursor</cursorShape> |
---|
149 | </property> |
---|
150 | <property name="statusTip"> |
---|
151 | <string>Fill table with random numbers</string> |
---|
152 | </property> |
---|
153 | <property name="text"> |
---|
154 | <string>Random</string> |
---|
155 | </property> |
---|
156 | <property name="icon"> |
---|
157 | <iconset resource="../resources/tspsg.qrc"> |
---|
158 | <normaloff>:/images/icons/roll.png</normaloff>:/images/icons/roll.png</iconset> |
---|
159 | </property> |
---|
160 | </widget> |
---|
161 | </item> |
---|
162 | <item> |
---|
163 | <widget class="QPushButton" name="buttonSolve"> |
---|
164 | <property name="cursor"> |
---|
165 | <cursorShape>PointingHandCursor</cursorShape> |
---|
166 | </property> |
---|
167 | <property name="statusTip"> |
---|
168 | <string>Solve current task</string> |
---|
169 | </property> |
---|
170 | <property name="text"> |
---|
171 | <string>Solve</string> |
---|
172 | </property> |
---|
173 | <property name="icon"> |
---|
174 | <iconset resource="../resources/tspsg.qrc"> |
---|
175 | <normaloff>:/images/icons/button_ok.png</normaloff>:/images/icons/button_ok.png</iconset> |
---|
176 | </property> |
---|
177 | </widget> |
---|
178 | </item> |
---|
179 | </layout> |
---|
180 | </item> |
---|
181 | </layout> |
---|
182 | </widget> |
---|
183 | <widget class="QWidget" name="tabSolution"> |
---|
184 | <attribute name="title"> |
---|
185 | <string>Solution</string> |
---|
186 | </attribute> |
---|
187 | <layout class="QVBoxLayout"> |
---|
188 | <item> |
---|
189 | <layout class="QHBoxLayout"> |
---|
190 | <property name="spacing"> |
---|
191 | <number>0</number> |
---|
192 | </property> |
---|
193 | <item> |
---|
194 | <widget class="QTextEdit" name="textEdit"> |
---|
195 | <property name="sizePolicy"> |
---|
196 | <sizepolicy hsizetype="Fixed" vsizetype="Expanding"> |
---|
197 | <horstretch>0</horstretch> |
---|
198 | <verstretch>0</verstretch> |
---|
199 | </sizepolicy> |
---|
200 | </property> |
---|
201 | <property name="statusTip"> |
---|
202 | <string>Solution steps</string> |
---|
203 | </property> |
---|
204 | <property name="readOnly"> |
---|
205 | <bool>true</bool> |
---|
206 | </property> |
---|
207 | </widget> |
---|
208 | </item> |
---|
209 | <item> |
---|
210 | <widget class="QGraphicsView" name="graphicsView"> |
---|
211 | <property name="statusTip"> |
---|
212 | <string>Solution graph</string> |
---|
213 | </property> |
---|
214 | </widget> |
---|
215 | </item> |
---|
216 | </layout> |
---|
217 | </item> |
---|
218 | </layout> |
---|
219 | </widget> |
---|
220 | </widget> |
---|
221 | </item> |
---|
222 | </layout> |
---|
223 | </widget> |
---|
224 | <widget class="QMenuBar" name="menubar"> |
---|
225 | <property name="geometry"> |
---|
226 | <rect> |
---|
227 | <x>0</x> |
---|
228 | <y>0</y> |
---|
229 | <width>640</width> |
---|
230 | <height>22</height> |
---|
231 | </rect> |
---|
232 | </property> |
---|
233 | <widget class="QMenu" name="menuFile"> |
---|
234 | <property name="windowIcon"> |
---|
235 | <iconset> |
---|
236 | <normaloff/> |
---|
237 | </iconset> |
---|
238 | </property> |
---|
239 | <property name="title"> |
---|
240 | <string>&File</string> |
---|
241 | </property> |
---|
242 | <widget class="QMenu" name="menuFileSaveAs"> |
---|
243 | <property name="title"> |
---|
244 | <string>Save &as...</string> |
---|
245 | </property> |
---|
246 | <property name="icon"> |
---|
247 | <iconset resource="../resources/tspsg.qrc"> |
---|
248 | <normaloff>:/images/icons/filesaveas.png</normaloff>:/images/icons/filesaveas.png</iconset> |
---|
249 | </property> |
---|
250 | <addaction name="actionFileSaveTask"/> |
---|
251 | <addaction name="separator"/> |
---|
252 | <addaction name="actionFileSaveSolutionAll"/> |
---|
253 | <addaction name="actionFileSaveSolutionMatrices"/> |
---|
254 | <addaction name="actionFileSaveSolutionGraph"/> |
---|
255 | </widget> |
---|
256 | <addaction name="actionFileNew"/> |
---|
257 | <addaction name="actionFileOpen"/> |
---|
258 | <addaction name="actionFileSave"/> |
---|
259 | <addaction name="menuFileSaveAs"/> |
---|
260 | <addaction name="separator"/> |
---|
261 | <addaction name="actionFilePrintSetup"/> |
---|
262 | <addaction name="actionFilePrint"/> |
---|
263 | <addaction name="separator"/> |
---|
264 | <addaction name="actionFileExit"/> |
---|
265 | </widget> |
---|
266 | <widget class="QMenu" name="menuSettings"> |
---|
267 | <property name="title"> |
---|
268 | <string>&Settings</string> |
---|
269 | </property> |
---|
270 | <widget class="QMenu" name="menuSettingsLanguage"> |
---|
271 | <property name="toolTip"> |
---|
272 | <string>Select language</string> |
---|
273 | </property> |
---|
274 | <property name="statusTip"> |
---|
275 | <string>Select application language</string> |
---|
276 | </property> |
---|
277 | <property name="title"> |
---|
278 | <string extracomment="Please, append " / Language" when translating this string.">&Language</string> |
---|
279 | </property> |
---|
280 | <property name="icon"> |
---|
281 | <iconset resource="../resources/tspsg.qrc"> |
---|
282 | <normaloff>:/images/icons/locale.png</normaloff>:/images/icons/locale.png</iconset> |
---|
283 | </property> |
---|
284 | <addaction name="actionSettingsLanguageAutodetect"/> |
---|
285 | <addaction name="separator"/> |
---|
286 | <addaction name="actionSettingsLanguageEnglish"/> |
---|
287 | </widget> |
---|
288 | <addaction name="menuSettingsLanguage"/> |
---|
289 | <addaction name="separator"/> |
---|
290 | <addaction name="actionSettingsPreferences"/> |
---|
291 | </widget> |
---|
292 | <widget class="QMenu" name="menuHelp"> |
---|
293 | <property name="title"> |
---|
294 | <string>&Help</string> |
---|
295 | </property> |
---|
296 | <addaction name="actionHelpContents"/> |
---|
297 | <addaction name="actionHelpContextual"/> |
---|
298 | <addaction name="separator"/> |
---|
299 | <addaction name="actionHelpAboutQt"/> |
---|
300 | <addaction name="actionHelpAbout"/> |
---|
301 | </widget> |
---|
302 | <addaction name="menuFile"/> |
---|
303 | <addaction name="menuSettings"/> |
---|
304 | <addaction name="menuHelp"/> |
---|
305 | </widget> |
---|
306 | <widget class="QStatusBar" name="statusbar"/> |
---|
307 | <widget class="QToolBar" name="toolBar"> |
---|
308 | <property name="cursor"> |
---|
309 | <cursorShape>ArrowCursor</cursorShape> |
---|
310 | </property> |
---|
311 | <attribute name="toolBarArea"> |
---|
312 | <enum>TopToolBarArea</enum> |
---|
313 | </attribute> |
---|
314 | <attribute name="toolBarBreak"> |
---|
315 | <bool>false</bool> |
---|
316 | </attribute> |
---|
317 | <addaction name="actionFileNew"/> |
---|
318 | <addaction name="actionFileOpen"/> |
---|
319 | <addaction name="actionFileSaveTask"/> |
---|
320 | <addaction name="separator"/> |
---|
321 | <addaction name="actionFilePrint"/> |
---|
322 | <addaction name="actionSettingsPreferences"/> |
---|
323 | <addaction name="separator"/> |
---|
324 | <addaction name="actionFileExit"/> |
---|
325 | </widget> |
---|
326 | <action name="actionFilePrintSetup"> |
---|
327 | <property name="icon"> |
---|
328 | <iconset resource="../resources/tspsg.qrc"> |
---|
329 | <normaloff>:/images/icons/fileprint.png</normaloff>:/images/icons/fileprint.png</iconset> |
---|
330 | </property> |
---|
331 | <property name="text"> |
---|
332 | <string>P&rint setup...</string> |
---|
333 | </property> |
---|
334 | <property name="statusTip"> |
---|
335 | <string>Setup printing</string> |
---|
336 | </property> |
---|
337 | </action> |
---|
338 | <action name="actionFilePrint"> |
---|
339 | <property name="enabled"> |
---|
340 | <bool>false</bool> |
---|
341 | </property> |
---|
342 | <property name="icon"> |
---|
343 | <iconset resource="../resources/tspsg.qrc"> |
---|
344 | <normaloff>:/images/icons/fileprint.png</normaloff>:/images/icons/fileprint.png</iconset> |
---|
345 | </property> |
---|
346 | <property name="text"> |
---|
347 | <string>&Print...</string> |
---|
348 | </property> |
---|
349 | <property name="statusTip"> |
---|
350 | <string>Print solution results</string> |
---|
351 | </property> |
---|
352 | <property name="shortcut"> |
---|
353 | <string>Ctrl+P</string> |
---|
354 | </property> |
---|
355 | </action> |
---|
356 | <action name="actionFileSaveSolutionMatrices"> |
---|
357 | <property name="enabled"> |
---|
358 | <bool>false</bool> |
---|
359 | </property> |
---|
360 | <property name="text"> |
---|
361 | <string>Solution st&eps</string> |
---|
362 | </property> |
---|
363 | <property name="toolTip"> |
---|
364 | <string>Save solution steps</string> |
---|
365 | </property> |
---|
366 | <property name="statusTip"> |
---|
367 | <string>Save solution steps only</string> |
---|
368 | </property> |
---|
369 | </action> |
---|
370 | <action name="actionFileSaveSolutionGraph"> |
---|
371 | <property name="enabled"> |
---|
372 | <bool>false</bool> |
---|
373 | </property> |
---|
374 | <property name="text"> |
---|
375 | <string>Solution &graph</string> |
---|
376 | </property> |
---|
377 | <property name="toolTip"> |
---|
378 | <string>Save solution graph</string> |
---|
379 | </property> |
---|
380 | <property name="statusTip"> |
---|
381 | <string>Save solution graph only</string> |
---|
382 | </property> |
---|
383 | </action> |
---|
384 | <action name="actionFileSaveSolutionAll"> |
---|
385 | <property name="enabled"> |
---|
386 | <bool>false</bool> |
---|
387 | </property> |
---|
388 | <property name="text"> |
---|
389 | <string>&Solution</string> |
---|
390 | </property> |
---|
391 | <property name="toolTip"> |
---|
392 | <string>Save solution</string> |
---|
393 | </property> |
---|
394 | <property name="statusTip"> |
---|
395 | <string>Save solution steps and graph</string> |
---|
396 | </property> |
---|
397 | </action> |
---|
398 | <action name="actionFileNew"> |
---|
399 | <property name="icon"> |
---|
400 | <iconset resource="../resources/tspsg.qrc"> |
---|
401 | <normaloff>:/images/icons/filenew.png</normaloff>:/images/icons/filenew.png</iconset> |
---|
402 | </property> |
---|
403 | <property name="text"> |
---|
404 | <string>&New</string> |
---|
405 | </property> |
---|
406 | <property name="iconText"> |
---|
407 | <string>New</string> |
---|
408 | </property> |
---|
409 | <property name="toolTip"> |
---|
410 | <string>New task</string> |
---|
411 | </property> |
---|
412 | <property name="statusTip"> |
---|
413 | <string>Create new task</string> |
---|
414 | </property> |
---|
415 | <property name="shortcut"> |
---|
416 | <string>Ctrl+N</string> |
---|
417 | </property> |
---|
418 | </action> |
---|
419 | <action name="actionFileOpen"> |
---|
420 | <property name="icon"> |
---|
421 | <iconset resource="../resources/tspsg.qrc"> |
---|
422 | <normaloff>:/images/icons/fileopen.png</normaloff>:/images/icons/fileopen.png</iconset> |
---|
423 | </property> |
---|
424 | <property name="text"> |
---|
425 | <string>&Open...</string> |
---|
426 | </property> |
---|
427 | <property name="iconText"> |
---|
428 | <string>Open...</string> |
---|
429 | </property> |
---|
430 | <property name="toolTip"> |
---|
431 | <string>Open task</string> |
---|
432 | </property> |
---|
433 | <property name="statusTip"> |
---|
434 | <string>Open saved task</string> |
---|
435 | </property> |
---|
436 | <property name="shortcut"> |
---|
437 | <string>Ctrl+O</string> |
---|
438 | </property> |
---|
439 | </action> |
---|
440 | <action name="actionSettingsPreferences"> |
---|
441 | <property name="icon"> |
---|
442 | <iconset resource="../resources/tspsg.qrc"> |
---|
443 | <normaloff>:/images/icons/preferences_system.png</normaloff>:/images/icons/preferences_system.png</iconset> |
---|
444 | </property> |
---|
445 | <property name="text"> |
---|
446 | <string>&Preferences...</string> |
---|
447 | </property> |
---|
448 | <property name="iconText"> |
---|
449 | <string>Preferences...</string> |
---|
450 | </property> |
---|
451 | <property name="statusTip"> |
---|
452 | <string>Application preferences</string> |
---|
453 | </property> |
---|
454 | </action> |
---|
455 | <action name="actionHelpContents"> |
---|
456 | <property name="enabled"> |
---|
457 | <bool>false</bool> |
---|
458 | </property> |
---|
459 | <property name="icon"> |
---|
460 | <iconset resource="../resources/tspsg.qrc"> |
---|
461 | <normaloff>:/images/icons/contents.png</normaloff>:/images/icons/contents.png</iconset> |
---|
462 | </property> |
---|
463 | <property name="text"> |
---|
464 | <string>&Contents</string> |
---|
465 | </property> |
---|
466 | <property name="statusTip"> |
---|
467 | <string>Open help contents</string> |
---|
468 | </property> |
---|
469 | </action> |
---|
470 | <action name="actionHelpContextual"> |
---|
471 | <property name="enabled"> |
---|
472 | <bool>false</bool> |
---|
473 | </property> |
---|
474 | <property name="icon"> |
---|
475 | <iconset resource="../resources/tspsg.qrc"> |
---|
476 | <normaloff>:/images/icons/help_browser.png</normaloff>:/images/icons/help_browser.png</iconset> |
---|
477 | </property> |
---|
478 | <property name="text"> |
---|
479 | <string>Context &Help</string> |
---|
480 | </property> |
---|
481 | <property name="statusTip"> |
---|
482 | <string>Open context help</string> |
---|
483 | </property> |
---|
484 | </action> |
---|
485 | <action name="actionHelpAbout"> |
---|
486 | <property name="icon"> |
---|
487 | <iconset resource="../resources/tspsg.qrc"> |
---|
488 | <normaloff>:/images/icons/help_about.png</normaloff>:/images/icons/help_about.png</iconset> |
---|
489 | </property> |
---|
490 | <property name="text"> |
---|
491 | <string>&About...</string> |
---|
492 | </property> |
---|
493 | <property name="iconText"> |
---|
494 | <string>About...</string> |
---|
495 | </property> |
---|
496 | <property name="statusTip"> |
---|
497 | <string>About application</string> |
---|
498 | </property> |
---|
499 | </action> |
---|
500 | <action name="actionFileExit"> |
---|
501 | <property name="icon"> |
---|
502 | <iconset resource="../resources/tspsg.qrc"> |
---|
503 | <normaloff>:/images/icons/exit.png</normaloff>:/images/icons/exit.png</iconset> |
---|
504 | </property> |
---|
505 | <property name="text"> |
---|
506 | <string>E&xit</string> |
---|
507 | </property> |
---|
508 | <property name="statusTip"> |
---|
509 | <string>Exit application</string> |
---|
510 | </property> |
---|
511 | </action> |
---|
512 | <action name="actionFileSaveTask"> |
---|
513 | <property name="icon"> |
---|
514 | <iconset resource="../resources/tspsg.qrc"> |
---|
515 | <normaloff>:/images/icons/filesaveas.png</normaloff>:/images/icons/filesaveas.png</iconset> |
---|
516 | </property> |
---|
517 | <property name="text"> |
---|
518 | <string>&Task...</string> |
---|
519 | </property> |
---|
520 | <property name="iconText"> |
---|
521 | <string>Task...</string> |
---|
522 | </property> |
---|
523 | <property name="toolTip"> |
---|
524 | <string>Save task</string> |
---|
525 | </property> |
---|
526 | <property name="statusTip"> |
---|
527 | <string>Save task to file</string> |
---|
528 | </property> |
---|
529 | <property name="shortcut"> |
---|
530 | <string>Ctrl+S</string> |
---|
531 | </property> |
---|
532 | </action> |
---|
533 | <action name="actionSettingsLanguageAutodetect"> |
---|
534 | <property name="checkable"> |
---|
535 | <bool>true</bool> |
---|
536 | </property> |
---|
537 | <property name="checked"> |
---|
538 | <bool>true</bool> |
---|
539 | </property> |
---|
540 | <property name="text"> |
---|
541 | <string>&Autodetect</string> |
---|
542 | </property> |
---|
543 | <property name="toolTip"> |
---|
544 | <string>Detect language automatically</string> |
---|
545 | </property> |
---|
546 | <property name="statusTip"> |
---|
547 | <string>Detect language automatically based on regional settings</string> |
---|
548 | </property> |
---|
549 | </action> |
---|
550 | <action name="actionSettingsLanguageEnglish"> |
---|
551 | <property name="checkable"> |
---|
552 | <bool>true</bool> |
---|
553 | </property> |
---|
554 | <property name="checked"> |
---|
555 | <bool>true</bool> |
---|
556 | </property> |
---|
557 | <property name="text"> |
---|
558 | <string notr="true">English</string> |
---|
559 | </property> |
---|
560 | </action> |
---|
561 | <action name="actionFileSave"> |
---|
562 | <property name="enabled"> |
---|
563 | <bool>false</bool> |
---|
564 | </property> |
---|
565 | <property name="icon"> |
---|
566 | <iconset resource="../resources/tspsg.qrc"> |
---|
567 | <normaloff>:/images/icons/filesave.png</normaloff>:/images/icons/filesave.png</iconset> |
---|
568 | </property> |
---|
569 | <property name="text"> |
---|
570 | <string>&Save</string> |
---|
571 | </property> |
---|
572 | <property name="iconText"> |
---|
573 | <string>Save</string> |
---|
574 | </property> |
---|
575 | <property name="toolTip"> |
---|
576 | <string>Save task</string> |
---|
577 | </property> |
---|
578 | <property name="statusTip"> |
---|
579 | <string>Save current task</string> |
---|
580 | </property> |
---|
581 | </action> |
---|
582 | <action name="actionHelpAboutQt"> |
---|
583 | <property name="icon"> |
---|
584 | <iconset resource="../resources/tspsg.qrc"> |
---|
585 | <normaloff>:/images/qtlogo-64.png</normaloff>:/images/qtlogo-64.png</iconset> |
---|
586 | </property> |
---|
587 | <property name="text"> |
---|
588 | <string>About &Qt...</string> |
---|
589 | </property> |
---|
590 | <property name="iconText"> |
---|
591 | <string>About Qt...</string> |
---|
592 | </property> |
---|
593 | <property name="statusTip"> |
---|
594 | <string>About Qt library</string> |
---|
595 | </property> |
---|
596 | </action> |
---|
597 | </widget> |
---|
598 | <resources> |
---|
599 | <include location="../resources/tspsg.qrc"/> |
---|
600 | </resources> |
---|
601 | <connections> |
---|
602 | <connection> |
---|
603 | <sender>actionFileExit</sender> |
---|
604 | <signal>triggered()</signal> |
---|
605 | <receiver>MainWindow</receiver> |
---|
606 | <slot>close()</slot> |
---|
607 | <hints> |
---|
608 | <hint type="sourcelabel"> |
---|
609 | <x>-1</x> |
---|
610 | <y>-1</y> |
---|
611 | </hint> |
---|
612 | <hint type="destinationlabel"> |
---|
613 | <x>294</x> |
---|
614 | <y>229</y> |
---|
615 | </hint> |
---|
616 | </hints> |
---|
617 | </connection> |
---|
618 | </connections> |
---|
619 | </ui> |
---|