1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>HgRemoveSubrepositoriesDialog</class>
4 <widget class="QDialog" name="HgRemoveSubrepositoriesDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>500</width>
10    <height>300</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Remove Sub-repositories</string>
15  </property>
16  <property name="sizeGripEnabled">
17   <bool>true</bool>
18  </property>
19  <layout class="QVBoxLayout" name="verticalLayout">
20   <item>
21    <widget class="QListWidget" name="subrepositories">
22     <property name="alternatingRowColors">
23      <bool>true</bool>
24     </property>
25     <property name="selectionMode">
26      <enum>QAbstractItemView::ExtendedSelection</enum>
27     </property>
28    </widget>
29   </item>
30   <item>
31    <widget class="QPushButton" name="removeButton">
32     <property name="enabled">
33      <bool>false</bool>
34     </property>
35     <property name="toolTip">
36      <string>Press to remove the selected entries</string>
37     </property>
38     <property name="text">
39      <string>&amp;Remove</string>
40     </property>
41    </widget>
42   </item>
43   <item>
44    <widget class="QCheckBox" name="deleteCheckBox">
45     <property name="toolTip">
46      <string>Select to delete the removed entries from disc</string>
47     </property>
48     <property name="text">
49      <string>Delete removed entries from disc</string>
50     </property>
51    </widget>
52   </item>
53   <item>
54    <widget class="QDialogButtonBox" name="buttonBox">
55     <property name="orientation">
56      <enum>Qt::Horizontal</enum>
57     </property>
58     <property name="standardButtons">
59      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
60     </property>
61    </widget>
62   </item>
63  </layout>
64 </widget>
65 <tabstops>
66  <tabstop>subrepositories</tabstop>
67  <tabstop>removeButton</tabstop>
68  <tabstop>deleteCheckBox</tabstop>
69  <tabstop>buttonBox</tabstop>
70 </tabstops>
71 <resources/>
72 <connections>
73  <connection>
74   <sender>buttonBox</sender>
75   <signal>accepted()</signal>
76   <receiver>HgRemoveSubrepositoriesDialog</receiver>
77   <slot>accept()</slot>
78   <hints>
79    <hint type="sourcelabel">
80     <x>248</x>
81     <y>254</y>
82    </hint>
83    <hint type="destinationlabel">
84     <x>157</x>
85     <y>274</y>
86    </hint>
87   </hints>
88  </connection>
89  <connection>
90   <sender>buttonBox</sender>
91   <signal>rejected()</signal>
92   <receiver>HgRemoveSubrepositoriesDialog</receiver>
93   <slot>reject()</slot>
94   <hints>
95    <hint type="sourcelabel">
96     <x>316</x>
97     <y>260</y>
98    </hint>
99    <hint type="destinationlabel">
100     <x>286</x>
101     <y>274</y>
102    </hint>
103   </hints>
104  </connection>
105 </connections>
106</ui>
107