123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>NewAirportDialog</class>
- <widget class="QDialog" name="NewAirportDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>260</width>
- <height>246</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Add New Airport</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="9" column="1" colspan="2">
- <widget class="QDialogButtonBox" name="buttonBox">
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
- </property>
- </widget>
- </item>
- <item row="3" column="0">
- <widget class="QLabel" name="countryLabel">
- <property name="text">
- <string>Country</string>
- </property>
- </widget>
- </item>
- <item row="6" column="0">
- <widget class="QLabel" name="longitudeLabel">
- <property name="text">
- <string>Longitude</string>
- </property>
- </widget>
- </item>
- <item row="4" column="0">
- <widget class="QLabel" name="latitudeLabel">
- <property name="text">
- <string>Latitude</string>
- </property>
- </widget>
- </item>
- <item row="8" column="0">
- <widget class="QLabel" name="timezoneLabel">
- <property name="text">
- <string>Timezone</string>
- </property>
- </widget>
- </item>
- <item row="3" column="2">
- <widget class="QLineEdit" name="countryLineEdit"/>
- </item>
- <item row="1" column="2">
- <widget class="QLineEdit" name="iataLineEdit">
- <property name="maxLength">
- <number>3</number>
- </property>
- </widget>
- </item>
- <item row="8" column="2">
- <widget class="QComboBox" name="timeZoneComboBox"/>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="icaoLabel">
- <property name="text">
- <string>ICAO Code</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="iataLabel">
- <property name="text">
- <string>IATA Code</string>
- </property>
- </widget>
- </item>
- <item row="0" column="2">
- <widget class="QLineEdit" name="nameLineEdit"/>
- </item>
- <item row="0" column="0" colspan="2">
- <widget class="QLabel" name="nameLabel">
- <property name="text">
- <string>Airport Name</string>
- </property>
- </widget>
- </item>
- <item row="2" column="2">
- <widget class="QLineEdit" name="icaoLineEdit">
- <property name="maxLength">
- <number>4</number>
- </property>
- </widget>
- </item>
- <item row="6" column="2">
- <widget class="QDoubleSpinBox" name="lonDoubleSpinBox">
- <property name="decimals">
- <number>10</number>
- </property>
- <property name="minimum">
- <double>-180.000000000000000</double>
- </property>
- <property name="maximum">
- <double>180.000000000000000</double>
- </property>
- </widget>
- </item>
- <item row="4" column="2">
- <widget class="QDoubleSpinBox" name="latDoubleSpinBox">
- <property name="decimals">
- <number>10</number>
- </property>
- <property name="minimum">
- <double>-90.000000000000000</double>
- </property>
- <property name="maximum">
- <double>90.000000000000000</double>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|