123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?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>800</width>
- <height>600</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>MainWindow</string>
- </property>
- <widget class="QWidget" name="centralwidget">
- <widget class="QPlainTextEdit" name="plainTextEdit_log">
- <property name="geometry">
- <rect>
- <x>40</x>
- <y>230</y>
- <width>611</width>
- <height>251</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>20</y>
- <width>141</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string>Vehicle Type:</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>60</y>
- <width>141</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string>Version:</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_3">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>100</y>
- <width>141</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string>File Path:</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_Version">
- <property name="geometry">
- <rect>
- <x>250</x>
- <y>60</y>
- <width>211</width>
- <height>25</height>
- </rect>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_FilePath">
- <property name="geometry">
- <rect>
- <x>251</x>
- <y>100</y>
- <width>471</width>
- <height>25</height>
- </rect>
- </property>
- </widget>
- <widget class="QComboBox" name="comboBox_VehicleType">
- <property name="geometry">
- <rect>
- <x>250</x>
- <y>17</y>
- <width>211</width>
- <height>25</height>
- </rect>
- </property>
- </widget>
- </widget>
- <widget class="QMenuBar" name="menubar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>800</width>
- <height>28</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile">
- <property name="title">
- <string>File</string>
- </property>
- <addaction name="actionAdd"/>
- <addaction name="actionAdd_Vehicle"/>
- </widget>
- <addaction name="menuFile"/>
- </widget>
- <widget class="QStatusBar" name="statusbar"/>
- <action name="actionAdd">
- <property name="text">
- <string>Sel File</string>
- </property>
- </action>
- <action name="actionAdd_Vehicle">
- <property name="text">
- <string>Add Vehicle</string>
- </property>
- </action>
- </widget>
- <resources/>
- <connections/>
- </ui>
|