|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <ui version="4.0"> |
|
3 <class>GitPullDialog</class> |
|
4 <widget class="QDialog" name="GitPullDialog"> |
|
5 <property name="geometry"> |
|
6 <rect> |
|
7 <x>0</x> |
|
8 <y>0</y> |
|
9 <width>400</width> |
|
10 <height>344</height> |
|
11 </rect> |
|
12 </property> |
|
13 <property name="windowTitle"> |
|
14 <string>Git Pull</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 pull 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 pulled</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" colspan="2"> |
|
92 <widget class="QCheckBox" name="pruneCheckBox"> |
|
93 <property name="toolTip"> |
|
94 <string>Select to remove non-existing tracking references </string> |
|
95 </property> |
|
96 <property name="text"> |
|
97 <string>Prune obsolete tracking references</string> |
|
98 </property> |
|
99 </widget> |
|
100 </item> |
|
101 <item row="4" column="0" colspan="2"> |
|
102 <widget class="QDialogButtonBox" name="buttonBox"> |
|
103 <property name="orientation"> |
|
104 <enum>Qt::Horizontal</enum> |
|
105 </property> |
|
106 <property name="standardButtons"> |
|
107 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> |
|
108 </property> |
|
109 </widget> |
|
110 </item> |
|
111 </layout> |
|
112 </widget> |
|
113 <tabstops> |
|
114 <tabstop>remotesComboBox</tabstop> |
|
115 <tabstop>remoteEdit</tabstop> |
|
116 <tabstop>remoteBranchesList</tabstop> |
|
117 <tabstop>updateButton</tabstop> |
|
118 <tabstop>pruneCheckBox</tabstop> |
|
119 </tabstops> |
|
120 <resources/> |
|
121 <connections> |
|
122 <connection> |
|
123 <sender>buttonBox</sender> |
|
124 <signal>accepted()</signal> |
|
125 <receiver>GitPullDialog</receiver> |
|
126 <slot>accept()</slot> |
|
127 <hints> |
|
128 <hint type="sourcelabel"> |
|
129 <x>248</x> |
|
130 <y>254</y> |
|
131 </hint> |
|
132 <hint type="destinationlabel"> |
|
133 <x>157</x> |
|
134 <y>274</y> |
|
135 </hint> |
|
136 </hints> |
|
137 </connection> |
|
138 <connection> |
|
139 <sender>buttonBox</sender> |
|
140 <signal>rejected()</signal> |
|
141 <receiver>GitPullDialog</receiver> |
|
142 <slot>reject()</slot> |
|
143 <hints> |
|
144 <hint type="sourcelabel"> |
|
145 <x>316</x> |
|
146 <y>260</y> |
|
147 </hint> |
|
148 <hint type="destinationlabel"> |
|
149 <x>286</x> |
|
150 <y>274</y> |
|
151 </hint> |
|
152 </hints> |
|
153 </connection> |
|
154 </connections> |
|
155 </ui> |