source: tspsg/ui/mainwindow.ui @ ac4cb71650

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since ac4cb71650 was ac4cb71650, checked in by Oleksii Serdiuk, 15 years ago

English language should always be in language menu.

  • Property mode set to 100644
File size: 17.6 KB
Line 
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>&amp;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>&amp;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           </widget>
157          </item>
158          <item>
159           <widget class="QPushButton" name="buttonSolve">
160            <property name="cursor">
161             <cursorShape>PointingHandCursor</cursorShape>
162            </property>
163            <property name="statusTip">
164             <string>Solve current task</string>
165            </property>
166            <property name="text">
167             <string>Solve</string>
168            </property>
169            <property name="icon">
170             <iconset resource="../resources/tspsg.qrc">
171              <normaloff>:/images/buttons/buttons/OK.png</normaloff>:/images/buttons/buttons/OK.png</iconset>
172            </property>
173           </widget>
174          </item>
175         </layout>
176        </item>
177       </layout>
178      </widget>
179      <widget class="QWidget" name="tabSolution">
180       <attribute name="title">
181        <string>Solution</string>
182       </attribute>
183       <layout class="QVBoxLayout">
184        <item>
185         <layout class="QHBoxLayout">
186          <property name="spacing">
187           <number>0</number>
188          </property>
189          <item>
190           <widget class="QTextEdit" name="textEdit">
191            <property name="sizePolicy">
192             <sizepolicy hsizetype="Fixed" vsizetype="Expanding">
193              <horstretch>0</horstretch>
194              <verstretch>0</verstretch>
195             </sizepolicy>
196            </property>
197            <property name="statusTip">
198             <string>Solution steps</string>
199            </property>
200            <property name="readOnly">
201             <bool>true</bool>
202            </property>
203           </widget>
204          </item>
205          <item>
206           <widget class="QGraphicsView" name="graphicsView">
207            <property name="statusTip">
208             <string>Solution graph</string>
209            </property>
210           </widget>
211          </item>
212         </layout>
213        </item>
214       </layout>
215      </widget>
216     </widget>
217    </item>
218   </layout>
219  </widget>
220  <widget class="QMenuBar" name="menubar">
221   <property name="geometry">
222    <rect>
223     <x>0</x>
224     <y>0</y>
225     <width>640</width>
226     <height>22</height>
227    </rect>
228   </property>
229   <widget class="QMenu" name="menuFile">
230    <property name="windowIcon">
231     <iconset>
232      <normaloff/>
233     </iconset>
234    </property>
235    <property name="title">
236     <string>&amp;File</string>
237    </property>
238    <widget class="QMenu" name="menuFileSave">
239     <property name="title">
240      <string>&amp;Save</string>
241     </property>
242     <property name="icon">
243      <iconset resource="../resources/tspsg.qrc">
244       <normaloff>:/images/buttons/buttons/Save.png</normaloff>:/images/buttons/buttons/Save.png</iconset>
245     </property>
246     <addaction name="actionFileSaveTask"/>
247     <addaction name="separator"/>
248     <addaction name="actionFileSaveSolutionAll"/>
249     <addaction name="actionFileSaveSolutionMatrices"/>
250     <addaction name="actionFileSaveSolutionGraph"/>
251    </widget>
252    <addaction name="actionFileNew"/>
253    <addaction name="actionFileOpen"/>
254    <addaction name="menuFileSave"/>
255    <addaction name="separator"/>
256    <addaction name="actionFilePrintSetup"/>
257    <addaction name="actionFilePrint"/>
258    <addaction name="separator"/>
259    <addaction name="actionFileExit"/>
260   </widget>
261   <widget class="QMenu" name="menuSettings">
262    <property name="title">
263     <string>&amp;Settings</string>
264    </property>
265    <widget class="QMenu" name="menuSettingsLanguage">
266     <property name="toolTip">
267      <string>Select language</string>
268     </property>
269     <property name="statusTip">
270      <string>Select application language</string>
271     </property>
272     <property name="title">
273      <string extracomment="Please, append &quot; / Language&quot; when translating this string.">&amp;Language</string>
274     </property>
275     <property name="icon">
276      <iconset resource="../resources/tspsg.qrc">
277       <normaloff>:/images/buttons/buttons/Web.png</normaloff>:/images/buttons/buttons/Web.png</iconset>
278     </property>
279     <addaction name="actionSettingsLanguageAutodetect"/>
280     <addaction name="separator"/>
281     <addaction name="actionSettingsLanguageEnglish"/>
282    </widget>
283    <addaction name="menuSettingsLanguage"/>
284    <addaction name="separator"/>
285    <addaction name="actionSettingsPreferences"/>
286   </widget>
287   <widget class="QMenu" name="menuHelp">
288    <property name="title">
289     <string>&amp;Help</string>
290    </property>
291    <addaction name="actionHelpContents"/>
292    <addaction name="actionHelpContextual"/>
293    <addaction name="separator"/>
294    <addaction name="actionHelpAbout"/>
295   </widget>
296   <addaction name="menuFile"/>
297   <addaction name="menuSettings"/>
298   <addaction name="menuHelp"/>
299  </widget>
300  <widget class="QStatusBar" name="statusbar"/>
301  <widget class="QToolBar" name="toolBar">
302   <property name="cursor">
303    <cursorShape>ArrowCursor</cursorShape>
304   </property>
305   <property name="iconSize">
306    <size>
307     <width>17</width>
308     <height>18</height>
309    </size>
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/buttons/buttons/PrintSetup.png</normaloff>:/images/buttons/buttons/PrintSetup.png</iconset>
330   </property>
331   <property name="text">
332    <string>P&amp;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/buttons/buttons/Print.png</normaloff>:/images/buttons/buttons/Print.png</iconset>
345   </property>
346   <property name="text">
347    <string>&amp;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&amp;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 &amp;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>&amp;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/buttons/buttons/Document.png</normaloff>:/images/buttons/buttons/Document.png</iconset>
402   </property>
403   <property name="text">
404    <string>&amp;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="enabled">
421    <bool>false</bool>
422   </property>
423   <property name="icon">
424    <iconset resource="../resources/tspsg.qrc">
425     <normaloff>:/images/buttons/buttons/OpenFolder.png</normaloff>:/images/buttons/buttons/OpenFolder.png</iconset>
426   </property>
427   <property name="text">
428    <string>&amp;Open...</string>
429   </property>
430   <property name="iconText">
431    <string>Open...</string>
432   </property>
433   <property name="toolTip">
434    <string>Open task</string>
435   </property>
436   <property name="statusTip">
437    <string>Open saved task</string>
438   </property>
439   <property name="shortcut">
440    <string>Ctrl+O</string>
441   </property>
442  </action>
443  <action name="actionSettingsPreferences">
444   <property name="icon">
445    <iconset resource="../resources/tspsg.qrc">
446     <normaloff>:/images/buttons/buttons/Properties.png</normaloff>:/images/buttons/buttons/Properties.png</iconset>
447   </property>
448   <property name="text">
449    <string>&amp;Preferences...</string>
450   </property>
451   <property name="iconText">
452    <string>Preferences...</string>
453   </property>
454   <property name="statusTip">
455    <string>Application preferences</string>
456   </property>
457  </action>
458  <action name="actionHelpContents">
459   <property name="enabled">
460    <bool>false</bool>
461   </property>
462   <property name="icon">
463    <iconset resource="../resources/tspsg.qrc">
464     <normaloff>:/images/buttons/buttons/book_open.png</normaloff>:/images/buttons/buttons/book_open.png</iconset>
465   </property>
466   <property name="text">
467    <string>&amp;Contents</string>
468   </property>
469   <property name="statusTip">
470    <string>Open help contents</string>
471   </property>
472  </action>
473  <action name="actionHelpContextual">
474   <property name="enabled">
475    <bool>false</bool>
476   </property>
477   <property name="icon">
478    <iconset resource="../resources/tspsg.qrc">
479     <normaloff>:/images/buttons/buttons/Help.png</normaloff>:/images/buttons/buttons/Help.png</iconset>
480   </property>
481   <property name="text">
482    <string>&amp;Context help</string>
483   </property>
484   <property name="statusTip">
485    <string>Open context help</string>
486   </property>
487  </action>
488  <action name="actionHelpAbout">
489   <property name="icon">
490    <iconset resource="../resources/tspsg.qrc">
491     <normaloff>:/images/buttons/buttons/infoBubble.png</normaloff>:/images/buttons/buttons/infoBubble.png</iconset>
492   </property>
493   <property name="text">
494    <string>&amp;About...</string>
495   </property>
496   <property name="iconText">
497    <string>About...</string>
498   </property>
499   <property name="statusTip">
500    <string>About application</string>
501   </property>
502  </action>
503  <action name="actionFileExit">
504   <property name="icon">
505    <iconset resource="../resources/tspsg.qrc">
506     <normaloff>:/images/buttons/buttons/NoAction.png</normaloff>:/images/buttons/buttons/NoAction.png</iconset>
507   </property>
508   <property name="text">
509    <string>E&amp;xit</string>
510   </property>
511   <property name="statusTip">
512    <string>Exit application</string>
513   </property>
514  </action>
515  <action name="actionFileSaveTask">
516   <property name="enabled">
517    <bool>false</bool>
518   </property>
519   <property name="icon">
520    <iconset resource="../resources/tspsg.qrc">
521     <normaloff>:/images/buttons/buttons/Save.png</normaloff>:/images/buttons/buttons/Save.png</iconset>
522   </property>
523   <property name="text">
524    <string>&amp;Task...</string>
525   </property>
526   <property name="iconText">
527    <string>Task...</string>
528   </property>
529   <property name="toolTip">
530    <string>Save task</string>
531   </property>
532   <property name="statusTip">
533    <string>Save task to file</string>
534   </property>
535   <property name="shortcut">
536    <string>Ctrl+S</string>
537   </property>
538  </action>
539  <action name="actionSettingsLanguageAutodetect">
540   <property name="checkable">
541    <bool>true</bool>
542   </property>
543   <property name="checked">
544    <bool>true</bool>
545   </property>
546   <property name="text">
547    <string>&amp;Autodetect</string>
548   </property>
549   <property name="toolTip">
550    <string>Detect language automatically</string>
551   </property>
552   <property name="statusTip">
553    <string>Detect language automatically based on regional settings</string>
554   </property>
555  </action>
556  <action name="actionSettingsLanguageEnglish">
557   <property name="checkable">
558    <bool>true</bool>
559   </property>
560   <property name="checked">
561    <bool>true</bool>
562   </property>
563   <property name="text">
564    <string notr="true">English</string>
565   </property>
566  </action>
567 </widget>
568 <resources>
569  <include location="../resources/tspsg.qrc"/>
570 </resources>
571 <connections>
572  <connection>
573   <sender>actionFileExit</sender>
574   <signal>triggered()</signal>
575   <receiver>MainWindow</receiver>
576   <slot>close()</slot>
577   <hints>
578    <hint type="sourcelabel">
579     <x>-1</x>
580     <y>-1</y>
581    </hint>
582    <hint type="destinationlabel">
583     <x>294</x>
584     <y>229</y>
585    </hint>
586   </hints>
587  </connection>
588 </connections>
589</ui>
Note: See TracBrowser for help on using the repository browser.