1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <author>Oleksandr Shneyder(o.shneyder@phoca-gmbh.de)</author>
4 <class>AppDialog</class>
5 <widget class="QDialog" name="AppDialog">
6  <property name="geometry">
7   <rect>
8    <x>0</x>
9    <y>0</y>
10    <width>510</width>
11    <height>400</height>
12   </rect>
13  </property>
14  <property name="windowTitle">
15   <string>Published Applications</string>
16  </property>
17  <layout class="QHBoxLayout" name="horizontalLayout_2">
18   <item>
19    <layout class="QVBoxLayout" name="verticalLayout_2">
20     <item>
21      <widget class="QTreeWidget" name="treeWidget">
22       <property name="iconSize">
23        <size>
24         <width>22</width>
25         <height>22</height>
26        </size>
27       </property>
28       <property name="rootIsDecorated">
29        <bool>true</bool>
30       </property>
31       <property name="uniformRowHeights">
32        <bool>true</bool>
33       </property>
34       <property name="itemsExpandable">
35        <bool>true</bool>
36       </property>
37       <property name="sortingEnabled">
38        <bool>false</bool>
39       </property>
40       <property name="expandsOnDoubleClick">
41        <bool>false</bool>
42       </property>
43       <attribute name="headerVisible">
44        <bool>false</bool>
45       </attribute>
46       <column>
47        <property name="text">
48         <string notr="true">1</string>
49        </property>
50       </column>
51      </widget>
52     </item>
53     <item>
54      <layout class="QHBoxLayout" name="horizontalLayout">
55       <item>
56        <widget class="QLabel" name="label">
57         <property name="text">
58          <string>Search:</string>
59         </property>
60        </widget>
61       </item>
62       <item>
63        <widget class="QLineEdit" name="lineEdit"/>
64       </item>
65      </layout>
66     </item>
67    </layout>
68   </item>
69   <item>
70    <layout class="QVBoxLayout" name="verticalLayout">
71     <item>
72      <widget class="QPushButton" name="startButton">
73       <property name="text">
74        <string>&amp;Start</string>
75       </property>
76      </widget>
77     </item>
78     <item>
79      <spacer name="verticalSpacer">
80       <property name="orientation">
81        <enum>Qt::Vertical</enum>
82       </property>
83       <property name="sizeHint" stdset="0">
84        <size>
85         <width>20</width>
86         <height>40</height>
87        </size>
88       </property>
89      </spacer>
90     </item>
91     <item>
92      <widget class="QPushButton" name="closeButton">
93       <property name="text">
94        <string>&amp;Close</string>
95       </property>
96      </widget>
97     </item>
98    </layout>
99   </item>
100  </layout>
101 </widget>
102 <resources/>
103 <connections>
104  <connection>
105   <sender>closeButton</sender>
106   <signal>clicked()</signal>
107   <receiver>AppDialog</receiver>
108   <slot>reject()</slot>
109   <hints>
110    <hint type="sourcelabel">
111     <x>475</x>
112     <y>372</y>
113    </hint>
114    <hint type="destinationlabel">
115     <x>468</x>
116     <y>286</y>
117    </hint>
118   </hints>
119  </connection>
120  <connection>
121   <sender>treeWidget</sender>
122   <signal>itemSelectionChanged()</signal>
123   <receiver>AppDialog</receiver>
124   <slot>slotSelectedChanged()</slot>
125   <hints>
126    <hint type="sourcelabel">
127     <x>180</x>
128     <y>121</y>
129    </hint>
130    <hint type="destinationlabel">
131     <x>468</x>
132     <y>144</y>
133    </hint>
134   </hints>
135  </connection>
136  <connection>
137   <sender>startButton</sender>
138   <signal>clicked()</signal>
139   <receiver>AppDialog</receiver>
140   <slot>slotStartSelected()</slot>
141   <hints>
142    <hint type="sourcelabel">
143     <x>462</x>
144     <y>18</y>
145    </hint>
146    <hint type="destinationlabel">
147     <x>453</x>
148     <y>78</y>
149    </hint>
150   </hints>
151  </connection>
152  <connection>
153   <sender>treeWidget</sender>
154   <signal>itemDoubleClicked(QTreeWidgetItem*,int)</signal>
155   <receiver>AppDialog</receiver>
156   <slot>slotDoubleClicked(QTreeWidgetItem*)</slot>
157   <hints>
158    <hint type="sourcelabel">
159     <x>266</x>
160     <y>226</y>
161    </hint>
162    <hint type="destinationlabel">
163     <x>459</x>
164     <y>200</y>
165    </hint>
166   </hints>
167  </connection>
168  <connection>
169   <sender>lineEdit</sender>
170   <signal>textChanged(QString)</signal>
171   <receiver>AppDialog</receiver>
172   <slot>slotSearchChanged(QString)</slot>
173   <hints>
174    <hint type="sourcelabel">
175     <x>167</x>
176     <y>378</y>
177    </hint>
178    <hint type="destinationlabel">
179     <x>444</x>
180     <y>314</y>
181    </hint>
182   </hints>
183  </connection>
184 </connections>
185 <slots>
186  <slot>slotSelectedChanged()</slot>
187  <slot>slotStartSelected()</slot>
188  <slot>slotDoubleClicked(QTreeWidgetItem*)</slot>
189  <slot>slotSearchChanged(QString)</slot>
190 </slots>
191</ui>
192