a b/src/qtgui/listdialog.ui
1
<?xml version="1.0" encoding="UTF-8"?>
2
<ui version="4.0">
3
 <class>ListDialog</class>
4
 <widget class="QDialog" name="ListDialog">
5
  <property name="geometry">
6
   <rect>
7
    <x>0</x>
8
    <y>0</y>
9
    <width>400</width>
10
    <height>300</height>
11
   </rect>
12
  </property>
13
  <property name="windowTitle">
14
   <string>Dialog</string>
15
  </property>
16
  <layout class="QVBoxLayout" name="verticalLayout">
17
   <item>
18
    <widget class="QGroupBox" name="groupBox">
19
     <property name="title">
20
      <string>GroupBox</string>
21
     </property>
22
     <layout class="QHBoxLayout" name="horizontalLayout">
23
      <item>
24
       <widget class="QListWidget" name="listWidget"/>
25
      </item>
26
     </layout>
27
    </widget>
28
   </item>
29
   <item>
30
    <widget class="QDialogButtonBox" name="buttonBox">
31
     <property name="orientation">
32
      <enum>Qt::Horizontal</enum>
33
     </property>
34
     <property name="standardButtons">
35
      <set>QDialogButtonBox::Ok</set>
36
     </property>
37
     <property name="centerButtons">
38
      <bool>true</bool>
39
     </property>
40
    </widget>
41
   </item>
42
  </layout>
43
 </widget>
44
 <resources/>
45
 <connections>
46
  <connection>
47
   <sender>buttonBox</sender>
48
   <signal>accepted()</signal>
49
   <receiver>ListDialog</receiver>
50
   <slot>accept()</slot>
51
   <hints>
52
    <hint type="sourcelabel">
53
     <x>248</x>
54
     <y>254</y>
55
    </hint>
56
    <hint type="destinationlabel">
57
     <x>157</x>
58
     <y>274</y>
59
    </hint>
60
   </hints>
61
  </connection>
62
  <connection>
63
   <sender>buttonBox</sender>
64
   <signal>rejected()</signal>
65
   <receiver>ListDialog</receiver>
66
   <slot>reject()</slot>
67
   <hints>
68
    <hint type="sourcelabel">
69
     <x>316</x>
70
     <y>260</y>
71
    </hint>
72
    <hint type="destinationlabel">
73
     <x>286</x>
74
     <y>274</y>
75
    </hint>
76
   </hints>
77
  </connection>
78
 </connections>
79
</ui>