| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>MainWindow</class> <widget class="QMainWindow" name="MainWindow">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>1024</width>    <height>768</height>   </rect>  </property>  <property name="sizePolicy">   <sizepolicy hsizetype="Preferred" vsizetype="Preferred">    <horstretch>0</horstretch>    <verstretch>0</verstretch>   </sizepolicy>  </property>  <property name="maximumSize">   <size>    <width>16777215</width>    <height>16777215</height>   </size>  </property>  <property name="windowTitle">   <string>openPilotLog v0.6</string>  </property>  <property name="toolButtonStyle">   <enum>Qt::ToolButtonTextUnderIcon</enum>  </property>  <widget class="QWidget" name="centralwidget">   <layout class="QGridLayout" name="gridLayout">    <item row="0" column="0">     <widget class="QStackedWidget" name="stackedWidget">      <property name="currentIndex">       <number>-1</number>      </property>     </widget>    </item>   </layout>  </widget>  <widget class="QStatusBar" name="statusbar"/>  <widget class="QToolBar" name="toolBar">   <property name="sizePolicy">    <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">     <horstretch>0</horstretch>     <verstretch>0</verstretch>    </sizepolicy>   </property>   <property name="windowTitle">    <string>toolBar</string>   </property>   <property name="iconSize">    <size>     <width>12</width>     <height>12</height>    </size>   </property>   <property name="toolButtonStyle">    <enum>Qt::ToolButtonTextUnderIcon</enum>   </property>   <property name="floatable">    <bool>false</bool>   </property>   <attribute name="toolBarArea">    <enum>TopToolBarArea</enum>   </attribute>   <attribute name="toolBarBreak">    <bool>false</bool>   </attribute>   <addaction name="actionHome"/>   <addaction name="actionNewFlight"/>   <addaction name="actionLogbook"/>   <addaction name="actionAircraft"/>   <addaction name="actionPilots"/>   <addaction name="actionSettings"/>   <addaction name="actionQuit"/>  </widget>  <action name="actionNewFlight">   <property name="text">    <string>NewFlight</string>   </property>   <property name="shortcut">    <string>Ctrl+N</string>   </property>  </action>  <action name="actionQuit">   <property name="text">    <string>Quit</string>   </property>   <property name="shortcut">    <string>Ctrl+Q</string>   </property>  </action>  <action name="actionHome">   <property name="text">    <string>Home</string>   </property>   <property name="shortcut">    <string>Ctrl+H</string>   </property>  </action>  <action name="actionSettings">   <property name="text">    <string>Settings</string>   </property>   <property name="shortcut">    <string>Ctrl+S</string>   </property>  </action>  <action name="actionLogbook">   <property name="text">    <string>Logbook</string>   </property>   <property name="shortcut">    <string>Ctrl+L</string>   </property>  </action>  <action name="actionAircraft">   <property name="text">    <string>Aircraft</string>   </property>   <property name="toolTip">    <string>Show or edit Aircraft</string>   </property>   <property name="shortcut">    <string>Ctrl+A</string>   </property>  </action>  <action name="actionNewAircraft">   <property name="text">    <string>NewAircraft</string>   </property>   <property name="toolTip">    <string>Add a new aircraft to the database</string>   </property>  </action>  <action name="actionPilots">   <property name="text">    <string>Pilots</string>   </property>   <property name="toolTip">    <string>Show or edit Pilots</string>   </property>   <property name="shortcut">    <string>Ctrl+P</string>   </property>  </action>  <action name="actionNewPilot">   <property name="text">    <string>NewPilot</string>   </property>   <property name="toolTip">    <string>Add a new Pilot to the database</string>   </property>  </action>  <action name="actionDebug">   <property name="text">    <string>Debug</string>   </property>   <property name="shortcut">    <string>Ctrl+D</string>   </property>  </action> </widget> <resources/> <connections/></ui>
 |