MainWindow.ui
1 <?xml version="1.0" encoding="UTF-8"?> 2 <ui version="4.0"> 3 <class>MainWindow</class> 4 <widget class="QMainWindow" name="MainWindow"> 5 <property name="geometry"> 6 <rect> 7 <x>0</x> 8 <y>0</y> 9 <width>600</width> 10 <height>400</height> 11 </rect> 12 </property> 13 <property name="sizePolicy"> 14 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> 15 <horstretch>0</horstretch> 16 <verstretch>0</verstretch> 17 </sizepolicy> 18 </property> 19 <property name="minimumSize"> 20 <size> 21 <width>600</width> 22 <height>400</height> 23 </size> 24 </property> 25 <property name="maximumSize"> 26 <size> 27 <width>600</width> 28 <height>400</height> 29 </size> 30 </property> 31 <property name="windowTitle"> 32 <string>coreboot configurator</string> 33 </property> 34 <widget class="QWidget" name="centralwidget"> 35 <layout class="QVBoxLayout" name="verticalLayout"> 36 <item> 37 <widget class="QTabWidget" name="centralTabWidget"/> 38 </item> 39 <item> 40 <layout class="QHBoxLayout" name="horizontalLayout"> 41 <item> 42 <widget class="QCheckBox" name="advancedModeCheckBox"> 43 <property name="text"> 44 <string>Advanced mode</string> 45 </property> 46 </widget> 47 </item> 48 <item> 49 <spacer name="horizontalSpacer"> 50 <property name="orientation"> 51 <enum>Qt::Horizontal</enum> 52 </property> 53 <property name="sizeHint" stdset="0"> 54 <size> 55 <width>40</width> 56 <height>20</height> 57 </size> 58 </property> 59 </spacer> 60 </item> 61 <item> 62 <widget class="QPushButton" name="saveButton"> 63 <property name="text"> 64 <string>Save</string> 65 </property> 66 <property name="icon"> 67 <iconset theme="document-save-symbolic"/> 68 </property> 69 </widget> 70 </item> 71 </layout> 72 </item> 73 </layout> 74 </widget> 75 <widget class="QMenuBar" name="menubar"> 76 <property name="geometry"> 77 <rect> 78 <x>0</x> 79 <y>0</y> 80 <width>600</width> 81 <height>25</height> 82 </rect> 83 </property> 84 <widget class="QMenu" name="menuFile"> 85 <property name="title"> 86 <string>File</string> 87 </property> 88 <addaction name="actionSave"/> 89 <addaction name="actionLoad"/> 90 </widget> 91 <widget class="QMenu" name="menuHelp"> 92 <property name="title"> 93 <string>Help</string> 94 </property> 95 <addaction name="actionAbout"/> 96 </widget> 97 <addaction name="menuFile"/> 98 <addaction name="menuHelp"/> 99 </widget> 100 <action name="actionSave"> 101 <property name="text"> 102 <string>Save to File...</string> 103 </property> 104 </action> 105 <action name="actionLoad"> 106 <property name="text"> 107 <string>Load from File...</string> 108 </property> 109 </action> 110 <action name="actionAbout"> 111 <property name="text"> 112 <string>About...</string> 113 </property> 114 </action> 115 </widget> 116 <resources/> 117 <connections/> 118 </ui>