123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?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 class="QWidget" name="aboutTab">
- <attribute name="title">
- <string>About</string>
- </attribute>
- <layout class="QGridLayout" name="gridLayout_3">
- <item row="0" column="0">
- <widget class="QPushButton" name="aboutPushButton">
- <property name="text">
- <string>About openPilotLog</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|