source: tspsg/ui/mainwindow.ui @ 690f6939a7

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

+ Task save prompt before creating or opening task and closing application if current task was modified.

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