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

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8428
2deec2f8a9ab
child 9413
80c06d472826
equal deleted inserted replaced
9208:3fc8dfeb6ebe 9209:b99e7fd55fd3
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>GitMergeDialog</class>
4 <widget class="QDialog" name="GitMergeDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>451</width>
10 <height>491</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Git Merge</string>
15 </property>
16 <property name="sizeGripEnabled">
17 <bool>true</bool>
18 </property>
19 <layout class="QVBoxLayout" name="verticalLayout_2">
20 <item>
21 <widget class="QGroupBox" name="groupBox">
22 <property name="title">
23 <string>Revision</string>
24 </property>
25 <layout class="QGridLayout" name="gridLayout">
26 <item row="0" column="0">
27 <widget class="QRadioButton" name="idButton">
28 <property name="toolTip">
29 <string>Select to specify a revision by changeset id</string>
30 </property>
31 <property name="text">
32 <string>Commit:</string>
33 </property>
34 </widget>
35 </item>
36 <item row="0" column="1">
37 <widget class="QLineEdit" name="idEdit">
38 <property name="enabled">
39 <bool>false</bool>
40 </property>
41 <property name="toolTip">
42 <string>Enter a commit id</string>
43 </property>
44 </widget>
45 </item>
46 <item row="1" column="0">
47 <widget class="QRadioButton" name="tagButton">
48 <property name="toolTip">
49 <string>Select to specify a revision by a tag</string>
50 </property>
51 <property name="text">
52 <string>Tag:</string>
53 </property>
54 </widget>
55 </item>
56 <item row="1" column="1">
57 <widget class="QComboBox" name="tagCombo">
58 <property name="enabled">
59 <bool>false</bool>
60 </property>
61 <property name="toolTip">
62 <string>Enter a tag name</string>
63 </property>
64 <property name="editable">
65 <bool>true</bool>
66 </property>
67 </widget>
68 </item>
69 <item row="2" column="0">
70 <widget class="QRadioButton" name="branchButton">
71 <property name="toolTip">
72 <string>Select to specify a revision by a local branch</string>
73 </property>
74 <property name="text">
75 <string>Local Branch:</string>
76 </property>
77 </widget>
78 </item>
79 <item row="2" column="1">
80 <widget class="QComboBox" name="branchCombo">
81 <property name="enabled">
82 <bool>false</bool>
83 </property>
84 <property name="toolTip">
85 <string>Enter a local branch name</string>
86 </property>
87 <property name="editable">
88 <bool>true</bool>
89 </property>
90 </widget>
91 </item>
92 <item row="3" column="0">
93 <widget class="QRadioButton" name="remoteBranchButton">
94 <property name="toolTip">
95 <string>Select to specify a revision by a remote branch</string>
96 </property>
97 <property name="text">
98 <string>Remote Branch:</string>
99 </property>
100 </widget>
101 </item>
102 <item row="3" column="1">
103 <widget class="QComboBox" name="remoteBranchCombo">
104 <property name="enabled">
105 <bool>false</bool>
106 </property>
107 <property name="toolTip">
108 <string>Enter a remote branch name</string>
109 </property>
110 <property name="editable">
111 <bool>true</bool>
112 </property>
113 </widget>
114 </item>
115 <item row="4" column="0" colspan="2">
116 <widget class="QRadioButton" name="noneButton">
117 <property name="toolTip">
118 <string>Select to not specify a specific revision</string>
119 </property>
120 <property name="text">
121 <string>No commit selected</string>
122 </property>
123 <property name="checked">
124 <bool>true</bool>
125 </property>
126 </widget>
127 </item>
128 </layout>
129 </widget>
130 </item>
131 <item>
132 <widget class="QGroupBox" name="commitGroupBox">
133 <property name="toolTip">
134 <string>Select to commit the merge</string>
135 </property>
136 <property name="title">
137 <string>Commit Merge</string>
138 </property>
139 <property name="checkable">
140 <bool>true</bool>
141 </property>
142 <layout class="QVBoxLayout" name="verticalLayout">
143 <item>
144 <widget class="QLabel" name="label">
145 <property name="text">
146 <string>Commit Message:</string>
147 </property>
148 </widget>
149 </item>
150 <item>
151 <widget class="EricSpellCheckedPlainTextEdit" name="commitMessageEdit">
152 <property name="toolTip">
153 <string>Enter a message for the merge commit</string>
154 </property>
155 <property name="tabChangesFocus">
156 <bool>true</bool>
157 </property>
158 </widget>
159 </item>
160 <item>
161 <widget class="QCheckBox" name="addLogCheckBox">
162 <property name="toolTip">
163 <string>Select to append the log summaries of merged commits</string>
164 </property>
165 <property name="text">
166 <string>Add Log Message Summary</string>
167 </property>
168 </widget>
169 </item>
170 </layout>
171 </widget>
172 </item>
173 <item>
174 <widget class="QCheckBox" name="diffstatCheckBox">
175 <property name="toolTip">
176 <string>Select to show diff statistics at the end of the merge</string>
177 </property>
178 <property name="text">
179 <string>Show diff statistics</string>
180 </property>
181 </widget>
182 </item>
183 <item>
184 <widget class="QDialogButtonBox" name="buttonBox">
185 <property name="orientation">
186 <enum>Qt::Horizontal</enum>
187 </property>
188 <property name="standardButtons">
189 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
190 </property>
191 </widget>
192 </item>
193 </layout>
194 </widget>
195 <customwidgets>
196 <customwidget>
197 <class>EricSpellCheckedPlainTextEdit</class>
198 <extends>QPlainTextEdit</extends>
199 <header>EricWidgets/EricSpellCheckedTextEdit.h</header>
200 </customwidget>
201 </customwidgets>
202 <tabstops>
203 <tabstop>idButton</tabstop>
204 <tabstop>idEdit</tabstop>
205 <tabstop>tagButton</tabstop>
206 <tabstop>tagCombo</tabstop>
207 <tabstop>branchButton</tabstop>
208 <tabstop>branchCombo</tabstop>
209 <tabstop>remoteBranchButton</tabstop>
210 <tabstop>remoteBranchCombo</tabstop>
211 <tabstop>noneButton</tabstop>
212 <tabstop>commitGroupBox</tabstop>
213 <tabstop>commitMessageEdit</tabstop>
214 <tabstop>addLogCheckBox</tabstop>
215 <tabstop>diffstatCheckBox</tabstop>
216 </tabstops>
217 <resources/>
218 <connections>
219 <connection>
220 <sender>buttonBox</sender>
221 <signal>accepted()</signal>
222 <receiver>GitMergeDialog</receiver>
223 <slot>accept()</slot>
224 <hints>
225 <hint type="sourcelabel">
226 <x>238</x>
227 <y>480</y>
228 </hint>
229 <hint type="destinationlabel">
230 <x>157</x>
231 <y>274</y>
232 </hint>
233 </hints>
234 </connection>
235 <connection>
236 <sender>buttonBox</sender>
237 <signal>rejected()</signal>
238 <receiver>GitMergeDialog</receiver>
239 <slot>reject()</slot>
240 <hints>
241 <hint type="sourcelabel">
242 <x>306</x>
243 <y>480</y>
244 </hint>
245 <hint type="destinationlabel">
246 <x>286</x>
247 <y>274</y>
248 </hint>
249 </hints>
250 </connection>
251 <connection>
252 <sender>idButton</sender>
253 <signal>toggled(bool)</signal>
254 <receiver>idEdit</receiver>
255 <slot>setEnabled(bool)</slot>
256 <hints>
257 <hint type="sourcelabel">
258 <x>80</x>
259 <y>58</y>
260 </hint>
261 <hint type="destinationlabel">
262 <x>285</x>
263 <y>63</y>
264 </hint>
265 </hints>
266 </connection>
267 <connection>
268 <sender>tagButton</sender>
269 <signal>toggled(bool)</signal>
270 <receiver>tagCombo</receiver>
271 <slot>setEnabled(bool)</slot>
272 <hints>
273 <hint type="sourcelabel">
274 <x>49</x>
275 <y>89</y>
276 </hint>
277 <hint type="destinationlabel">
278 <x>281</x>
279 <y>92</y>
280 </hint>
281 </hints>
282 </connection>
283 <connection>
284 <sender>branchButton</sender>
285 <signal>toggled(bool)</signal>
286 <receiver>branchCombo</receiver>
287 <slot>setEnabled(bool)</slot>
288 <hints>
289 <hint type="sourcelabel">
290 <x>101</x>
291 <y>120</y>
292 </hint>
293 <hint type="destinationlabel">
294 <x>278</x>
295 <y>121</y>
296 </hint>
297 </hints>
298 </connection>
299 <connection>
300 <sender>remoteBranchButton</sender>
301 <signal>toggled(bool)</signal>
302 <receiver>remoteBranchCombo</receiver>
303 <slot>setEnabled(bool)</slot>
304 <hints>
305 <hint type="sourcelabel">
306 <x>87</x>
307 <y>138</y>
308 </hint>
309 <hint type="destinationlabel">
310 <x>174</x>
311 <y>139</y>
312 </hint>
313 </hints>
314 </connection>
315 </connections>
316 </ui>

eric ide

mercurial