123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>DialogChat</class>
- <widget class="QWidget" name="DialogChat">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>268</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Chat</string>
- </property>
- <property name="styleSheet">
- <string notr="true">QWidget
- {
- color: white;
- background-color: black;
- }
-
-
- QLineEdit
- {
- border: 1px solid white;
- border-radius: 2px;
- }</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QTextEdit" name="textChat">
- <property name="focusPolicy">
- <enum>Qt::NoFocus</enum>
- </property>
- <property name="readOnly">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QLineEdit" name="lineChat"/>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|