src/eric7/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.ui

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8312
800c432b34c8
equal deleted inserted replaced
9208:3fc8dfeb6ebe 9209:b99e7fd55fd3
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>GitReflogBrowserDialog</class>
4 <widget class="QWidget" name="GitReflogBrowserDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>800</width>
10 <height>600</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Git Reflog</string>
15 </property>
16 <layout class="QVBoxLayout" name="verticalLayout">
17 <item>
18 <widget class="QTreeWidget" name="logTree">
19 <property name="sizePolicy">
20 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
21 <horstretch>0</horstretch>
22 <verstretch>7</verstretch>
23 </sizepolicy>
24 </property>
25 <property name="alternatingRowColors">
26 <bool>true</bool>
27 </property>
28 <property name="selectionMode">
29 <enum>QAbstractItemView::ExtendedSelection</enum>
30 </property>
31 <property name="rootIsDecorated">
32 <bool>false</bool>
33 </property>
34 <property name="itemsExpandable">
35 <bool>false</bool>
36 </property>
37 <property name="allColumnsShowFocus">
38 <bool>true</bool>
39 </property>
40 <column>
41 <property name="text">
42 <string>Commit</string>
43 </property>
44 </column>
45 <column>
46 <property name="text">
47 <string>Selector</string>
48 </property>
49 </column>
50 <column>
51 <property name="text">
52 <string>Name</string>
53 </property>
54 </column>
55 <column>
56 <property name="text">
57 <string>Operation</string>
58 </property>
59 </column>
60 <column>
61 <property name="text">
62 <string>Subject</string>
63 </property>
64 </column>
65 </widget>
66 </item>
67 <item>
68 <layout class="QHBoxLayout" name="horizontalLayout">
69 <item>
70 <widget class="QPushButton" name="nextButton">
71 <property name="toolTip">
72 <string>Press to get the next bunch of log entries</string>
73 </property>
74 <property name="text">
75 <string>&amp;Next</string>
76 </property>
77 </widget>
78 </item>
79 <item>
80 <widget class="QSpinBox" name="limitSpinBox">
81 <property name="toolTip">
82 <string>Enter the limit of entries to fetch</string>
83 </property>
84 <property name="alignment">
85 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
86 </property>
87 <property name="minimum">
88 <number>1</number>
89 </property>
90 <property name="maximum">
91 <number>10000</number>
92 </property>
93 <property name="value">
94 <number>20</number>
95 </property>
96 </widget>
97 </item>
98 <item>
99 <spacer name="horizontalSpacer">
100 <property name="orientation">
101 <enum>Qt::Horizontal</enum>
102 </property>
103 <property name="sizeHint" stdset="0">
104 <size>
105 <width>40</width>
106 <height>20</height>
107 </size>
108 </property>
109 </spacer>
110 </item>
111 </layout>
112 </item>
113 <item>
114 <widget class="QGroupBox" name="errorGroup">
115 <property name="sizePolicy">
116 <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
117 <horstretch>0</horstretch>
118 <verstretch>1</verstretch>
119 </sizepolicy>
120 </property>
121 <property name="title">
122 <string>Errors</string>
123 </property>
124 <layout class="QVBoxLayout">
125 <item>
126 <widget class="QTextEdit" name="errors">
127 <property name="whatsThis">
128 <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>
129 </property>
130 <property name="readOnly">
131 <bool>true</bool>
132 </property>
133 <property name="acceptRichText">
134 <bool>false</bool>
135 </property>
136 </widget>
137 </item>
138 </layout>
139 </widget>
140 </item>
141 <item>
142 <widget class="QGroupBox" name="inputGroup">
143 <property name="title">
144 <string>Input</string>
145 </property>
146 <layout class="QGridLayout">
147 <item row="1" column="1">
148 <spacer>
149 <property name="orientation">
150 <enum>Qt::Horizontal</enum>
151 </property>
152 <property name="sizeType">
153 <enum>QSizePolicy::Expanding</enum>
154 </property>
155 <property name="sizeHint" stdset="0">
156 <size>
157 <width>327</width>
158 <height>29</height>
159 </size>
160 </property>
161 </spacer>
162 </item>
163 <item row="1" column="2">
164 <widget class="QPushButton" name="sendButton">
165 <property name="toolTip">
166 <string>Press to send the input to the git process</string>
167 </property>
168 <property name="text">
169 <string>&amp;Send</string>
170 </property>
171 <property name="shortcut">
172 <string>Alt+S</string>
173 </property>
174 </widget>
175 </item>
176 <item row="0" column="0" colspan="3">
177 <widget class="QLineEdit" name="input">
178 <property name="toolTip">
179 <string>Enter data to be sent to the git process</string>
180 </property>
181 </widget>
182 </item>
183 <item row="1" column="0">
184 <widget class="QCheckBox" name="passwordCheckBox">
185 <property name="toolTip">
186 <string>Select to switch the input field to password mode</string>
187 </property>
188 <property name="text">
189 <string>&amp;Password Mode</string>
190 </property>
191 <property name="shortcut">
192 <string>Alt+P</string>
193 </property>
194 </widget>
195 </item>
196 </layout>
197 </widget>
198 </item>
199 <item>
200 <widget class="QDialogButtonBox" name="buttonBox">
201 <property name="orientation">
202 <enum>Qt::Horizontal</enum>
203 </property>
204 <property name="standardButtons">
205 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close</set>
206 </property>
207 </widget>
208 </item>
209 </layout>
210 </widget>
211 <tabstops>
212 <tabstop>logTree</tabstop>
213 <tabstop>nextButton</tabstop>
214 <tabstop>limitSpinBox</tabstop>
215 <tabstop>errors</tabstop>
216 <tabstop>input</tabstop>
217 <tabstop>passwordCheckBox</tabstop>
218 <tabstop>sendButton</tabstop>
219 </tabstops>
220 <resources/>
221 <connections/>
222 </ui>

eric ide

mercurial