1<?xml version="1.0" encoding="UTF-8"?> 2<ui version="4.0"> 3 <class>TeriminalWidget</class> 4 <widget class="QMainWindow" name="TeriminalWidget"> 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>22</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 <property name="movable"> 57 <bool>false</bool> 58 </property> 59 <property name="allowedAreas"> 60 <set>Qt::RightToolBarArea</set> 61 </property> 62 <attribute name="toolBarArea"> 63 <enum>RightToolBarArea</enum> 64 </attribute> 65 <attribute name="toolBarBreak"> 66 <bool>false</bool> 67 </attribute> 68 <addaction name="actionConnect"/> 69 <addaction name="actionDisconnect"/> 70 <addaction name="actionConfigure"/> 71 <addaction name="actionClear"/> 72 </widget> 73 <widget class="QStatusBar" name="statusBar"/> 74 <action name="actionAbout"> 75 <property name="text"> 76 <string>&About</string> 77 </property> 78 <property name="toolTip"> 79 <string>About program</string> 80 </property> 81 <property name="shortcut"> 82 <string>Alt+A</string> 83 </property> 84 </action> 85 <action name="actionAboutQt"> 86 <property name="text"> 87 <string>About Qt</string> 88 </property> 89 </action> 90 <action name="actionConnect"> 91 <property name="icon"> 92 <iconset resource="../serialassistant/serialassistant.qrc"> 93 <normaloff>:/images/connect.png</normaloff>:/images/connect.png</iconset> 94 </property> 95 <property name="text"> 96 <string>C&onnect</string> 97 </property> 98 <property name="toolTip"> 99 <string>Connect to serial port</string> 100 </property> 101 <property name="shortcut"> 102 <string>Ctrl+O</string> 103 </property> 104 </action> 105 <action name="actionDisconnect"> 106 <property name="icon"> 107 <iconset resource="../serialassistant/serialassistant.qrc"> 108 <normaloff>:/images/disconnect.png</normaloff>:/images/disconnect.png</iconset> 109 </property> 110 <property name="text"> 111 <string>&Disconnect</string> 112 </property> 113 <property name="toolTip"> 114 <string>Disconnect from serial port</string> 115 </property> 116 <property name="shortcut"> 117 <string>Ctrl+D</string> 118 </property> 119 </action> 120 <action name="actionConfigure"> 121 <property name="icon"> 122 <iconset resource="../serialassistant/serialassistant.qrc"> 123 <normaloff>:/images/settings.png</normaloff>:/images/settings.png</iconset> 124 </property> 125 <property name="text"> 126 <string>&Configure</string> 127 </property> 128 <property name="toolTip"> 129 <string>Configure serial port</string> 130 </property> 131 <property name="shortcut"> 132 <string>Alt+C</string> 133 </property> 134 </action> 135 <action name="actionClear"> 136 <property name="icon"> 137 <iconset resource="../serialassistant/serialassistant.qrc"> 138 <normaloff>:/images/clear.png</normaloff>:/images/clear.png</iconset> 139 </property> 140 <property name="text"> 141 <string>C&lear</string> 142 </property> 143 <property name="toolTip"> 144 <string>Clear data</string> 145 </property> 146 <property name="shortcut"> 147 <string>Alt+L</string> 148 </property> 149 </action> 150 <action name="actionQuit"> 151 <property name="icon"> 152 <iconset resource="../serialassistant/serialassistant.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="../serialassistant/serialassistant.qrc"/> 166 </resources> 167 <connections/> 168</ui> 169