1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>SvnChangeListsDialog</class>
4 <widget class="QDialog" name="SvnChangeListsDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>519</width>
10    <height>494</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Subversion Change Lists</string>
15  </property>
16  <property name="sizeGripEnabled">
17   <bool>true</bool>
18  </property>
19  <layout class="QVBoxLayout" name="verticalLayout">
20   <item>
21    <widget class="QLabel" name="label">
22     <property name="text">
23      <string>Change Lists:</string>
24     </property>
25    </widget>
26   </item>
27   <item>
28    <widget class="QListWidget" name="changeLists">
29     <property name="sizePolicy">
30      <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
31       <horstretch>0</horstretch>
32       <verstretch>1</verstretch>
33      </sizepolicy>
34     </property>
35     <property name="whatsThis">
36      <string>&lt;b&gt;Change Lists&lt;/b&gt;
37&lt;p&gt;Select a change list here to see the associated files in the list below.&lt;/p&gt;</string>
38     </property>
39     <property name="alternatingRowColors">
40      <bool>true</bool>
41     </property>
42    </widget>
43   </item>
44   <item>
45    <widget class="QLabel" name="filesLabel">
46     <property name="text">
47      <string/>
48     </property>
49     <property name="wordWrap">
50      <bool>true</bool>
51     </property>
52    </widget>
53   </item>
54   <item>
55    <widget class="QListWidget" name="filesList">
56     <property name="sizePolicy">
57      <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
58       <horstretch>0</horstretch>
59       <verstretch>2</verstretch>
60      </sizepolicy>
61     </property>
62     <property name="whatsThis">
63      <string>&lt;b&gt;Files&lt;/b&gt;
64&lt;p&gt;This shows a list of files associated with the change list selected above.&lt;/p&gt;</string>
65     </property>
66     <property name="alternatingRowColors">
67      <bool>true</bool>
68     </property>
69    </widget>
70   </item>
71   <item>
72    <widget class="QGroupBox" name="errorGroup">
73     <property name="sizePolicy">
74      <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
75       <horstretch>0</horstretch>
76       <verstretch>1</verstretch>
77      </sizepolicy>
78     </property>
79     <property name="title">
80      <string>Errors</string>
81     </property>
82     <layout class="QVBoxLayout">
83      <item>
84       <widget class="QTextEdit" name="errors">
85        <property name="readOnly">
86         <bool>true</bool>
87        </property>
88        <property name="acceptRichText">
89         <bool>false</bool>
90        </property>
91       </widget>
92      </item>
93     </layout>
94    </widget>
95   </item>
96   <item>
97    <widget class="QGroupBox" name="inputGroup">
98     <property name="title">
99      <string>Input</string>
100     </property>
101     <layout class="QGridLayout" name="_2">
102      <item row="1" column="1">
103       <spacer>
104        <property name="orientation">
105         <enum>Qt::Horizontal</enum>
106        </property>
107        <property name="sizeType">
108         <enum>QSizePolicy::Expanding</enum>
109        </property>
110        <property name="sizeHint" stdset="0">
111         <size>
112          <width>327</width>
113          <height>29</height>
114         </size>
115        </property>
116       </spacer>
117      </item>
118      <item row="1" column="2">
119       <widget class="QPushButton" name="sendButton">
120        <property name="toolTip">
121         <string>Press to send the input to the subversion process</string>
122        </property>
123        <property name="text">
124         <string>&amp;Send</string>
125        </property>
126        <property name="shortcut">
127         <string>Alt+S</string>
128        </property>
129       </widget>
130      </item>
131      <item row="0" column="0" colspan="3">
132       <widget class="QLineEdit" name="input">
133        <property name="toolTip">
134         <string>Enter data to be sent to the subversion process</string>
135        </property>
136       </widget>
137      </item>
138      <item row="1" column="0">
139       <widget class="QCheckBox" name="passwordCheckBox">
140        <property name="toolTip">
141         <string>Select to switch the input field to password mode</string>
142        </property>
143        <property name="text">
144         <string>&amp;Password Mode</string>
145        </property>
146        <property name="shortcut">
147         <string>Alt+P</string>
148        </property>
149       </widget>
150      </item>
151     </layout>
152    </widget>
153   </item>
154   <item>
155    <widget class="QDialogButtonBox" name="buttonBox">
156     <property name="orientation">
157      <enum>Qt::Horizontal</enum>
158     </property>
159     <property name="standardButtons">
160      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close</set>
161     </property>
162    </widget>
163   </item>
164  </layout>
165 </widget>
166 <tabstops>
167  <tabstop>changeLists</tabstop>
168  <tabstop>filesList</tabstop>
169  <tabstop>errors</tabstop>
170  <tabstop>input</tabstop>
171  <tabstop>passwordCheckBox</tabstop>
172  <tabstop>sendButton</tabstop>
173  <tabstop>buttonBox</tabstop>
174 </tabstops>
175 <resources/>
176 <connections>
177  <connection>
178   <sender>buttonBox</sender>
179   <signal>accepted()</signal>
180   <receiver>SvnChangeListsDialog</receiver>
181   <slot>accept()</slot>
182   <hints>
183    <hint type="sourcelabel">
184     <x>248</x>
185     <y>254</y>
186    </hint>
187    <hint type="destinationlabel">
188     <x>157</x>
189     <y>274</y>
190    </hint>
191   </hints>
192  </connection>
193  <connection>
194   <sender>buttonBox</sender>
195   <signal>rejected()</signal>
196   <receiver>SvnChangeListsDialog</receiver>
197   <slot>reject()</slot>
198   <hints>
199    <hint type="sourcelabel">
200     <x>316</x>
201     <y>260</y>
202    </hint>
203    <hint type="destinationlabel">
204     <x>286</x>
205     <y>274</y>
206    </hint>
207   </hints>
208  </connection>
209 </connections>
210</ui>
211