123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <?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>1280</width>
- <height>720</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>1280</width>
- <height>720</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>16777215</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>openPilotLog</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"/>
- <action name="actionNewFlight">
- <property name="text">
- <string>New Flight</string>
- </property>
- <property name="toolTip">
- <string>Add a new flight to the logbook</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+N</string>
- </property>
- </action>
- <action name="actionQuit">
- <property name="text">
- <string>Quit</string>
- </property>
- <property name="toolTip">
- <string>Exit the application</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="toolTip">
- <string>Change 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 your 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>
- <action name="actionAirports">
- <property name="text">
- <string>Airports</string>
- </property>
- <property name="toolTip">
- <string>Add a new or edit an existing airport</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+A</string>
- </property>
- </action>
- <action name="actionNewSim">
- <property name="text">
- <string>New Sim</string>
- </property>
- <property name="toolTip">
- <string>Add a new simulator sesion to the logbook</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+S</string>
- </property>
- </action>
- </widget>
- <resources/>
- <connections/>
- </ui>
|