mainwindow.ui Example File
can/mainwindow.ui<?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>551</width> <height>481</height> </rect> </property> <property name="windowTitle"> <string>CAN Example</string> </property> <widget class="QWidget" name="centralWidget"> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="SendFrameBox" name="sendFrameBox"> <property name="title"> <string>Send CAN frame</string> </property> </widget> </item> <item> <widget class="QGroupBox" name="receivedMessagesBox"> <property name="title"> <string>Received CAN messages</string> </property> <layout class="QVBoxLayout" name="verticalLayout_4"> <item> <widget class="QLabel" name="label_3"> <property name="font"> <font> <family>Courier</family> <kerning>false</kerning> </font> </property> <property name="frameShape"> <enum>QFrame::StyledPanel</enum> </property> <property name="text"> <string>Timestamp Flags CAN-ID DLC Data</string> </property> </widget> </item> <item> <widget class="QTextEdit" name="receivedMessagesEdit"> <property name="font"> <font> <family>Courier</family> <kerning>false</kerning> </font> </property> <property name="frameShape"> <enum>QFrame::StyledPanel</enum> </property> <property name="undoRedoEnabled"> <bool>false</bool> </property> <property name="lineWrapMode"> <enum>QTextEdit::NoWrap</enum> </property> <property name="readOnly"> <bool>true</bool> </property> </widget> </item> </layout> </widget> </item> </layout> </widget> <widget class="QMenuBar" name="menuBar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>551</width> <height>19</height> </rect> </property> <widget class="QMenu" name="menuCalls"> <property name="title"> <string>&Calls</string> </property> <addaction name="actionConnect"/> <addaction name="actionDisconnect"/> <addaction name="separator"/> <addaction name="actionClearLog"/> <addaction name="separator"/> <addaction name="actionQuit"/> </widget> <widget class="QMenu" name="menuHelp"> <property name="title"> <string>&Help</string> </property> <addaction name="actionPluginDocumentation"/> <addaction name="actionAboutQt"/> </widget> <addaction name="menuCalls"/> <addaction name="menuHelp"/> </widget> <widget class="QToolBar" name="mainToolBar"> <attribute name="toolBarArea"> <enum>TopToolBarArea</enum> </attribute> <attribute name="toolBarBreak"> <bool>false</bool> </attribute> <addaction name="actionConnect"/> <addaction name="actionDisconnect"/> <addaction name="separator"/> <addaction name="actionClearLog"/> </widget> <widget class="QStatusBar" name="statusBar"/> <action name="actionConnect"> <property name="icon"> <iconset resource="can.qrc"> <normaloff>:/images/connect.png</normaloff>:/images/connect.png</iconset> </property> <property name="text"> <string>&Connect</string> </property> </action> <action name="actionDisconnect"> <property name="icon"> <iconset resource="can.qrc"> <normaloff>:/images/disconnect.png</normaloff>:/images/disconnect.png</iconset> </property> <property name="text"> <string>&Disconnect</string> </property> </action> <action name="actionQuit"> <property name="icon"> <iconset resource="can.qrc"> <normaloff>:/images/application-exit.png</normaloff>:/images/application-exit.png</iconset> </property> <property name="text"> <string>&Quit</string> </property> </action> <action name="actionAboutQt"> <property name="text"> <string>&About Qt</string> </property> </action> <action name="actionClearLog"> <property name="icon"> <iconset resource="can.qrc"> <normaloff>:/images/clear.png</normaloff>:/images/clear.png</iconset> </property> <property name="text"> <string>Clear &Log</string> </property> </action> <action name="actionPluginDocumentation"> <property name="text"> <string>Plugin Documentation</string> </property> <property name="toolTip"> <string>Open plugin documentation in Webbrowser</string> </property> </action> </widget> <layoutdefault spacing="6" margin="11"/> <customwidgets> <customwidget> <class>SendFrameBox</class> <extends>QGroupBox</extends> <header location="global">sendframebox.h</header> <container>1</container> </customwidget> </customwidgets> <resources> <include location="can.qrc"/> </resources> <connections/> </ui>