Plugins/VcsPlugins/vcsGit/GitSubmodulesUpdateOptionsDialog.ui

changeset 6020
baf6da1ae288
equal deleted inserted replaced
6019:58ecdaf0b789 6020:baf6da1ae288
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>GitSubmodulesUpdateOptionsDialog</class>
4 <widget class="QDialog" name="GitSubmodulesUpdateOptionsDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>400</width>
10 <height>458</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Submodule Update Options</string>
15 </property>
16 <property name="sizeGripEnabled">
17 <bool>true</bool>
18 </property>
19 <layout class="QVBoxLayout" name="verticalLayout">
20 <item>
21 <widget class="QGroupBox" name="groupBox">
22 <property name="title">
23 <string>Update Procedure</string>
24 </property>
25 <layout class="QHBoxLayout" name="horizontalLayout">
26 <item>
27 <widget class="QRadioButton" name="checkoutButton">
28 <property name="toolTip">
29 <string>Select to perform a 'checkout' procedure</string>
30 </property>
31 <property name="text">
32 <string>checkout</string>
33 </property>
34 <property name="checked">
35 <bool>true</bool>
36 </property>
37 </widget>
38 </item>
39 <item>
40 <widget class="QRadioButton" name="rebaseButton">
41 <property name="toolTip">
42 <string>Select to perform a 'rebase' procedure</string>
43 </property>
44 <property name="text">
45 <string>rebase</string>
46 </property>
47 </widget>
48 </item>
49 <item>
50 <widget class="QRadioButton" name="mergeButton">
51 <property name="toolTip">
52 <string>Select to perform a 'merge' procedure</string>
53 </property>
54 <property name="text">
55 <string>merge</string>
56 </property>
57 </widget>
58 </item>
59 </layout>
60 </widget>
61 </item>
62 <item>
63 <widget class="QCheckBox" name="initCheckBox">
64 <property name="toolTip">
65 <string>Select to initialize submodules before the update</string>
66 </property>
67 <property name="text">
68 <string>Initialize before Update</string>
69 </property>
70 </widget>
71 </item>
72 <item>
73 <widget class="QCheckBox" name="remoteCheckBox">
74 <property name="toolTip">
75 <string>Fetch remote changes before updating</string>
76 </property>
77 <property name="text">
78 <string>Synchronize with remote</string>
79 </property>
80 </widget>
81 </item>
82 <item>
83 <widget class="QCheckBox" name="nofetchCheckBox">
84 <property name="enabled">
85 <bool>false</bool>
86 </property>
87 <property name="toolTip">
88 <string>Select to not fetch the remote</string>
89 </property>
90 <property name="text">
91 <string>Don't Fetch</string>
92 </property>
93 </widget>
94 </item>
95 <item>
96 <widget class="QLabel" name="label">
97 <property name="text">
98 <string>Selected Submodules:</string>
99 </property>
100 </widget>
101 </item>
102 <item>
103 <widget class="QListWidget" name="submodulesList">
104 <property name="toolTip">
105 <string>Select the submodules to be updated</string>
106 </property>
107 <property name="alternatingRowColors">
108 <bool>true</bool>
109 </property>
110 <property name="selectionMode">
111 <enum>QAbstractItemView::ExtendedSelection</enum>
112 </property>
113 </widget>
114 </item>
115 <item>
116 <widget class="QCheckBox" name="forceCheckBox">
117 <property name="toolTip">
118 <string>Select to enforce the update</string>
119 </property>
120 <property name="text">
121 <string>Enforce Operation</string>
122 </property>
123 </widget>
124 </item>
125 <item>
126 <widget class="QDialogButtonBox" name="buttonBox">
127 <property name="orientation">
128 <enum>Qt::Horizontal</enum>
129 </property>
130 <property name="standardButtons">
131 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
132 </property>
133 </widget>
134 </item>
135 </layout>
136 </widget>
137 <tabstops>
138 <tabstop>checkoutButton</tabstop>
139 <tabstop>rebaseButton</tabstop>
140 <tabstop>mergeButton</tabstop>
141 <tabstop>initCheckBox</tabstop>
142 <tabstop>remoteCheckBox</tabstop>
143 <tabstop>nofetchCheckBox</tabstop>
144 <tabstop>submodulesList</tabstop>
145 <tabstop>forceCheckBox</tabstop>
146 </tabstops>
147 <resources/>
148 <connections>
149 <connection>
150 <sender>buttonBox</sender>
151 <signal>accepted()</signal>
152 <receiver>GitSubmodulesUpdateOptionsDialog</receiver>
153 <slot>accept()</slot>
154 <hints>
155 <hint type="sourcelabel">
156 <x>227</x>
157 <y>437</y>
158 </hint>
159 <hint type="destinationlabel">
160 <x>157</x>
161 <y>274</y>
162 </hint>
163 </hints>
164 </connection>
165 <connection>
166 <sender>buttonBox</sender>
167 <signal>rejected()</signal>
168 <receiver>GitSubmodulesUpdateOptionsDialog</receiver>
169 <slot>reject()</slot>
170 <hints>
171 <hint type="sourcelabel">
172 <x>295</x>
173 <y>443</y>
174 </hint>
175 <hint type="destinationlabel">
176 <x>286</x>
177 <y>274</y>
178 </hint>
179 </hints>
180 </connection>
181 <connection>
182 <sender>remoteCheckBox</sender>
183 <signal>toggled(bool)</signal>
184 <receiver>nofetchCheckBox</receiver>
185 <slot>setEnabled(bool)</slot>
186 <hints>
187 <hint type="sourcelabel">
188 <x>37</x>
189 <y>124</y>
190 </hint>
191 <hint type="destinationlabel">
192 <x>37</x>
193 <y>157</y>
194 </hint>
195 </hints>
196 </connection>
197 </connections>
198 </ui>

eric ide

mercurial