<?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>600</width> <height>400</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="minimumSize"> <size> <width>600</width> <height>400</height> </size> </property> <property name="maximumSize"> <size> <width>600</width> <height>400</height> </size> </property> <property name="windowTitle"> <string>coreboot configurator</string> </property> <widget class="QWidget" name="centralwidget"> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QTabWidget" name="centralTabWidget"/> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QCheckBox" name="advancedModeCheckBox"> <property name="text"> <string>Advanced mode</string> </property> </widget> </item> <item> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> <item> <widget class="QPushButton" name="saveButton"> <property name="text"> <string>Save</string> </property> <property name="icon"> <iconset theme="document-save-symbolic"/> </property> </widget> </item> </layout> </item> </layout> </widget> <widget class="QMenuBar" name="menubar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>600</width> <height>25</height> </rect> </property> <widget class="QMenu" name="menuFile"> <property name="title"> <string>File</string> </property> <addaction name="actionSave"/> <addaction name="actionLoad"/> </widget> <widget class="QMenu" name="menuHelp"> <property name="title"> <string>Help</string> </property> <addaction name="actionAbout"/> </widget> <addaction name="menuFile"/> <addaction name="menuHelp"/> </widget> <action name="actionSave"> <property name="text"> <string>Save to File...</string> </property> </action> <action name="actionLoad"> <property name="text"> <string>Load from File...</string> </property> </action> <action name="actionAbout"> <property name="text"> <string>About...</string> </property> </action> </widget> <resources/> <connections/> </ui>