Skip to content

Commit

Permalink
Made ui changes, removed splitter, made fixed size
Browse files Browse the repository at this point in the history
  • Loading branch information
lukitree committed Aug 6, 2015
1 parent 0491c02 commit 8d91a68
Showing 1 changed file with 82 additions and 73 deletions.
155 changes: 82 additions & 73 deletions Client/client.ui
Original file line number Diff line number Diff line change
Expand Up @@ -14,80 +14,90 @@
<string>Client</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QSplitter" name="splitter">
<widget class="QWidget" name="">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<y>330</y>
<width>581</width>
<height>321</height>
<height>25</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLineEdit" name="messageEdit">
<property name="clearButtonEnabled">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="sendButton">
<property name="text">
<string>Send</string>
</property>
<property name="autoDefault">
<bool>false</bool>
</property>
<property name="default">
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QListWidget" name="messageList">
<property name="geometry">
<rect>
<x>11</x>
<y>11</y>
<width>481</width>
<height>311</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<widget class="QWidget" name="layoutWidget">
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QListWidget" name="messageList">
<property name="verticalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOn</enum>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="autoScroll">
<bool>true</bool>
</property>
<property name="alternatingRowColors">
<bool>false</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::NoSelection</enum>
</property>
<property name="flow">
<enum>QListView::TopToBottom</enum>
</property>
<property name="isWrapping" stdset="0">
<bool>false</bool>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="currentRow">
<number>-1</number>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="messageEdit">
<property name="clearButtonEnabled">
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="layoutWidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QListWidget" name="userList"/>
</item>
<item>
<widget class="QPushButton" name="sendButton">
<property name="text">
<string>Send</string>
</property>
<property name="autoDefault">
<bool>false</bool>
</property>
<property name="default">
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</widget>
<property name="verticalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOn</enum>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="autoScroll">
<bool>true</bool>
</property>
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::NoSelection</enum>
</property>
<property name="flow">
<enum>QListView::TopToBottom</enum>
</property>
<property name="isWrapping" stdset="0">
<bool>false</bool>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="currentRow">
<number>-1</number>
</property>
</widget>
<widget class="QListWidget" name="userList">
<property name="geometry">
<rect>
<x>500</x>
<y>10</y>
<width>91</width>
<height>311</height>
</rect>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectItems</enum>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
Expand Down Expand Up @@ -115,7 +125,6 @@
<addaction name="menuConnect"/>
<addaction name="menuChat"/>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="actionConnect">
<property name="text">
<string>Connect</string>
Expand Down Expand Up @@ -150,12 +159,12 @@
<slot>click()</slot>
<hints>
<hint type="sourcelabel">
<x>289</x>
<y>342</y>
<x>290</x>
<y>372</y>
</hint>
<hint type="destinationlabel">
<x>464</x>
<y>349</y>
<x>589</x>
<y>374</y>
</hint>
</hints>
</connection>
Expand Down

0 comments on commit 8d91a68

Please sign in to comment.