12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>settingsWidget</class>
- <widget class="QWidget" name="settingsWidget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <layout class="QGridLayout" name="gridLayout_2">
- <item row="0" column="0">
- <widget class="QTabWidget" name="tabWidget">
- <property name="currentIndex">
- <number>0</number>
- </property>
- <widget class="QWidget" name="generalTab">
- <attribute name="title">
- <string>General</string>
- </attribute>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <widget class="QLabel" name="themeLabel">
- <property name="text">
- <string>Theme</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QCheckBox" name="systemThemeCheckBox">
- <property name="text">
- <string>System</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QCheckBox" name="lightThemeCheckBox">
- <property name="text">
- <string>Light</string>
- </property>
- </widget>
- </item>
- <item row="2" column="1">
- <widget class="QCheckBox" name="darkThemeCheckBox">
- <property name="text">
- <string>Dark</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QWidget" name="flightLoggingTab">
- <attribute name="title">
- <string>Flight Logging</string>
- </attribute>
- <widget class="QLabel" name="flightNumberPrefixLabel">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>20</y>
- <width>161</width>
- <height>19</height>
- </rect>
- </property>
- <property name="text">
- <string>Flight Number Prefix</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="flightNumberPrefixLineEdit">
- <property name="geometry">
- <rect>
- <x>200</x>
- <y>20</y>
- <width>113</width>
- <height>27</height>
- </rect>
- </property>
- <property name="placeholderText">
- <string>optional</string>
- </property>
- </widget>
- </widget>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|