12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ConsoleDialog</class>
- <widget class="QDialog" name="ConsoleDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>721</width>
- <height>836</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <widget class="QTextEdit" name="consoleText">
- <property name="geometry">
- <rect>
- <x>30</x>
- <y>60</y>
- <width>661</width>
- <height>721</height>
- </rect>
- </property>
- <property name="readOnly">
- <bool>false</bool>
- </property>
- </widget>
- <widget class="QLabel" name="consoleTitle">
- <property name="geometry">
- <rect>
- <x>300</x>
- <y>20</y>
- <width>51</width>
- <height>18</height>
- </rect>
- </property>
- <property name="text">
- <string>Console</string>
- </property>
- </widget>
- <widget class="QPushButton" name="closeConsole">
- <property name="geometry">
- <rect>
- <x>600</x>
- <y>800</y>
- <width>80</width>
- <height>26</height>
- </rect>
- </property>
- <property name="text">
- <string>Close</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|