1<?xml version="1.0" encoding="utf-8"?>
2<ui version="4.0">
3 <class>ChooseItemDialog</class>
4 <widget class="QDialog" name="ChooseItemDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>290</width>
10    <height>352</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Choose task type</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout">
17   <item>
18    <widget class="QLabel" name="hintLabel">
19     <property name="text">
20      <string>Add a task of the following type:</string>
21     </property>
22    </widget>
23   </item>
24   <item>
25    <widget class="QListWidget" name="listWidget"/>
26   </item>
27   <item>
28    <widget class="QDialogButtonBox" name="buttonBox">
29     <property name="standardButtons">
30      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
31     </property>
32    </widget>
33   </item>
34  </layout>
35 </widget>
36 <resources/>
37 <connections>
38  <connection>
39   <sender>buttonBox</sender>
40   <signal>accepted()</signal>
41   <receiver>ChooseItemDialog</receiver>
42   <slot>accept()</slot>
43   <hints>
44    <hint type="sourcelabel">
45     <x>144</x>
46     <y>331</y>
47    </hint>
48    <hint type="destinationlabel">
49     <x>144</x>
50     <y>175</y>
51    </hint>
52   </hints>
53  </connection>
54  <connection>
55   <sender>buttonBox</sender>
56   <signal>rejected()</signal>
57   <receiver>ChooseItemDialog</receiver>
58   <slot>reject()</slot>
59   <hints>
60    <hint type="sourcelabel">
61     <x>144</x>
62     <y>331</y>
63    </hint>
64    <hint type="destinationlabel">
65     <x>144</x>
66     <y>175</y>
67    </hint>
68   </hints>
69  </connection>
70 </connections>
71</ui>
72