Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.ui

changeset 6020
baf6da1ae288
child 6325
ebdcf9a36f42
equal deleted inserted replaced
6019:58ecdaf0b789 6020:baf6da1ae288
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>GitLogBrowserDialog</class>
4 <widget class="QWidget" name="GitLogBrowserDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>1000</width>
10 <height>800</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Git Log</string>
15 </property>
16 <layout class="QVBoxLayout" name="verticalLayout_3">
17 <item>
18 <layout class="QHBoxLayout" name="horizontalLayout_2">
19 <item>
20 <widget class="QToolButton" name="actionsButton">
21 <property name="toolTip">
22 <string>Select action from menu</string>
23 </property>
24 <property name="popupMode">
25 <enum>QToolButton::InstantPopup</enum>
26 </property>
27 </widget>
28 </item>
29 <item>
30 <widget class="Line" name="line_4">
31 <property name="frameShadow">
32 <enum>QFrame::Raised</enum>
33 </property>
34 <property name="lineWidth">
35 <number>2</number>
36 </property>
37 <property name="orientation">
38 <enum>Qt::Vertical</enum>
39 </property>
40 </widget>
41 </item>
42 <item>
43 <widget class="QComboBox" name="modeComboBox">
44 <property name="toolTip">
45 <string>Select the mode (find or filter)</string>
46 </property>
47 </widget>
48 </item>
49 <item>
50 <widget class="Line" name="line_3">
51 <property name="frameShadow">
52 <enum>QFrame::Raised</enum>
53 </property>
54 <property name="lineWidth">
55 <number>2</number>
56 </property>
57 <property name="orientation">
58 <enum>Qt::Vertical</enum>
59 </property>
60 </widget>
61 </item>
62 <item>
63 <widget class="QLabel" name="label">
64 <property name="text">
65 <string>From:</string>
66 </property>
67 </widget>
68 </item>
69 <item>
70 <widget class="QDateEdit" name="fromDate">
71 <property name="toolTip">
72 <string>Enter the start date</string>
73 </property>
74 <property name="calendarPopup">
75 <bool>true</bool>
76 </property>
77 </widget>
78 </item>
79 <item>
80 <widget class="QLabel" name="label_2">
81 <property name="text">
82 <string>To:</string>
83 </property>
84 </widget>
85 </item>
86 <item>
87 <widget class="QDateEdit" name="toDate">
88 <property name="toolTip">
89 <string>Enter the end date</string>
90 </property>
91 <property name="calendarPopup">
92 <bool>true</bool>
93 </property>
94 </widget>
95 </item>
96 <item>
97 <widget class="Line" name="line_2">
98 <property name="frameShadow">
99 <enum>QFrame::Raised</enum>
100 </property>
101 <property name="lineWidth">
102 <number>2</number>
103 </property>
104 <property name="orientation">
105 <enum>Qt::Vertical</enum>
106 </property>
107 </widget>
108 </item>
109 <item>
110 <widget class="QComboBox" name="fieldCombo">
111 <property name="toolTip">
112 <string>Select the field to filter on</string>
113 </property>
114 </widget>
115 </item>
116 <item>
117 <widget class="E5ClearableLineEdit" name="rxEdit">
118 <property name="toolTip">
119 <string>Enter the regular expression to filter on or search for</string>
120 </property>
121 </widget>
122 </item>
123 <item>
124 <widget class="QToolButton" name="findPrevButton">
125 <property name="toolTip">
126 <string>Press to find the previous occurrence</string>
127 </property>
128 </widget>
129 </item>
130 <item>
131 <widget class="QToolButton" name="findNextButton">
132 <property name="toolTip">
133 <string>Press to find the next occurrence</string>
134 </property>
135 </widget>
136 </item>
137 </layout>
138 </item>
139 <item>
140 <widget class="QSplitter" name="mainSplitter">
141 <property name="orientation">
142 <enum>Qt::Vertical</enum>
143 </property>
144 <widget class="QWidget" name="layoutWidget">
145 <layout class="QVBoxLayout" name="verticalLayout">
146 <item>
147 <widget class="QTreeWidget" name="logTree">
148 <property name="sizePolicy">
149 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
150 <horstretch>0</horstretch>
151 <verstretch>1</verstretch>
152 </sizepolicy>
153 </property>
154 <property name="contextMenuPolicy">
155 <enum>Qt::CustomContextMenu</enum>
156 </property>
157 <property name="alternatingRowColors">
158 <bool>true</bool>
159 </property>
160 <property name="selectionMode">
161 <enum>QAbstractItemView::ExtendedSelection</enum>
162 </property>
163 <property name="rootIsDecorated">
164 <bool>false</bool>
165 </property>
166 <property name="itemsExpandable">
167 <bool>false</bool>
168 </property>
169 <property name="allColumnsShowFocus">
170 <bool>true</bool>
171 </property>
172 <column>
173 <property name="text">
174 <string>Graph</string>
175 </property>
176 </column>
177 <column>
178 <property name="text">
179 <string>Commit ID</string>
180 </property>
181 </column>
182 <column>
183 <property name="text">
184 <string>Author</string>
185 </property>
186 </column>
187 <column>
188 <property name="text">
189 <string>Date</string>
190 </property>
191 </column>
192 <column>
193 <property name="text">
194 <string>Committer</string>
195 </property>
196 </column>
197 <column>
198 <property name="text">
199 <string>Commit Date</string>
200 </property>
201 </column>
202 <column>
203 <property name="text">
204 <string>Subject</string>
205 </property>
206 </column>
207 <column>
208 <property name="text">
209 <string>Branches</string>
210 </property>
211 </column>
212 <column>
213 <property name="text">
214 <string>Tags</string>
215 </property>
216 </column>
217 </widget>
218 </item>
219 <item>
220 <layout class="QHBoxLayout" name="horizontalLayout">
221 <item>
222 <widget class="QToolButton" name="upButton">
223 <property name="toolTip">
224 <string>Press to move up in the log list</string>
225 </property>
226 <property name="autoRepeat">
227 <bool>true</bool>
228 </property>
229 </widget>
230 </item>
231 <item>
232 <widget class="QToolButton" name="downButton">
233 <property name="toolTip">
234 <string>Press to move down in the log list</string>
235 </property>
236 <property name="autoRepeat">
237 <bool>true</bool>
238 </property>
239 </widget>
240 </item>
241 <item>
242 <widget class="Line" name="line_5">
243 <property name="frameShadow">
244 <enum>QFrame::Raised</enum>
245 </property>
246 <property name="lineWidth">
247 <number>2</number>
248 </property>
249 <property name="orientation">
250 <enum>Qt::Vertical</enum>
251 </property>
252 </widget>
253 </item>
254 <item>
255 <widget class="QPushButton" name="nextButton">
256 <property name="toolTip">
257 <string>Press to get the next bunch of log entries</string>
258 </property>
259 <property name="text">
260 <string>&amp;Next</string>
261 </property>
262 </widget>
263 </item>
264 <item>
265 <widget class="QSpinBox" name="limitSpinBox">
266 <property name="toolTip">
267 <string>Enter the limit of entries to fetch</string>
268 </property>
269 <property name="alignment">
270 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
271 </property>
272 <property name="minimum">
273 <number>1</number>
274 </property>
275 <property name="maximum">
276 <number>10000</number>
277 </property>
278 <property name="value">
279 <number>20</number>
280 </property>
281 </widget>
282 </item>
283 <item>
284 <widget class="QCheckBox" name="stopCheckBox">
285 <property name="toolTip">
286 <string>Select to stop listing log messages at a copy or move</string>
287 </property>
288 <property name="text">
289 <string>Stop on Copy/Move</string>
290 </property>
291 </widget>
292 </item>
293 <item>
294 <spacer name="horizontalSpacer">
295 <property name="orientation">
296 <enum>Qt::Horizontal</enum>
297 </property>
298 <property name="sizeHint" stdset="0">
299 <size>
300 <width>40</width>
301 <height>20</height>
302 </size>
303 </property>
304 </spacer>
305 </item>
306 <item>
307 <widget class="QLabel" name="sbsSelectLabel">
308 <property name="focusPolicy">
309 <enum>Qt::StrongFocus</enum>
310 </property>
311 <property name="text">
312 <string/>
313 </property>
314 <property name="textInteractionFlags">
315 <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
316 </property>
317 </widget>
318 </item>
319 </layout>
320 </item>
321 </layout>
322 </widget>
323 <widget class="QSplitter" name="detailsSplitter">
324 <property name="sizePolicy">
325 <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
326 <horstretch>0</horstretch>
327 <verstretch>2</verstretch>
328 </sizepolicy>
329 </property>
330 <property name="orientation">
331 <enum>Qt::Horizontal</enum>
332 </property>
333 <widget class="QTextBrowser" name="detailsEdit">
334 <property name="sizePolicy">
335 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
336 <horstretch>3</horstretch>
337 <verstretch>1</verstretch>
338 </sizepolicy>
339 </property>
340 <property name="readOnly">
341 <bool>true</bool>
342 </property>
343 <property name="openLinks">
344 <bool>false</bool>
345 </property>
346 </widget>
347 <widget class="QSplitter" name="diffSplitter">
348 <property name="sizePolicy">
349 <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
350 <horstretch>7</horstretch>
351 <verstretch>0</verstretch>
352 </sizepolicy>
353 </property>
354 <property name="orientation">
355 <enum>Qt::Vertical</enum>
356 </property>
357 <widget class="QTreeWidget" name="filesTree">
358 <property name="sizePolicy">
359 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
360 <horstretch>7</horstretch>
361 <verstretch>1</verstretch>
362 </sizepolicy>
363 </property>
364 <property name="alternatingRowColors">
365 <bool>true</bool>
366 </property>
367 <property name="rootIsDecorated">
368 <bool>false</bool>
369 </property>
370 <property name="itemsExpandable">
371 <bool>false</bool>
372 </property>
373 <property name="allColumnsShowFocus">
374 <bool>true</bool>
375 </property>
376 <column>
377 <property name="text">
378 <string>Action</string>
379 </property>
380 </column>
381 <column>
382 <property name="text">
383 <string>Path</string>
384 </property>
385 </column>
386 <column>
387 <property name="text">
388 <string>Additions</string>
389 </property>
390 </column>
391 <column>
392 <property name="text">
393 <string>Deletions</string>
394 </property>
395 </column>
396 <column>
397 <property name="text">
398 <string>Copy from</string>
399 </property>
400 </column>
401 </widget>
402 <widget class="QWidget" name="layoutWidget_2">
403 <layout class="QVBoxLayout" name="verticalLayout_2">
404 <item>
405 <layout class="QHBoxLayout" name="horizontalLayout_3">
406 <item>
407 <widget class="QLabel" name="diffLabel">
408 <property name="text">
409 <string>Differences</string>
410 </property>
411 </widget>
412 </item>
413 <item>
414 <spacer name="horizontalSpacer_3">
415 <property name="orientation">
416 <enum>Qt::Horizontal</enum>
417 </property>
418 <property name="sizeHint" stdset="0">
419 <size>
420 <width>40</width>
421 <height>20</height>
422 </size>
423 </property>
424 </spacer>
425 </item>
426 <item>
427 <widget class="QLabel" name="diffSelectLabel">
428 <property name="focusPolicy">
429 <enum>Qt::StrongFocus</enum>
430 </property>
431 <property name="text">
432 <string/>
433 </property>
434 <property name="textInteractionFlags">
435 <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
436 </property>
437 </widget>
438 </item>
439 <item>
440 <widget class="QLabel" name="saveLabel">
441 <property name="focusPolicy">
442 <enum>Qt::StrongFocus</enum>
443 </property>
444 <property name="text">
445 <string>&lt;a href=&quot;save:me&quot;&gt;Save&lt;/a&gt;</string>
446 </property>
447 <property name="textInteractionFlags">
448 <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
449 </property>
450 </widget>
451 </item>
452 </layout>
453 </item>
454 <item>
455 <widget class="QTextEdit" name="diffEdit">
456 <property name="sizePolicy">
457 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
458 <horstretch>7</horstretch>
459 <verstretch>2</verstretch>
460 </sizepolicy>
461 </property>
462 <property name="tabChangesFocus">
463 <bool>true</bool>
464 </property>
465 <property name="lineWrapMode">
466 <enum>QTextEdit::NoWrap</enum>
467 </property>
468 <property name="readOnly">
469 <bool>true</bool>
470 </property>
471 <property name="acceptRichText">
472 <bool>false</bool>
473 </property>
474 </widget>
475 </item>
476 </layout>
477 </widget>
478 </widget>
479 </widget>
480 </widget>
481 </item>
482 <item>
483 <widget class="QGroupBox" name="errorGroup">
484 <property name="sizePolicy">
485 <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
486 <horstretch>0</horstretch>
487 <verstretch>1</verstretch>
488 </sizepolicy>
489 </property>
490 <property name="title">
491 <string>Errors</string>
492 </property>
493 <layout class="QVBoxLayout">
494 <item>
495 <widget class="QTextEdit" name="errors">
496 <property name="whatsThis">
497 <string>&lt;b&gt;Git log errors&lt;/b&gt;&lt;p&gt;This shows possible error messages of the git log command.&lt;/p&gt;</string>
498 </property>
499 <property name="readOnly">
500 <bool>true</bool>
501 </property>
502 <property name="acceptRichText">
503 <bool>false</bool>
504 </property>
505 </widget>
506 </item>
507 </layout>
508 </widget>
509 </item>
510 <item>
511 <widget class="QGroupBox" name="inputGroup">
512 <property name="title">
513 <string>Input</string>
514 </property>
515 <layout class="QGridLayout">
516 <item row="1" column="1">
517 <spacer>
518 <property name="orientation">
519 <enum>Qt::Horizontal</enum>
520 </property>
521 <property name="sizeType">
522 <enum>QSizePolicy::Expanding</enum>
523 </property>
524 <property name="sizeHint" stdset="0">
525 <size>
526 <width>327</width>
527 <height>29</height>
528 </size>
529 </property>
530 </spacer>
531 </item>
532 <item row="1" column="2">
533 <widget class="QPushButton" name="sendButton">
534 <property name="toolTip">
535 <string>Press to send the input to the git process</string>
536 </property>
537 <property name="text">
538 <string>&amp;Send</string>
539 </property>
540 <property name="shortcut">
541 <string>Alt+S</string>
542 </property>
543 </widget>
544 </item>
545 <item row="0" column="0" colspan="3">
546 <widget class="QLineEdit" name="input">
547 <property name="toolTip">
548 <string>Enter data to be sent to the git process</string>
549 </property>
550 </widget>
551 </item>
552 <item row="1" column="0">
553 <widget class="QCheckBox" name="passwordCheckBox">
554 <property name="toolTip">
555 <string>Select to switch the input field to password mode</string>
556 </property>
557 <property name="text">
558 <string>&amp;Password Mode</string>
559 </property>
560 <property name="shortcut">
561 <string>Alt+P</string>
562 </property>
563 </widget>
564 </item>
565 </layout>
566 </widget>
567 </item>
568 <item>
569 <widget class="QDialogButtonBox" name="buttonBox">
570 <property name="orientation">
571 <enum>Qt::Horizontal</enum>
572 </property>
573 <property name="standardButtons">
574 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close</set>
575 </property>
576 </widget>
577 </item>
578 </layout>
579 </widget>
580 <customwidgets>
581 <customwidget>
582 <class>E5ClearableLineEdit</class>
583 <extends>QLineEdit</extends>
584 <header>E5Gui/E5LineEdit.h</header>
585 </customwidget>
586 </customwidgets>
587 <tabstops>
588 <tabstop>actionsButton</tabstop>
589 <tabstop>modeComboBox</tabstop>
590 <tabstop>fromDate</tabstop>
591 <tabstop>toDate</tabstop>
592 <tabstop>fieldCombo</tabstop>
593 <tabstop>rxEdit</tabstop>
594 <tabstop>findPrevButton</tabstop>
595 <tabstop>findNextButton</tabstop>
596 <tabstop>logTree</tabstop>
597 <tabstop>upButton</tabstop>
598 <tabstop>downButton</tabstop>
599 <tabstop>nextButton</tabstop>
600 <tabstop>limitSpinBox</tabstop>
601 <tabstop>stopCheckBox</tabstop>
602 <tabstop>sbsSelectLabel</tabstop>
603 <tabstop>detailsEdit</tabstop>
604 <tabstop>filesTree</tabstop>
605 <tabstop>diffSelectLabel</tabstop>
606 <tabstop>saveLabel</tabstop>
607 <tabstop>diffEdit</tabstop>
608 <tabstop>errors</tabstop>
609 <tabstop>input</tabstop>
610 <tabstop>passwordCheckBox</tabstop>
611 <tabstop>sendButton</tabstop>
612 </tabstops>
613 <resources/>
614 <connections/>
615 </ui>

eric ide

mercurial