|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <ui version="4.0"> |
|
3 <class>GitPushDialog</class> |
|
4 <widget class="QDialog" name="GitPushDialog"> |
|
5 <property name="geometry"> |
|
6 <rect> |
|
7 <x>0</x> |
|
8 <y>0</y> |
|
9 <width>600</width> |
|
10 <height>400</height> |
|
11 </rect> |
|
12 </property> |
|
13 <property name="windowTitle"> |
|
14 <string>Git Push</string> |
|
15 </property> |
|
16 <property name="sizeGripEnabled"> |
|
17 <bool>true</bool> |
|
18 </property> |
|
19 <layout class="QVBoxLayout" name="verticalLayout_2"> |
|
20 <item> |
|
21 <layout class="QHBoxLayout" name="horizontalLayout"> |
|
22 <item> |
|
23 <widget class="QLabel" name="label"> |
|
24 <property name="text"> |
|
25 <string>Remote Repository:</string> |
|
26 </property> |
|
27 </widget> |
|
28 </item> |
|
29 <item> |
|
30 <widget class="QComboBox" name="remotesComboBox"> |
|
31 <property name="toolTip"> |
|
32 <string>Select the remote repository to push to</string> |
|
33 </property> |
|
34 </widget> |
|
35 </item> |
|
36 <item> |
|
37 <widget class="QLineEdit" name="remoteEdit"> |
|
38 <property name="readOnly"> |
|
39 <bool>true</bool> |
|
40 </property> |
|
41 </widget> |
|
42 </item> |
|
43 </layout> |
|
44 </item> |
|
45 <item> |
|
46 <widget class="QGroupBox" name="groupBox"> |
|
47 <property name="title"> |
|
48 <string>Branches to be pushed</string> |
|
49 </property> |
|
50 <layout class="QVBoxLayout" name="verticalLayout"> |
|
51 <item> |
|
52 <widget class="QTreeWidget" name="branchesTree"> |
|
53 <property name="alternatingRowColors"> |
|
54 <bool>true</bool> |
|
55 </property> |
|
56 <property name="rootIsDecorated"> |
|
57 <bool>false</bool> |
|
58 </property> |
|
59 <property name="itemsExpandable"> |
|
60 <bool>false</bool> |
|
61 </property> |
|
62 <property name="sortingEnabled"> |
|
63 <bool>true</bool> |
|
64 </property> |
|
65 <property name="expandsOnDoubleClick"> |
|
66 <bool>false</bool> |
|
67 </property> |
|
68 <column> |
|
69 <property name="text"> |
|
70 <string>Push?</string> |
|
71 </property> |
|
72 </column> |
|
73 <column> |
|
74 <property name="text"> |
|
75 <string>Local</string> |
|
76 </property> |
|
77 </column> |
|
78 <column> |
|
79 <property name="text"> |
|
80 <string>Remote</string> |
|
81 </property> |
|
82 </column> |
|
83 <column> |
|
84 <property name="text"> |
|
85 <string>Force?</string> |
|
86 </property> |
|
87 </column> |
|
88 </widget> |
|
89 </item> |
|
90 <item> |
|
91 <widget class="QCheckBox" name="selectAllCheckBox"> |
|
92 <property name="toolTip"> |
|
93 <string>Press to select all branches</string> |
|
94 </property> |
|
95 <property name="text"> |
|
96 <string>Select All</string> |
|
97 </property> |
|
98 <property name="tristate"> |
|
99 <bool>true</bool> |
|
100 </property> |
|
101 </widget> |
|
102 </item> |
|
103 <item> |
|
104 <widget class="QLabel" name="forceWarningLabel"> |
|
105 <property name="text"> |
|
106 <string><b>WARNING: The "Force" option can result in dangling branches in the remote repository.</b></string> |
|
107 </property> |
|
108 <property name="wordWrap"> |
|
109 <bool>true</bool> |
|
110 </property> |
|
111 </widget> |
|
112 </item> |
|
113 </layout> |
|
114 </widget> |
|
115 </item> |
|
116 <item> |
|
117 <widget class="QCheckBox" name="tagsCheckBox"> |
|
118 <property name="toolTip"> |
|
119 <string>Select to push tags as well</string> |
|
120 </property> |
|
121 <property name="text"> |
|
122 <string>Include tags</string> |
|
123 </property> |
|
124 </widget> |
|
125 </item> |
|
126 <item> |
|
127 <widget class="QCheckBox" name="trackingCheckBox"> |
|
128 <property name="toolTip"> |
|
129 <string>Select this to associate a remote tracking branch</string> |
|
130 </property> |
|
131 <property name="text"> |
|
132 <string>Set tracking information</string> |
|
133 </property> |
|
134 </widget> |
|
135 </item> |
|
136 <item> |
|
137 <widget class="QGroupBox" name="groupBox_2"> |
|
138 <property name="title"> |
|
139 <string>Push Submodules</string> |
|
140 </property> |
|
141 <layout class="QHBoxLayout" name="horizontalLayout_2"> |
|
142 <item> |
|
143 <widget class="QRadioButton" name="submodulesOnDemandButton"> |
|
144 <property name="toolTip"> |
|
145 <string>Select to push submodules automatically</string> |
|
146 </property> |
|
147 <property name="text"> |
|
148 <string>on-demand</string> |
|
149 </property> |
|
150 <property name="checked"> |
|
151 <bool>true</bool> |
|
152 </property> |
|
153 </widget> |
|
154 </item> |
|
155 <item> |
|
156 <widget class="QRadioButton" name="submodulesCheckButton"> |
|
157 <property name="toolTip"> |
|
158 <string>Select to check, if submodules were pushed already</string> |
|
159 </property> |
|
160 <property name="text"> |
|
161 <string>check</string> |
|
162 </property> |
|
163 </widget> |
|
164 </item> |
|
165 <item> |
|
166 <widget class="QRadioButton" name="submodulesOnlyButton"> |
|
167 <property name="toolTip"> |
|
168 <string>Select to push submodules only</string> |
|
169 </property> |
|
170 <property name="text"> |
|
171 <string>only</string> |
|
172 </property> |
|
173 </widget> |
|
174 </item> |
|
175 <item> |
|
176 <widget class="QRadioButton" name="submodulesNoButton"> |
|
177 <property name="toolTip"> |
|
178 <string>Select to not push any submodule</string> |
|
179 </property> |
|
180 <property name="text"> |
|
181 <string>no</string> |
|
182 </property> |
|
183 </widget> |
|
184 </item> |
|
185 </layout> |
|
186 </widget> |
|
187 </item> |
|
188 <item> |
|
189 <widget class="QDialogButtonBox" name="buttonBox"> |
|
190 <property name="orientation"> |
|
191 <enum>Qt::Horizontal</enum> |
|
192 </property> |
|
193 <property name="standardButtons"> |
|
194 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> |
|
195 </property> |
|
196 </widget> |
|
197 </item> |
|
198 </layout> |
|
199 </widget> |
|
200 <tabstops> |
|
201 <tabstop>remotesComboBox</tabstop> |
|
202 <tabstop>remoteEdit</tabstop> |
|
203 <tabstop>branchesTree</tabstop> |
|
204 <tabstop>selectAllCheckBox</tabstop> |
|
205 <tabstop>tagsCheckBox</tabstop> |
|
206 <tabstop>trackingCheckBox</tabstop> |
|
207 </tabstops> |
|
208 <resources/> |
|
209 <connections> |
|
210 <connection> |
|
211 <sender>buttonBox</sender> |
|
212 <signal>accepted()</signal> |
|
213 <receiver>GitPushDialog</receiver> |
|
214 <slot>accept()</slot> |
|
215 <hints> |
|
216 <hint type="sourcelabel"> |
|
217 <x>248</x> |
|
218 <y>254</y> |
|
219 </hint> |
|
220 <hint type="destinationlabel"> |
|
221 <x>157</x> |
|
222 <y>274</y> |
|
223 </hint> |
|
224 </hints> |
|
225 </connection> |
|
226 <connection> |
|
227 <sender>buttonBox</sender> |
|
228 <signal>rejected()</signal> |
|
229 <receiver>GitPushDialog</receiver> |
|
230 <slot>reject()</slot> |
|
231 <hints> |
|
232 <hint type="sourcelabel"> |
|
233 <x>316</x> |
|
234 <y>260</y> |
|
235 </hint> |
|
236 <hint type="destinationlabel"> |
|
237 <x>286</x> |
|
238 <y>274</y> |
|
239 </hint> |
|
240 </hints> |
|
241 </connection> |
|
242 </connections> |
|
243 </ui> |