src/eric7/Documentation/Source/eric7.Plugins.VcsPlugins.vcsMercurial.HgBundleDialog.html

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8596
d64760b2da50
child 10438
4cd7e5a8b3cf
equal deleted inserted replaced
9208:3fc8dfeb6ebe 9209:b99e7fd55fd3
1 <!DOCTYPE html>
2 <html><head>
3 <title>eric7.Plugins.VcsPlugins.vcsMercurial.HgBundleDialog</title>
4 <meta charset="UTF-8">
5 <link rel="stylesheet" href="styles.css">
6 </head>
7 <body>
8 <a NAME="top" ID="top"></a>
9 <h1>eric7.Plugins.VcsPlugins.vcsMercurial.HgBundleDialog</h1>
10
11 <p>
12 Module implementing a dialog to enter the data for a bundle operation.
13 </p>
14 <h3>Global Attributes</h3>
15
16 <table>
17 <tr><td>None</td></tr>
18 </table>
19 <h3>Classes</h3>
20
21 <table>
22
23 <tr>
24 <td><a href="#HgBundleDialog">HgBundleDialog</a></td>
25 <td>Class implementing a dialog to enter the data for a bundle operation.</td>
26 </tr>
27 </table>
28 <h3>Functions</h3>
29
30 <table>
31 <tr><td>None</td></tr>
32 </table>
33 <hr />
34 <hr />
35 <a NAME="HgBundleDialog" ID="HgBundleDialog"></a>
36 <h2>HgBundleDialog</h2>
37
38 <p>
39 Class implementing a dialog to enter the data for a bundle operation.
40 </p>
41 <h3>Derived from</h3>
42 QDialog, Ui_HgBundleDialog
43 <h3>Class Attributes</h3>
44
45 <table>
46 <tr><td>None</td></tr>
47 </table>
48 <h3>Class Methods</h3>
49
50 <table>
51 <tr><td>None</td></tr>
52 </table>
53 <h3>Methods</h3>
54
55 <table>
56
57 <tr>
58 <td><a href="#HgBundleDialog.__init__">HgBundleDialog</a></td>
59 <td>Constructor</td>
60 </tr>
61 <tr>
62 <td><a href="#HgBundleDialog.__updateOK">__updateOK</a></td>
63 <td>Private slot to update the OK button.</td>
64 </tr>
65 <tr>
66 <td><a href="#HgBundleDialog.getParameters">getParameters</a></td>
67 <td>Public method to retrieve the bundle data.</td>
68 </tr>
69 <tr>
70 <td><a href="#HgBundleDialog.on_bookmarkButton_toggled">on_bookmarkButton_toggled</a></td>
71 <td>Private slot to handle changes of the Bookmark select button.</td>
72 </tr>
73 <tr>
74 <td><a href="#HgBundleDialog.on_bookmarkCombo_editTextChanged">on_bookmarkCombo_editTextChanged</a></td>
75 <td>Private slot to handle changes of the Bookmark combo.</td>
76 </tr>
77 <tr>
78 <td><a href="#HgBundleDialog.on_branchButton_toggled">on_branchButton_toggled</a></td>
79 <td>Private slot to handle changes of the Branch select button.</td>
80 </tr>
81 <tr>
82 <td><a href="#HgBundleDialog.on_branchCombo_editTextChanged">on_branchCombo_editTextChanged</a></td>
83 <td>Private slot to handle changes of the Branch combo.</td>
84 </tr>
85 <tr>
86 <td><a href="#HgBundleDialog.on_multipleButton_toggled">on_multipleButton_toggled</a></td>
87 <td>Private slot to handle changes of the Multiple select button.</td>
88 </tr>
89 <tr>
90 <td><a href="#HgBundleDialog.on_multipleEdit_textChanged">on_multipleEdit_textChanged</a></td>
91 <td>Private slot to handle changes of the Multiple edit.</td>
92 </tr>
93 <tr>
94 <td><a href="#HgBundleDialog.on_tagButton_toggled">on_tagButton_toggled</a></td>
95 <td>Private slot to handle changes of the Tag select button.</td>
96 </tr>
97 <tr>
98 <td><a href="#HgBundleDialog.on_tagCombo_editTextChanged">on_tagCombo_editTextChanged</a></td>
99 <td>Private slot to handle changes of the Tag combo.</td>
100 </tr>
101 </table>
102 <h3>Static Methods</h3>
103
104 <table>
105 <tr><td>None</td></tr>
106 </table>
107
108 <a NAME="HgBundleDialog.__init__" ID="HgBundleDialog.__init__"></a>
109 <h4>HgBundleDialog (Constructor)</h4>
110 <b>HgBundleDialog</b>(<i>tagsList, branchesList, bookmarksList=None, version=(0, 0, 0), parent=None</i>)
111
112 <p>
113 Constructor
114 </p>
115 <dl>
116
117 <dt><i>tagsList</i> (list of str)</dt>
118 <dd>
119 list of tags
120 </dd>
121 <dt><i>branchesList</i> (list of str)</dt>
122 <dd>
123 list of branches
124 </dd>
125 <dt><i>bookmarksList</i> (list of str)</dt>
126 <dd>
127 list of bookmarks
128 </dd>
129 <dt><i>version</i> (tuple of three integers)</dt>
130 <dd>
131 Mercurial version info
132 </dd>
133 <dt><i>parent</i> (QWidget)</dt>
134 <dd>
135 parent widget
136 </dd>
137 </dl>
138 <a NAME="HgBundleDialog.__updateOK" ID="HgBundleDialog.__updateOK"></a>
139 <h4>HgBundleDialog.__updateOK</h4>
140 <b>__updateOK</b>(<i></i>)
141
142 <p>
143 Private slot to update the OK button.
144 </p>
145 <a NAME="HgBundleDialog.getParameters" ID="HgBundleDialog.getParameters"></a>
146 <h4>HgBundleDialog.getParameters</h4>
147 <b>getParameters</b>(<i></i>)
148
149 <p>
150 Public method to retrieve the bundle data.
151 </p>
152 <dl>
153 <dt>Return:</dt>
154 <dd>
155 tuple naming the revisions, base revisions, the compression
156 type and a flag indicating to bundle all changesets (string,
157 string, boolean)
158 </dd>
159 </dl>
160 <a NAME="HgBundleDialog.on_bookmarkButton_toggled" ID="HgBundleDialog.on_bookmarkButton_toggled"></a>
161 <h4>HgBundleDialog.on_bookmarkButton_toggled</h4>
162 <b>on_bookmarkButton_toggled</b>(<i>checked</i>)
163
164 <p>
165 Private slot to handle changes of the Bookmark select button.
166 </p>
167 <dl>
168
169 <dt><i>checked</i></dt>
170 <dd>
171 state of the button (boolean)
172 </dd>
173 </dl>
174 <a NAME="HgBundleDialog.on_bookmarkCombo_editTextChanged" ID="HgBundleDialog.on_bookmarkCombo_editTextChanged"></a>
175 <h4>HgBundleDialog.on_bookmarkCombo_editTextChanged</h4>
176 <b>on_bookmarkCombo_editTextChanged</b>(<i>txt</i>)
177
178 <p>
179 Private slot to handle changes of the Bookmark combo.
180 </p>
181 <dl>
182
183 <dt><i>txt</i></dt>
184 <dd>
185 text of the combo (string)
186 </dd>
187 </dl>
188 <a NAME="HgBundleDialog.on_branchButton_toggled" ID="HgBundleDialog.on_branchButton_toggled"></a>
189 <h4>HgBundleDialog.on_branchButton_toggled</h4>
190 <b>on_branchButton_toggled</b>(<i>checked</i>)
191
192 <p>
193 Private slot to handle changes of the Branch select button.
194 </p>
195 <dl>
196
197 <dt><i>checked</i></dt>
198 <dd>
199 state of the button (boolean)
200 </dd>
201 </dl>
202 <a NAME="HgBundleDialog.on_branchCombo_editTextChanged" ID="HgBundleDialog.on_branchCombo_editTextChanged"></a>
203 <h4>HgBundleDialog.on_branchCombo_editTextChanged</h4>
204 <b>on_branchCombo_editTextChanged</b>(<i>txt</i>)
205
206 <p>
207 Private slot to handle changes of the Branch combo.
208 </p>
209 <dl>
210
211 <dt><i>txt</i></dt>
212 <dd>
213 text of the combo (string)
214 </dd>
215 </dl>
216 <a NAME="HgBundleDialog.on_multipleButton_toggled" ID="HgBundleDialog.on_multipleButton_toggled"></a>
217 <h4>HgBundleDialog.on_multipleButton_toggled</h4>
218 <b>on_multipleButton_toggled</b>(<i>checked</i>)
219
220 <p>
221 Private slot to handle changes of the Multiple select button.
222 </p>
223 <dl>
224
225 <dt><i>checked</i></dt>
226 <dd>
227 state of the button (boolean)
228 </dd>
229 </dl>
230 <a NAME="HgBundleDialog.on_multipleEdit_textChanged" ID="HgBundleDialog.on_multipleEdit_textChanged"></a>
231 <h4>HgBundleDialog.on_multipleEdit_textChanged</h4>
232 <b>on_multipleEdit_textChanged</b>(<i></i>)
233
234 <p>
235 Private slot to handle changes of the Multiple edit.
236 </p>
237 <a NAME="HgBundleDialog.on_tagButton_toggled" ID="HgBundleDialog.on_tagButton_toggled"></a>
238 <h4>HgBundleDialog.on_tagButton_toggled</h4>
239 <b>on_tagButton_toggled</b>(<i>checked</i>)
240
241 <p>
242 Private slot to handle changes of the Tag select button.
243 </p>
244 <dl>
245
246 <dt><i>checked</i></dt>
247 <dd>
248 state of the button (boolean)
249 </dd>
250 </dl>
251 <a NAME="HgBundleDialog.on_tagCombo_editTextChanged" ID="HgBundleDialog.on_tagCombo_editTextChanged"></a>
252 <h4>HgBundleDialog.on_tagCombo_editTextChanged</h4>
253 <b>on_tagCombo_editTextChanged</b>(<i>txt</i>)
254
255 <p>
256 Private slot to handle changes of the Tag combo.
257 </p>
258 <dl>
259
260 <dt><i>txt</i></dt>
261 <dd>
262 text of the combo (string)
263 </dd>
264 </dl>
265 <div align="right"><a href="#top">Up</a></div>
266 <hr />
267 </body></html>

eric ide

mercurial