1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>FolderExplorer</class>
4 <widget class="QDialog" name="FolderExplorer">
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>Folders</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout">
17   <item>
18    <widget class="QTreeWidget" name="treeWidget">
19     <property name="contextMenuPolicy">
20      <enum>Qt::CustomContextMenu</enum>
21     </property>
22     <property name="rootIsDecorated">
23      <bool>false</bool>
24     </property>
25     <attribute name="headerVisible">
26      <bool>false</bool>
27     </attribute>
28     <column>
29      <property name="text">
30       <string notr="true">1</string>
31      </property>
32     </column>
33    </widget>
34   </item>
35   <item>
36    <widget class="QDialogButtonBox" name="buttonBox">
37     <property name="orientation">
38      <enum>Qt::Horizontal</enum>
39     </property>
40     <property name="standardButtons">
41      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
42     </property>
43    </widget>
44   </item>
45  </layout>
46 </widget>
47 <resources/>
48 <connections>
49  <connection>
50   <sender>buttonBox</sender>
51   <signal>accepted()</signal>
52   <receiver>FolderExplorer</receiver>
53   <slot>accept()</slot>
54   <hints>
55    <hint type="sourcelabel">
56     <x>9</x>
57     <y>290</y>
58    </hint>
59    <hint type="destinationlabel">
60     <x>157</x>
61     <y>274</y>
62    </hint>
63   </hints>
64  </connection>
65  <connection>
66   <sender>buttonBox</sender>
67   <signal>rejected()</signal>
68   <receiver>FolderExplorer</receiver>
69   <slot>reject()</slot>
70   <hints>
71    <hint type="sourcelabel">
72     <x>35</x>
73     <y>290</y>
74    </hint>
75    <hint type="destinationlabel">
76     <x>286</x>
77     <y>274</y>
78    </hint>
79   </hints>
80  </connection>
81  <connection>
82   <sender>treeWidget</sender>
83   <signal>customContextMenuRequested(QPoint)</signal>
84   <receiver>FolderExplorer</receiver>
85   <slot>slotContextMenu(QPoint)</slot>
86   <hints>
87    <hint type="sourcelabel">
88     <x>152</x>
89     <y>93</y>
90    </hint>
91    <hint type="destinationlabel">
92     <x>396</x>
93     <y>182</y>
94    </hint>
95   </hints>
96  </connection>
97  <connection>
98   <sender>treeWidget</sender>
99   <signal>itemActivated(QTreeWidgetItem*,int)</signal>
100   <receiver>FolderExplorer</receiver>
101   <slot>slotItemSelected(QTreeWidgetItem*,int)</slot>
102   <hints>
103    <hint type="sourcelabel">
104     <x>150</x>
105     <y>106</y>
106    </hint>
107    <hint type="destinationlabel">
108     <x>398</x>
109     <y>68</y>
110    </hint>
111   </hints>
112  </connection>
113 </connections>
114 <slots>
115  <slot>slotContextMenu(QPoint)</slot>
116  <slot>slotItemSelected(QTreeWidgetItem*,int)</slot>
117 </slots>
118</ui>
119