eric7/Documentation/Source/eric7.Plugins.VcsPlugins.vcsGit.GitBundleDialog.html

branch
eric7
changeset 8372
e0227a7c850e
child 8596
d64760b2da50
equal deleted inserted replaced
8371:d6062691d424 8372:e0227a7c850e
1 <!DOCTYPE html>
2 <html><head>
3 <title>eric7.Plugins.VcsPlugins.vcsGit.GitBundleDialog</title>
4 <meta charset="UTF-8">
5 <style>
6 body {
7 background: #EDECE6;
8 margin: 0em 1em 10em 1em;
9 color: black;
10 }
11
12 h1 { color: white; background: #85774A; }
13 h2 { color: white; background: #85774A; }
14 h3 { color: white; background: #9D936E; }
15 h4 { color: white; background: #9D936E; }
16
17 a { color: #BA6D36; }
18
19 </style>
20 </head>
21 <body>
22 <a NAME="top" ID="top"></a>
23 <h1>eric7.Plugins.VcsPlugins.vcsGit.GitBundleDialog</h1>
24
25 <p>
26 Module implementing a dialog to enter the data for a bundle operation.
27 </p>
28 <h3>Global Attributes</h3>
29
30 <table>
31 <tr><td>None</td></tr>
32 </table>
33 <h3>Classes</h3>
34
35 <table>
36
37 <tr>
38 <td><a href="#GitBundleDialog">GitBundleDialog</a></td>
39 <td>Class implementing a dialog to enter the data for a bundle operation.</td>
40 </tr>
41 </table>
42 <h3>Functions</h3>
43
44 <table>
45 <tr><td>None</td></tr>
46 </table>
47 <hr />
48 <hr />
49 <a NAME="GitBundleDialog" ID="GitBundleDialog"></a>
50 <h2>GitBundleDialog</h2>
51
52 <p>
53 Class implementing a dialog to enter the data for a bundle operation.
54 </p>
55 <h3>Derived from</h3>
56 QDialog, Ui_GitBundleDialog
57 <h3>Class Attributes</h3>
58
59 <table>
60 <tr><td>None</td></tr>
61 </table>
62 <h3>Class Methods</h3>
63
64 <table>
65 <tr><td>None</td></tr>
66 </table>
67 <h3>Methods</h3>
68
69 <table>
70
71 <tr>
72 <td><a href="#GitBundleDialog.__init__">GitBundleDialog</a></td>
73 <td>Constructor</td>
74 </tr>
75 <tr>
76 <td><a href="#GitBundleDialog.__updateOK">__updateOK</a></td>
77 <td>Private slot to update the OK button.</td>
78 </tr>
79 <tr>
80 <td><a href="#GitBundleDialog.getData">getData</a></td>
81 <td>Public method to retrieve the bundle data.</td>
82 </tr>
83 <tr>
84 <td><a href="#GitBundleDialog.on_branchButton_toggled">on_branchButton_toggled</a></td>
85 <td>Private slot to handle changes of the Branch select button.</td>
86 </tr>
87 <tr>
88 <td><a href="#GitBundleDialog.on_branchCombo_editTextChanged">on_branchCombo_editTextChanged</a></td>
89 <td>Private slot to handle changes of the Branch combo.</td>
90 </tr>
91 <tr>
92 <td><a href="#GitBundleDialog.on_revisionsButton_toggled">on_revisionsButton_toggled</a></td>
93 <td>Private slot to handle changes of the revisions select button.</td>
94 </tr>
95 <tr>
96 <td><a href="#GitBundleDialog.on_revisionsEdit_textChanged">on_revisionsEdit_textChanged</a></td>
97 <td>Private slot to handle changes of the Revisions edit.</td>
98 </tr>
99 <tr>
100 <td><a href="#GitBundleDialog.on_tagButton_toggled">on_tagButton_toggled</a></td>
101 <td>Private slot to handle changes of the Tag select button.</td>
102 </tr>
103 <tr>
104 <td><a href="#GitBundleDialog.on_tagCombo_editTextChanged">on_tagCombo_editTextChanged</a></td>
105 <td>Private slot to handle changes of the Tag combo.</td>
106 </tr>
107 </table>
108 <h3>Static Methods</h3>
109
110 <table>
111 <tr><td>None</td></tr>
112 </table>
113
114 <a NAME="GitBundleDialog.__init__" ID="GitBundleDialog.__init__"></a>
115 <h4>GitBundleDialog (Constructor)</h4>
116 <b>GitBundleDialog</b>(<i>tagsList, branchesList, parent=None</i>)
117
118 <p>
119 Constructor
120 </p>
121 <dl>
122
123 <dt><i>tagsList</i></dt>
124 <dd>
125 list of tags (list of strings)
126 </dd>
127 <dt><i>branchesList</i></dt>
128 <dd>
129 list of branches (list of strings)
130 </dd>
131 <dt><i>parent</i></dt>
132 <dd>
133 parent widget (QWidget)
134 </dd>
135 </dl>
136 <a NAME="GitBundleDialog.__updateOK" ID="GitBundleDialog.__updateOK"></a>
137 <h4>GitBundleDialog.__updateOK</h4>
138 <b>__updateOK</b>(<i></i>)
139
140 <p>
141 Private slot to update the OK button.
142 </p>
143 <a NAME="GitBundleDialog.getData" ID="GitBundleDialog.getData"></a>
144 <h4>GitBundleDialog.getData</h4>
145 <b>getData</b>(<i></i>)
146
147 <p>
148 Public method to retrieve the bundle data.
149 </p>
150 <dl>
151 <dt>Return:</dt>
152 <dd>
153 list of revision expressions (list of strings)
154 </dd>
155 </dl>
156 <a NAME="GitBundleDialog.on_branchButton_toggled" ID="GitBundleDialog.on_branchButton_toggled"></a>
157 <h4>GitBundleDialog.on_branchButton_toggled</h4>
158 <b>on_branchButton_toggled</b>(<i>checked</i>)
159
160 <p>
161 Private slot to handle changes of the Branch select button.
162 </p>
163 <dl>
164
165 <dt><i>checked</i></dt>
166 <dd>
167 state of the button (boolean)
168 </dd>
169 </dl>
170 <a NAME="GitBundleDialog.on_branchCombo_editTextChanged" ID="GitBundleDialog.on_branchCombo_editTextChanged"></a>
171 <h4>GitBundleDialog.on_branchCombo_editTextChanged</h4>
172 <b>on_branchCombo_editTextChanged</b>(<i>txt</i>)
173
174 <p>
175 Private slot to handle changes of the Branch combo.
176 </p>
177 <dl>
178
179 <dt><i>txt</i></dt>
180 <dd>
181 text of the combo (string)
182 </dd>
183 </dl>
184 <a NAME="GitBundleDialog.on_revisionsButton_toggled" ID="GitBundleDialog.on_revisionsButton_toggled"></a>
185 <h4>GitBundleDialog.on_revisionsButton_toggled</h4>
186 <b>on_revisionsButton_toggled</b>(<i>checked</i>)
187
188 <p>
189 Private slot to handle changes of the revisions select button.
190 </p>
191 <dl>
192
193 <dt><i>checked</i></dt>
194 <dd>
195 state of the button (boolean)
196 </dd>
197 </dl>
198 <a NAME="GitBundleDialog.on_revisionsEdit_textChanged" ID="GitBundleDialog.on_revisionsEdit_textChanged"></a>
199 <h4>GitBundleDialog.on_revisionsEdit_textChanged</h4>
200 <b>on_revisionsEdit_textChanged</b>(<i>txt</i>)
201
202 <p>
203 Private slot to handle changes of the Revisions edit.
204 </p>
205 <dl>
206
207 <dt><i>txt</i></dt>
208 <dd>
209 text of the line edit (string)
210 </dd>
211 </dl>
212 <a NAME="GitBundleDialog.on_tagButton_toggled" ID="GitBundleDialog.on_tagButton_toggled"></a>
213 <h4>GitBundleDialog.on_tagButton_toggled</h4>
214 <b>on_tagButton_toggled</b>(<i>checked</i>)
215
216 <p>
217 Private slot to handle changes of the Tag select button.
218 </p>
219 <dl>
220
221 <dt><i>checked</i></dt>
222 <dd>
223 state of the button (boolean)
224 </dd>
225 </dl>
226 <a NAME="GitBundleDialog.on_tagCombo_editTextChanged" ID="GitBundleDialog.on_tagCombo_editTextChanged"></a>
227 <h4>GitBundleDialog.on_tagCombo_editTextChanged</h4>
228 <b>on_tagCombo_editTextChanged</b>(<i>txt</i>)
229
230 <p>
231 Private slot to handle changes of the Tag combo.
232 </p>
233 <dl>
234
235 <dt><i>txt</i></dt>
236 <dd>
237 text of the combo (string)
238 </dd>
239 </dl>
240 <div align="right"><a href="#top">Up</a></div>
241 <hr />
242 </body></html>

eric ide

mercurial