eric6/Plugins/VcsPlugins/vcsGit/GitFetchDialog.ui

changeset 6942
2602857055c5
parent 6020
baf6da1ae288
equal deleted inserted replaced
6941:f99d60d6b59b 6942:2602857055c5
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>GitFetchDialog</class>
4 <widget class="QDialog" name="GitFetchDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>400</width>
10 <height>350</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Git Fetch</string>
15 </property>
16 <property name="sizeGripEnabled">
17 <bool>true</bool>
18 </property>
19 <layout class="QGridLayout" name="gridLayout">
20 <item row="0" column="0">
21 <widget class="QLabel" name="label">
22 <property name="text">
23 <string>Remote Repository:</string>
24 </property>
25 </widget>
26 </item>
27 <item row="0" column="1">
28 <widget class="QComboBox" name="remotesComboBox">
29 <property name="toolTip">
30 <string>Select the remote repository to fetch from</string>
31 </property>
32 </widget>
33 </item>
34 <item row="1" column="1">
35 <widget class="QLineEdit" name="remoteEdit">
36 <property name="readOnly">
37 <bool>true</bool>
38 </property>
39 </widget>
40 </item>
41 <item row="2" column="0">
42 <layout class="QVBoxLayout" name="verticalLayout">
43 <item>
44 <widget class="QLabel" name="label_2">
45 <property name="text">
46 <string>Remote Branches:</string>
47 </property>
48 <property name="alignment">
49 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
50 </property>
51 </widget>
52 </item>
53 <item>
54 <widget class="QPushButton" name="updateButton">
55 <property name="toolTip">
56 <string>Press to update the list of remote branches</string>
57 </property>
58 <property name="text">
59 <string>Update</string>
60 </property>
61 </widget>
62 </item>
63 <item>
64 <spacer name="verticalSpacer">
65 <property name="orientation">
66 <enum>Qt::Vertical</enum>
67 </property>
68 <property name="sizeHint" stdset="0">
69 <size>
70 <width>20</width>
71 <height>40</height>
72 </size>
73 </property>
74 </spacer>
75 </item>
76 </layout>
77 </item>
78 <item row="2" column="1">
79 <widget class="QListWidget" name="remoteBranchesList">
80 <property name="toolTip">
81 <string>Select the remote branches to be fetched</string>
82 </property>
83 <property name="alternatingRowColors">
84 <bool>true</bool>
85 </property>
86 <property name="selectionMode">
87 <enum>QAbstractItemView::ExtendedSelection</enum>
88 </property>
89 </widget>
90 </item>
91 <item row="3" column="0">
92 <widget class="QLabel" name="label_3">
93 <property name="text">
94 <string>Local Branch:</string>
95 </property>
96 </widget>
97 </item>
98 <item row="3" column="1">
99 <widget class="QComboBox" name="localBranchComboBox">
100 <property name="toolTip">
101 <string>Select the local branch to fetch into</string>
102 </property>
103 <property name="editable">
104 <bool>true</bool>
105 </property>
106 </widget>
107 </item>
108 <item row="4" column="0" colspan="2">
109 <widget class="QCheckBox" name="pruneCheckBox">
110 <property name="toolTip">
111 <string>Select to remove non-existing tracking references </string>
112 </property>
113 <property name="text">
114 <string>Prune obsolete tracking references</string>
115 </property>
116 </widget>
117 </item>
118 <item row="5" column="0" colspan="2">
119 <widget class="QCheckBox" name="tagsCheckBox">
120 <property name="toolTip">
121 <string>Select to fetch tags as well</string>
122 </property>
123 <property name="text">
124 <string>Include tags</string>
125 </property>
126 </widget>
127 </item>
128 <item row="6" column="0" colspan="2">
129 <widget class="QDialogButtonBox" name="buttonBox">
130 <property name="orientation">
131 <enum>Qt::Horizontal</enum>
132 </property>
133 <property name="standardButtons">
134 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
135 </property>
136 </widget>
137 </item>
138 </layout>
139 </widget>
140 <tabstops>
141 <tabstop>remotesComboBox</tabstop>
142 <tabstop>remoteEdit</tabstop>
143 <tabstop>remoteBranchesList</tabstop>
144 <tabstop>updateButton</tabstop>
145 <tabstop>localBranchComboBox</tabstop>
146 <tabstop>pruneCheckBox</tabstop>
147 <tabstop>tagsCheckBox</tabstop>
148 </tabstops>
149 <resources/>
150 <connections>
151 <connection>
152 <sender>buttonBox</sender>
153 <signal>accepted()</signal>
154 <receiver>GitFetchDialog</receiver>
155 <slot>accept()</slot>
156 <hints>
157 <hint type="sourcelabel">
158 <x>248</x>
159 <y>254</y>
160 </hint>
161 <hint type="destinationlabel">
162 <x>157</x>
163 <y>274</y>
164 </hint>
165 </hints>
166 </connection>
167 <connection>
168 <sender>buttonBox</sender>
169 <signal>rejected()</signal>
170 <receiver>GitFetchDialog</receiver>
171 <slot>reject()</slot>
172 <hints>
173 <hint type="sourcelabel">
174 <x>316</x>
175 <y>260</y>
176 </hint>
177 <hint type="destinationlabel">
178 <x>286</x>
179 <y>274</y>
180 </hint>
181 </hints>
182 </connection>
183 </connections>
184 </ui>

eric ide

mercurial