123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <?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="windowTitle">
- <string>openLog v0.5</string>
- </property>
- <widget class="QWidget" name="centralwidget">
- <layout class="QGridLayout" name="gridLayout">
- <item row="6" column="0">
- <widget class="QPushButton" name="EasaViewButton">
- <property name="text">
- <string>View EASA FCL.050 Logbook</string>
- </property>
- </widget>
- </item>
- <item row="11" column="0">
- <spacer name="verticalSpacer">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeType">
- <enum>QSizePolicy::Fixed</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>20</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item row="3" column="1">
- <widget class="QPushButton" name="editflightButton">
- <property name="text">
- <string>Edit Flight</string>
- </property>
- </widget>
- </item>
- <item row="0" column="0" colspan="2">
- <widget class="QTableView" name="tableView">
- <property name="font">
- <font>
- <family>Cantarell</family>
- </font>
- </property>
- <property name="selectionMode">
- <enum>QAbstractItemView::SingleSelection</enum>
- </property>
- <property name="selectionBehavior">
- <enum>QAbstractItemView::SelectRows</enum>
- </property>
- </widget>
- </item>
- <item row="9" column="0">
- <widget class="QComboBox" name="filterComboBox">
- <item>
- <property name="text">
- <string>Pilot Name</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Aircraft Registration</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Airline</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Multi-Engine</string>
- </property>
- </item>
- </widget>
- </item>
- <item row="13" column="0" colspan="2">
- <widget class="QPushButton" name="quitButton">
- <property name="text">
- <string>Quit</string>
- </property>
- </widget>
- </item>
- <item row="3" column="0">
- <widget class="QPushButton" name="filterFlightsByDateButton">
- <property name="text">
- <string>Filter Flights by Date</string>
- </property>
- </widget>
- </item>
- <item row="9" column="1">
- <widget class="QPushButton" name="ShowAllButton">
- <property name="text">
- <string>Show All Flights</string>
- </property>
- </widget>
- </item>
- <item row="8" column="0">
- <widget class="QLabel" name="filterFlightsByLabel">
- <property name="text">
- <string>Filter Flights by</string>
- </property>
- </widget>
- </item>
- <item row="6" column="1">
- <widget class="QPushButton" name="deleteFlightPushButton">
- <property name="text">
- <string>Delete Flight</string>
- </property>
- </widget>
- </item>
- <item row="2" column="0">
- <widget class="QDateEdit" name="FilterDateEdit">
- <property name="dateTime">
- <datetime>
- <hour>23</hour>
- <minute>0</minute>
- <second>0</second>
- <year>2019</year>
- <month>12</month>
- <day>21</day>
- </datetime>
- </property>
- <property name="displayFormat">
- <string>yyyy-MM-dd</string>
- </property>
- <property name="calendarPopup">
- <bool>true</bool>
- </property>
- <property name="timeSpec">
- <enum>Qt::UTC</enum>
- </property>
- </widget>
- </item>
- <item row="2" column="1">
- <widget class="QPushButton" name="newflightButton">
- <property name="text">
- <string>New Flight</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QMenuBar" name="menubar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>1280</width>
- <height>25</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile">
- <property name="title">
- <string>File</string>
- </property>
- <addaction name="actionNew_Flight"/>
- <addaction name="separator"/>
- <addaction name="actionQuit"/>
- </widget>
- <addaction name="menuFile"/>
- </widget>
- <widget class="QStatusBar" name="statusbar"/>
- <action name="actionNew_Flight">
- <property name="text">
- <string>New Flight</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>
- </widget>
- <resources/>
- <connections/>
- </ui>
|