mainwindow.ui 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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>1024</width>
  10. <height>768</height>
  11. </rect>
  12. </property>
  13. <property name="sizePolicy">
  14. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  15. <horstretch>0</horstretch>
  16. <verstretch>0</verstretch>
  17. </sizepolicy>
  18. </property>
  19. <property name="maximumSize">
  20. <size>
  21. <width>16777215</width>
  22. <height>16777215</height>
  23. </size>
  24. </property>
  25. <property name="windowTitle">
  26. <string>openPilotLog v0.6</string>
  27. </property>
  28. <property name="toolButtonStyle">
  29. <enum>Qt::ToolButtonTextUnderIcon</enum>
  30. </property>
  31. <widget class="QWidget" name="centralwidget">
  32. <layout class="QGridLayout" name="gridLayout">
  33. <item row="0" column="0">
  34. <widget class="QStackedWidget" name="stackedWidget">
  35. <property name="currentIndex">
  36. <number>-1</number>
  37. </property>
  38. </widget>
  39. </item>
  40. </layout>
  41. </widget>
  42. <widget class="QStatusBar" name="statusbar"/>
  43. <widget class="QToolBar" name="toolBar">
  44. <property name="sizePolicy">
  45. <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
  46. <horstretch>0</horstretch>
  47. <verstretch>0</verstretch>
  48. </sizepolicy>
  49. </property>
  50. <property name="windowTitle">
  51. <string>toolBar</string>
  52. </property>
  53. <property name="iconSize">
  54. <size>
  55. <width>12</width>
  56. <height>12</height>
  57. </size>
  58. </property>
  59. <property name="toolButtonStyle">
  60. <enum>Qt::ToolButtonTextUnderIcon</enum>
  61. </property>
  62. <property name="floatable">
  63. <bool>false</bool>
  64. </property>
  65. <attribute name="toolBarArea">
  66. <enum>TopToolBarArea</enum>
  67. </attribute>
  68. <attribute name="toolBarBreak">
  69. <bool>false</bool>
  70. </attribute>
  71. <addaction name="actionHome"/>
  72. <addaction name="actionNewFlight"/>
  73. <addaction name="actionLogbook"/>
  74. <addaction name="actionAircraft"/>
  75. <addaction name="actionPilots"/>
  76. <addaction name="actionBackup"/>
  77. <addaction name="actionSettings"/>
  78. <addaction name="actionQuit"/>
  79. </widget>
  80. <action name="actionNewFlight">
  81. <property name="text">
  82. <string>NewFlight</string>
  83. </property>
  84. <property name="toolTip">
  85. <string>Add a new flight to the logbook</string>
  86. </property>
  87. <property name="shortcut">
  88. <string>Ctrl+N</string>
  89. </property>
  90. </action>
  91. <action name="actionQuit">
  92. <property name="text">
  93. <string>Quit</string>
  94. </property>
  95. <property name="toolTip">
  96. <string>Exit the application</string>
  97. </property>
  98. <property name="shortcut">
  99. <string>Ctrl+Q</string>
  100. </property>
  101. </action>
  102. <action name="actionHome">
  103. <property name="text">
  104. <string>Home</string>
  105. </property>
  106. <property name="shortcut">
  107. <string>Ctrl+H</string>
  108. </property>
  109. </action>
  110. <action name="actionSettings">
  111. <property name="text">
  112. <string>Settings</string>
  113. </property>
  114. <property name="toolTip">
  115. <string>Change Settings</string>
  116. </property>
  117. <property name="shortcut">
  118. <string>Ctrl+S</string>
  119. </property>
  120. </action>
  121. <action name="actionLogbook">
  122. <property name="text">
  123. <string>Logbook</string>
  124. </property>
  125. <property name="shortcut">
  126. <string>Ctrl+L</string>
  127. </property>
  128. </action>
  129. <action name="actionAircraft">
  130. <property name="text">
  131. <string>Aircraft</string>
  132. </property>
  133. <property name="toolTip">
  134. <string>Show or edit your aircraft</string>
  135. </property>
  136. <property name="shortcut">
  137. <string>Ctrl+A</string>
  138. </property>
  139. </action>
  140. <action name="actionNewAircraft">
  141. <property name="text">
  142. <string>NewAircraft</string>
  143. </property>
  144. <property name="toolTip">
  145. <string>Add a new aircraft to the database</string>
  146. </property>
  147. </action>
  148. <action name="actionPilots">
  149. <property name="text">
  150. <string>Pilots</string>
  151. </property>
  152. <property name="toolTip">
  153. <string>Show or edit Pilots</string>
  154. </property>
  155. <property name="shortcut">
  156. <string>Ctrl+P</string>
  157. </property>
  158. </action>
  159. <action name="actionNewPilot">
  160. <property name="text">
  161. <string>NewPilot</string>
  162. </property>
  163. <property name="toolTip">
  164. <string>Add a new Pilot to the database</string>
  165. </property>
  166. </action>
  167. <action name="actionDebug">
  168. <property name="text">
  169. <string>Debug</string>
  170. </property>
  171. <property name="shortcut">
  172. <string>Ctrl+D</string>
  173. </property>
  174. </action>
  175. <action name="actionBackup">
  176. <property name="text">
  177. <string>Backup</string>
  178. </property>
  179. <property name="toolTip">
  180. <string>Create or restore a backup of the database</string>
  181. </property>
  182. <property name="shortcut">
  183. <string>Ctrl+B</string>
  184. </property>
  185. </action>
  186. </widget>
  187. <resources/>
  188. <connections/>
  189. </ui>