<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>DataDialog</class> <widget class="QDialog" name="DataDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>300</height> </rect> </property> <property name="windowTitle"> <string>Input Data</string> </property> <property name="modal"> <bool>true</bool> </property> <widget class="QPlainTextEdit" name="txtDataInput"> <property name="geometry"> <rect> <x>10</x> <y>20</y> <width>381</width> <height>221</height> </rect> </property> </widget> <widget class="QWidget" name="horizontalLayoutWidget"> <property name="geometry"> <rect> <x>10</x> <y>250</y> <width>381</width> <height>41</height> </rect> </property> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QPushButton" name="btnFromFile"> <property name="text"> <string>From File...</string> </property> </widget> </item> <item> <widget class="QPushButton" name="btnReset"> <property name="text"> <string>Reset</string> </property> </widget> </item> <item> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> <item> <widget class="QPushButton" name="btnOK"> <property name="text"> <string>OK</string> </property> </widget> </item> <item> <widget class="QPushButton" name="btnCancel"> <property name="text"> <string>Cancel</string> </property> </widget> </item> </layout> </widget> <widget class="QLabel" name="label"> <property name="geometry"> <rect> <x>10</x> <y>0</y> <width>56</width> <height>16</height> </rect> </property> <property name="text"> <string>Data</string> </property> </widget> </widget> <resources/> <connections/> </ui>