src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.ui

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8350
74a3b2a6a944
equal deleted inserted replaced
9208:3fc8dfeb6ebe 9209:b99e7fd55fd3
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>SvnLogBrowserDialog</class>
4 <widget class="QWidget" name="SvnLogBrowserDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>700</width>
10 <height>600</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Subversion Log</string>
15 </property>
16 <layout class="QVBoxLayout" name="verticalLayout">
17 <item>
18 <layout class="QHBoxLayout">
19 <item>
20 <widget class="QLabel" name="label">
21 <property name="text">
22 <string>From:</string>
23 </property>
24 </widget>
25 </item>
26 <item>
27 <widget class="QDateEdit" name="fromDate">
28 <property name="toolTip">
29 <string>Enter the start date</string>
30 </property>
31 <property name="calendarPopup">
32 <bool>true</bool>
33 </property>
34 </widget>
35 </item>
36 <item>
37 <widget class="QLabel" name="label_2">
38 <property name="text">
39 <string>To:</string>
40 </property>
41 </widget>
42 </item>
43 <item>
44 <widget class="QDateEdit" name="toDate">
45 <property name="toolTip">
46 <string>Enter the end date</string>
47 </property>
48 <property name="calendarPopup">
49 <bool>true</bool>
50 </property>
51 </widget>
52 </item>
53 <item>
54 <widget class="QComboBox" name="fieldCombo">
55 <property name="toolTip">
56 <string>Select the field to filter on</string>
57 </property>
58 <item>
59 <property name="text">
60 <string>Revision</string>
61 </property>
62 </item>
63 <item>
64 <property name="text">
65 <string>Author</string>
66 </property>
67 </item>
68 <item>
69 <property name="text">
70 <string>Message</string>
71 </property>
72 </item>
73 </widget>
74 </item>
75 <item>
76 <widget class="QLineEdit" name="rxEdit">
77 <property name="toolTip">
78 <string>Enter the regular expression to filter on</string>
79 </property>
80 <property name="clearButtonEnabled">
81 <bool>true</bool>
82 </property>
83 </widget>
84 </item>
85 </layout>
86 </item>
87 <item>
88 <widget class="QTreeWidget" name="logTree">
89 <property name="sizePolicy">
90 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
91 <horstretch>0</horstretch>
92 <verstretch>5</verstretch>
93 </sizepolicy>
94 </property>
95 <property name="alternatingRowColors">
96 <bool>true</bool>
97 </property>
98 <property name="selectionMode">
99 <enum>QAbstractItemView::ExtendedSelection</enum>
100 </property>
101 <property name="rootIsDecorated">
102 <bool>false</bool>
103 </property>
104 <property name="itemsExpandable">
105 <bool>false</bool>
106 </property>
107 <property name="sortingEnabled">
108 <bool>true</bool>
109 </property>
110 <property name="allColumnsShowFocus">
111 <bool>true</bool>
112 </property>
113 <column>
114 <property name="text">
115 <string>Revision</string>
116 </property>
117 </column>
118 <column>
119 <property name="text">
120 <string>Author</string>
121 </property>
122 </column>
123 <column>
124 <property name="text">
125 <string>Date</string>
126 </property>
127 </column>
128 <column>
129 <property name="text">
130 <string>Message</string>
131 </property>
132 </column>
133 </widget>
134 </item>
135 <item>
136 <widget class="QTextEdit" name="messageEdit">
137 <property name="sizePolicy">
138 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
139 <horstretch>0</horstretch>
140 <verstretch>2</verstretch>
141 </sizepolicy>
142 </property>
143 <property name="readOnly">
144 <bool>true</bool>
145 </property>
146 </widget>
147 </item>
148 <item>
149 <widget class="QTreeWidget" name="filesTree">
150 <property name="sizePolicy">
151 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
152 <horstretch>0</horstretch>
153 <verstretch>3</verstretch>
154 </sizepolicy>
155 </property>
156 <property name="alternatingRowColors">
157 <bool>true</bool>
158 </property>
159 <property name="rootIsDecorated">
160 <bool>false</bool>
161 </property>
162 <property name="itemsExpandable">
163 <bool>false</bool>
164 </property>
165 <property name="sortingEnabled">
166 <bool>true</bool>
167 </property>
168 <property name="allColumnsShowFocus">
169 <bool>true</bool>
170 </property>
171 <column>
172 <property name="text">
173 <string>Action</string>
174 </property>
175 </column>
176 <column>
177 <property name="text">
178 <string>Path</string>
179 </property>
180 </column>
181 <column>
182 <property name="text">
183 <string>Copy from</string>
184 </property>
185 </column>
186 <column>
187 <property name="text">
188 <string>Copy from Rev</string>
189 </property>
190 </column>
191 </widget>
192 </item>
193 <item>
194 <layout class="QGridLayout" name="gridLayout">
195 <item row="0" column="0">
196 <widget class="QPushButton" name="nextButton">
197 <property name="toolTip">
198 <string>Press to get the next bunch of log entries</string>
199 </property>
200 <property name="text">
201 <string>&amp;Next</string>
202 </property>
203 </widget>
204 </item>
205 <item row="0" column="1">
206 <widget class="QSpinBox" name="limitSpinBox">
207 <property name="toolTip">
208 <string>Enter the limit of entries to fetch</string>
209 </property>
210 <property name="alignment">
211 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
212 </property>
213 <property name="minimum">
214 <number>1</number>
215 </property>
216 <property name="maximum">
217 <number>10000</number>
218 </property>
219 <property name="value">
220 <number>20</number>
221 </property>
222 </widget>
223 </item>
224 <item row="0" column="2">
225 <widget class="QCheckBox" name="stopCheckBox">
226 <property name="toolTip">
227 <string>Select to stop listing log messages at a copy or move</string>
228 </property>
229 <property name="text">
230 <string>Stop on Copy/Move</string>
231 </property>
232 </widget>
233 </item>
234 <item row="0" column="3" rowspan="2">
235 <widget class="Line" name="line">
236 <property name="orientation">
237 <enum>Qt::Vertical</enum>
238 </property>
239 </widget>
240 </item>
241 <item row="0" column="4">
242 <layout class="QHBoxLayout" name="horizontalLayout">
243 <property name="spacing">
244 <number>0</number>
245 </property>
246 <item>
247 <widget class="QToolButton" name="upButton">
248 <property name="toolTip">
249 <string>Press to move up in the log list</string>
250 </property>
251 <property name="autoRepeat">
252 <bool>true</bool>
253 </property>
254 </widget>
255 </item>
256 <item>
257 <widget class="QToolButton" name="downButton">
258 <property name="toolTip">
259 <string>Press to move down in the log list</string>
260 </property>
261 <property name="autoRepeat">
262 <bool>true</bool>
263 </property>
264 </widget>
265 </item>
266 </layout>
267 </item>
268 <item row="0" column="5">
269 <widget class="QPushButton" name="diffPreviousButton">
270 <property name="toolTip">
271 <string>Press to generate a diff to the previous revision</string>
272 </property>
273 <property name="text">
274 <string>&amp;Diff to Previous</string>
275 </property>
276 </widget>
277 </item>
278 <item row="0" column="6">
279 <widget class="QPushButton" name="diffRevisionsButton">
280 <property name="toolTip">
281 <string>Press to compare two revisions</string>
282 </property>
283 <property name="text">
284 <string>&amp;Compare Revisions</string>
285 </property>
286 </widget>
287 </item>
288 <item row="0" column="7">
289 <spacer>
290 <property name="orientation">
291 <enum>Qt::Horizontal</enum>
292 </property>
293 <property name="sizeHint" stdset="0">
294 <size>
295 <width>38</width>
296 <height>29</height>
297 </size>
298 </property>
299 </spacer>
300 </item>
301 <item row="1" column="4" colspan="3">
302 <widget class="QCheckBox" name="sbsCheckBox">
303 <property name="toolTip">
304 <string>Select to show differences side-by-side</string>
305 </property>
306 <property name="text">
307 <string>Show differences side-by-side</string>
308 </property>
309 </widget>
310 </item>
311 </layout>
312 </item>
313 <item>
314 <widget class="QDialogButtonBox" name="buttonBox">
315 <property name="orientation">
316 <enum>Qt::Horizontal</enum>
317 </property>
318 <property name="standardButtons">
319 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close</set>
320 </property>
321 </widget>
322 </item>
323 </layout>
324 </widget>
325 <tabstops>
326 <tabstop>fromDate</tabstop>
327 <tabstop>toDate</tabstop>
328 <tabstop>fieldCombo</tabstop>
329 <tabstop>rxEdit</tabstop>
330 <tabstop>logTree</tabstop>
331 <tabstop>messageEdit</tabstop>
332 <tabstop>filesTree</tabstop>
333 <tabstop>nextButton</tabstop>
334 <tabstop>limitSpinBox</tabstop>
335 <tabstop>stopCheckBox</tabstop>
336 <tabstop>upButton</tabstop>
337 <tabstop>downButton</tabstop>
338 <tabstop>diffPreviousButton</tabstop>
339 <tabstop>diffRevisionsButton</tabstop>
340 <tabstop>sbsCheckBox</tabstop>
341 </tabstops>
342 <resources/>
343 <connections/>
344 </ui>

eric ide

mercurial