1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>ErrorDialog</class>
4 <widget class="QDialog" name="ErrorDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>512</width>
10    <height>319</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>MPlayer Error</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout_2">
17   <item>
18    <layout class="QHBoxLayout" name="horizontalLayout">
19     <item>
20      <widget class="QLabel" name="icon">
21       <property name="text">
22        <string>icon</string>
23       </property>
24       <property name="alignment">
25        <set>Qt::AlignCenter</set>
26       </property>
27       <property name="margin">
28        <number>4</number>
29       </property>
30      </widget>
31     </item>
32     <item>
33      <layout class="QVBoxLayout" name="verticalLayout">
34       <item>
35        <widget class="QLabel" name="intro_label">
36         <property name="sizePolicy">
37          <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
38           <horstretch>0</horstretch>
39           <verstretch>0</verstretch>
40          </sizepolicy>
41         </property>
42         <property name="text">
43          <string>Oops, something wrong happened</string>
44         </property>
45        </widget>
46       </item>
47       <item>
48        <widget class="QLabel" name="text">
49         <property name="sizePolicy">
50          <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
51           <horstretch>0</horstretch>
52           <verstretch>0</verstretch>
53          </sizepolicy>
54         </property>
55         <property name="minimumSize">
56          <size>
57           <width>400</width>
58           <height>0</height>
59          </size>
60         </property>
61         <property name="text">
62          <string>Error</string>
63         </property>
64         <property name="wordWrap">
65          <bool>true</bool>
66         </property>
67        </widget>
68       </item>
69      </layout>
70     </item>
71    </layout>
72   </item>
73   <item>
74    <widget class="Line" name="line">
75     <property name="orientation">
76      <enum>Qt::Horizontal</enum>
77     </property>
78    </widget>
79   </item>
80   <item>
81    <layout class="QHBoxLayout">
82     <property name="spacing">
83      <number>6</number>
84     </property>
85     <property name="margin">
86      <number>0</number>
87     </property>
88     <item>
89      <widget class="QPushButton" name="viewlog_button">
90       <property name="text">
91        <string>Show log</string>
92       </property>
93       <property name="checkable">
94        <bool>true</bool>
95       </property>
96      </widget>
97     </item>
98     <item>
99      <spacer>
100       <property name="orientation">
101        <enum>Qt::Horizontal</enum>
102       </property>
103       <property name="sizeHint" stdset="0">
104        <size>
105         <width>40</width>
106         <height>20</height>
107        </size>
108       </property>
109      </spacer>
110     </item>
111     <item>
112      <widget class="QDialogButtonBox" name="button_box">
113       <property name="orientation">
114        <enum>Qt::Horizontal</enum>
115       </property>
116       <property name="standardButtons">
117        <set>QDialogButtonBox::Ok</set>
118       </property>
119      </widget>
120     </item>
121    </layout>
122   </item>
123   <item>
124    <widget class="QTextEdit" name="log">
125     <property name="readOnly">
126      <bool>true</bool>
127     </property>
128    </widget>
129   </item>
130  </layout>
131 </widget>
132 <tabstops>
133  <tabstop>viewlog_button</tabstop>
134  <tabstop>button_box</tabstop>
135  <tabstop>log</tabstop>
136 </tabstops>
137 <resources/>
138 <connections>
139  <connection>
140   <sender>button_box</sender>
141   <signal>accepted()</signal>
142   <receiver>ErrorDialog</receiver>
143   <slot>accept()</slot>
144   <hints>
145    <hint type="sourcelabel">
146     <x>248</x>
147     <y>254</y>
148    </hint>
149    <hint type="destinationlabel">
150     <x>157</x>
151     <y>274</y>
152    </hint>
153   </hints>
154  </connection>
155  <connection>
156   <sender>button_box</sender>
157   <signal>rejected()</signal>
158   <receiver>ErrorDialog</receiver>
159   <slot>reject()</slot>
160   <hints>
161    <hint type="sourcelabel">
162     <x>316</x>
163     <y>260</y>
164    </hint>
165    <hint type="destinationlabel">
166     <x>286</x>
167     <y>274</y>
168    </hint>
169   </hints>
170  </connection>
171 </connections>
172</ui>
173