sfwecho_client_mobile.ui Example File
sfwecho/sfwecho_client/sfwecho_client_mobile.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>EchoClient</class>
<widget class="QMainWindow" name="EchoClient">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>240</width>
<height>320</height>
</rect>
</property>
<property name="windowTitle">
<string>EchoClient</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="userLabel">
<property name="text">
<string>User Name:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="userName">
<property name="text">
<string>Anonymous</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QTextEdit" name="echoBox">
<property name="enabled">
<bool>true</bool>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="messageLabel">
<property name="text">
<string>Message:</string>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLineEdit" name="messageEdit"/>
</item>
<item>
<widget class="QPushButton" name="sendButton">
<property name="text">
<string>Send</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>240</width>
<height>23</height>
</rect>
</property>
<widget class="QMenu" name="menuOptions">
<property name="title">
<string>Options</string>
</property>
<addaction name="privateChat"/>
<addaction name="globalChat"/>
</widget>
<addaction name="menuOptions"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="privateChat">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>Private Chat</string>
</property>
</action>
<action name="globalChat">
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="text">
<string>Global Chat</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>
[+] Documentation Feedback