<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>chat_session</class> <widget class="QWidget" name="chat_session"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>758</width> <height>521</height> </rect> </property> <property name="acceptDrops"> <bool>true</bool> </property> <property name="windowTitle"> <string>Chat session</string> </property> <layout class="QVBoxLayout" name="widget_layout"> <property name="spacing"> <number>3</number> </property> <property name="leftMargin"> <number>0</number> </property> <property name="topMargin"> <number>0</number> </property> <property name="rightMargin"> <number>0</number> </property> <property name="bottomMargin"> <number>0</number> </property> <item> <widget class="ChatWebView" name="chat_view"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="minimumSize"> <size> <width>300</width> <height>100</height> </size> </property> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> </property> </widget> </item> <item> <widget class="ChatTextInput" name="chat_input"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Minimum"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="minimumSize"> <size> <width>0</width> <height>50</height> </size> </property> <property name="styleSheet"> <string notr="true">QTextEdit { margin: 4px 5px 4px 5px; border: 1px inset palette(dark); border-radius: 3px; } </string> </property> <property name="verticalScrollBarPolicy"> <enum>Qt::ScrollBarAlwaysOff</enum> </property> <property name="horizontalScrollBarPolicy"> <enum>Qt::ScrollBarAlwaysOff</enum> </property> </widget> </item> </layout> </widget> <customwidgets> <customwidget> <class>QWebView</class> <extends>QWidget</extends> <header>QtWebKitWidgets/QWebView</header> </customwidget> <customwidget> <class>ChatTextInput</class> <extends>QTextEdit</extends> <header>blink.chatwindow</header> </customwidget> <customwidget> <class>ChatWebView</class> <extends>QWebView</extends> <header>blink.chatwindow</header> </customwidget> </customwidgets> <resources/> <connections/> </ui>