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>400</width> 10 <height>300</height> 11 </rect> 12 </property> 13 <property name="windowTitle"> 14 <string>Simple Terminal</string> 15 </property> 16 <widget class="QWidget" name="centralWidget"> 17 <layout class="QVBoxLayout" name="verticalLayout"/> 18 </widget> 19 <widget class="QMenuBar" name="menuBar"> 20 <property name="geometry"> 21 <rect> 22 <x>0</x> 23 <y>0</y> 24 <width>400</width> 25 <height>19</height> 26 </rect> 27 </property> 28 <widget class="QMenu" name="menuCalls"> 29 <property name="title"> 30 <string>Calls</string> 31 </property> 32 <addaction name="actionConnect"/> 33 <addaction name="actionDisconnect"/> 34 <addaction name="separator"/> 35 <addaction name="actionQuit"/> 36 </widget> 37 <widget class="QMenu" name="menuTools"> 38 <property name="title"> 39 <string>Tools</string> 40 </property> 41 <addaction name="actionConfigure"/> 42 <addaction name="actionClear"/> 43 </widget> 44 <widget class="QMenu" name="menuHelp"> 45 <property name="title"> 46 <string>Help</string> 47 </property> 48 <addaction name="actionAbout"/> 49 <addaction name="actionAboutQt"/> 50 </widget> 51 <addaction name="menuCalls"/> 52 <addaction name="menuTools"/> 53 <addaction name="menuHelp"/> 54 </widget> 55 <widget class="QToolBar" name="mainToolBar"> 56 <attribute name="toolBarArea"> 57 <enum>TopToolBarArea</enum> 58 </attribute> 59 <attribute name="toolBarBreak"> 60 <bool>false</bool> 61 </attribute> 62 <addaction name="actionConnect"/> 63 <addaction name="actionDisconnect"/> 64 <addaction name="actionConfigure"/> 65 <addaction name="actionClear"/> 66 <addaction name="actionExit"/> 67 </widget> 68 <widget class="QStatusBar" name="statusBar"/> 69 <action name="actionAbout"> 70 <property name="text"> 71 <string>&About</string> 72 </property> 73 <property name="toolTip"> 74 <string>About program</string> 75 </property> 76 <property name="shortcut"> 77 <string>Alt+A</string> 78 </property> 79 </action> 80 <action name="actionAboutQt"> 81 <property name="text"> 82 <string>About Qt</string> 83 </property> 84 </action> 85 <action name="actionConnect"> 86 <property name="icon"> 87 <iconset resource="terminal.qrc"> 88 <normaloff>:/images/connect.png</normaloff>:/images/connect.png</iconset> 89 </property> 90 <property name="text"> 91 <string>C&onnect</string> 92 </property> 93 <property name="toolTip"> 94 <string>Connect to serial port</string> 95 </property> 96 <property name="shortcut"> 97 <string>Ctrl+O</string> 98 </property> 99 </action> 100 <action name="actionDisconnect"> 101 <property name="icon"> 102 <iconset resource="terminal.qrc"> 103 <normaloff>:/images/disconnect.png</normaloff>:/images/disconnect.png</iconset> 104 </property> 105 <property name="text"> 106 <string>&Disconnect</string> 107 </property> 108 <property name="toolTip"> 109 <string>Disconnect from serial port</string> 110 </property> 111 <property name="shortcut"> 112 <string>Ctrl+D</string> 113 </property> 114 </action> 115 <action name="actionConfigure"> 116 <property name="icon"> 117 <iconset resource="terminal.qrc"> 118 <normaloff>:/images/settings.png</normaloff>:/images/settings.png</iconset> 119 </property> 120 <property name="text"> 121 <string>&Configure</string> 122 </property> 123 <property name="toolTip"> 124 <string>Configure serial port</string> 125 </property> 126 <property name="shortcut"> 127 <string>Alt+C</string> 128 </property> 129 </action> 130 <action name="actionClear"> 131 <property name="icon"> 132 <iconset resource="terminal.qrc"> 133 <normaloff>:/images/clear.png</normaloff>:/images/clear.png</iconset> 134 </property> 135 <property name="text"> 136 <string>C&lear</string> 137 </property> 138 <property name="toolTip"> 139 <string>Clear data</string> 140 </property> 141 <property name="shortcut"> 142 <string>Alt+L</string> 143 </property> 144 </action> 145 <action name="actionExit"> 146 <property name="text"> 147 <string>Exit</string> 148 </property> 149 </action> 150 <action name="actionQuit"> 151 <property name="icon"> 152 <iconset resource="terminal.qrc"> 153 <normaloff>:/images/application-exit.png</normaloff>:/images/application-exit.png</iconset> 154 </property> 155 <property name="text"> 156 <string>&Quit</string> 157 </property> 158 <property name="shortcut"> 159 <string>Ctrl+Q</string> 160 </property> 161 </action> 162 </widget> 163 <layoutdefault spacing="6" margin="11"/> 164 <resources> 165 <include location="terminal.qrc"/> 166 </resources> 167 <connections/> 168</ui> 169