1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <ui version="4.0"> |
|
3 <class>PipDialog</class> |
|
4 <widget class="QDialog" name="PipDialog"> |
|
5 <property name="geometry"> |
|
6 <rect> |
|
7 <x>0</x> |
|
8 <y>0</y> |
|
9 <width>600</width> |
|
10 <height>500</height> |
|
11 </rect> |
|
12 </property> |
|
13 <property name="windowTitle"> |
|
14 <string>pip</string> |
|
15 </property> |
|
16 <property name="sizeGripEnabled"> |
|
17 <bool>true</bool> |
|
18 </property> |
|
19 <layout class="QVBoxLayout"> |
|
20 <item> |
|
21 <widget class="QGroupBox" name="outputGroup"> |
|
22 <property name="sizePolicy"> |
|
23 <sizepolicy hsizetype="Preferred" vsizetype="Expanding"> |
|
24 <horstretch>0</horstretch> |
|
25 <verstretch>2</verstretch> |
|
26 </sizepolicy> |
|
27 </property> |
|
28 <property name="title"> |
|
29 <string>Output</string> |
|
30 </property> |
|
31 <layout class="QVBoxLayout"> |
|
32 <item> |
|
33 <widget class="QTextEdit" name="resultbox"> |
|
34 <property name="readOnly"> |
|
35 <bool>true</bool> |
|
36 </property> |
|
37 <property name="acceptRichText"> |
|
38 <bool>false</bool> |
|
39 </property> |
|
40 </widget> |
|
41 </item> |
|
42 </layout> |
|
43 </widget> |
|
44 </item> |
|
45 <item> |
|
46 <widget class="QGroupBox" name="errorGroup"> |
|
47 <property name="sizePolicy"> |
|
48 <sizepolicy hsizetype="Preferred" vsizetype="Expanding"> |
|
49 <horstretch>0</horstretch> |
|
50 <verstretch>1</verstretch> |
|
51 </sizepolicy> |
|
52 </property> |
|
53 <property name="title"> |
|
54 <string>Errors</string> |
|
55 </property> |
|
56 <layout class="QVBoxLayout"> |
|
57 <item> |
|
58 <widget class="QTextEdit" name="errors"> |
|
59 <property name="readOnly"> |
|
60 <bool>true</bool> |
|
61 </property> |
|
62 <property name="acceptRichText"> |
|
63 <bool>false</bool> |
|
64 </property> |
|
65 </widget> |
|
66 </item> |
|
67 </layout> |
|
68 </widget> |
|
69 </item> |
|
70 <item> |
|
71 <widget class="QDialogButtonBox" name="buttonBox"> |
|
72 <property name="orientation"> |
|
73 <enum>Qt::Horizontal</enum> |
|
74 </property> |
|
75 <property name="standardButtons"> |
|
76 <set>QDialogButtonBox::Close</set> |
|
77 </property> |
|
78 </widget> |
|
79 </item> |
|
80 </layout> |
|
81 </widget> |
|
82 <layoutdefault spacing="6" margin="11"/> |
|
83 <pixmapfunction>qPixmapFromMimeSource</pixmapfunction> |
|
84 <tabstops> |
|
85 <tabstop>resultbox</tabstop> |
|
86 <tabstop>errors</tabstop> |
|
87 <tabstop>buttonBox</tabstop> |
|
88 </tabstops> |
|
89 <resources/> |
|
90 <connections/> |
|
91 </ui> |
|