|
1 <!DOCTYPE html> |
|
2 <html><head> |
|
3 <title>eric6.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><a NAME="top" ID="top"></a> |
|
22 <h1>eric6.Plugins.VcsPlugins.vcsGit.GitBundleDialog</h1> |
|
23 <p> |
|
24 Module implementing a dialog to enter the data for a bundle operation. |
|
25 </p> |
|
26 <h3>Global Attributes</h3> |
|
27 <table> |
|
28 <tr><td>None</td></tr> |
|
29 </table> |
|
30 <h3>Classes</h3> |
|
31 <table> |
|
32 <tr> |
|
33 <td><a href="#GitBundleDialog">GitBundleDialog</a></td> |
|
34 <td>Class implementing a dialog to enter the data for a bundle operation.</td> |
|
35 </tr> |
|
36 </table> |
|
37 <h3>Functions</h3> |
|
38 <table> |
|
39 <tr><td>None</td></tr> |
|
40 </table> |
|
41 <hr /><hr /> |
|
42 <a NAME="GitBundleDialog" ID="GitBundleDialog"></a> |
|
43 <h2>GitBundleDialog</h2> |
|
44 <p> |
|
45 Class implementing a dialog to enter the data for a bundle operation. |
|
46 </p> |
|
47 <h3>Derived from</h3> |
|
48 QDialog, Ui_GitBundleDialog |
|
49 <h3>Class Attributes</h3> |
|
50 <table> |
|
51 <tr><td>None</td></tr> |
|
52 </table> |
|
53 <h3>Class Methods</h3> |
|
54 <table> |
|
55 <tr><td>None</td></tr> |
|
56 </table> |
|
57 <h3>Methods</h3> |
|
58 <table> |
|
59 <tr> |
|
60 <td><a href="#GitBundleDialog.__init__">GitBundleDialog</a></td> |
|
61 <td>Constructor</td> |
|
62 </tr><tr> |
|
63 <td><a href="#GitBundleDialog.__updateOK">__updateOK</a></td> |
|
64 <td>Private slot to update the OK button.</td> |
|
65 </tr><tr> |
|
66 <td><a href="#GitBundleDialog.getData">getData</a></td> |
|
67 <td>Public method to retrieve the bundle data.</td> |
|
68 </tr><tr> |
|
69 <td><a href="#GitBundleDialog.on_branchButton_toggled">on_branchButton_toggled</a></td> |
|
70 <td>Private slot to handle changes of the Branch select button.</td> |
|
71 </tr><tr> |
|
72 <td><a href="#GitBundleDialog.on_branchCombo_editTextChanged">on_branchCombo_editTextChanged</a></td> |
|
73 <td>Private slot to handle changes of the Branch combo.</td> |
|
74 </tr><tr> |
|
75 <td><a href="#GitBundleDialog.on_revisionsButton_toggled">on_revisionsButton_toggled</a></td> |
|
76 <td>Private slot to handle changes of the revisions select button.</td> |
|
77 </tr><tr> |
|
78 <td><a href="#GitBundleDialog.on_revisionsEdit_textChanged">on_revisionsEdit_textChanged</a></td> |
|
79 <td>Private slot to handle changes of the Revisions edit.</td> |
|
80 </tr><tr> |
|
81 <td><a href="#GitBundleDialog.on_tagButton_toggled">on_tagButton_toggled</a></td> |
|
82 <td>Private slot to handle changes of the Tag select button.</td> |
|
83 </tr><tr> |
|
84 <td><a href="#GitBundleDialog.on_tagCombo_editTextChanged">on_tagCombo_editTextChanged</a></td> |
|
85 <td>Private slot to handle changes of the Tag combo.</td> |
|
86 </tr> |
|
87 </table> |
|
88 <h3>Static Methods</h3> |
|
89 <table> |
|
90 <tr><td>None</td></tr> |
|
91 </table> |
|
92 <a NAME="GitBundleDialog.__init__" ID="GitBundleDialog.__init__"></a> |
|
93 <h4>GitBundleDialog (Constructor)</h4> |
|
94 <b>GitBundleDialog</b>(<i>tagsList, branchesList, parent=None</i>) |
|
95 <p> |
|
96 Constructor |
|
97 </p><dl> |
|
98 <dt><i>tagsList</i></dt> |
|
99 <dd> |
|
100 list of tags (list of strings) |
|
101 </dd><dt><i>branchesList</i></dt> |
|
102 <dd> |
|
103 list of branches (list of strings) |
|
104 </dd><dt><i>parent</i></dt> |
|
105 <dd> |
|
106 parent widget (QWidget) |
|
107 </dd> |
|
108 </dl><a NAME="GitBundleDialog.__updateOK" ID="GitBundleDialog.__updateOK"></a> |
|
109 <h4>GitBundleDialog.__updateOK</h4> |
|
110 <b>__updateOK</b>(<i></i>) |
|
111 <p> |
|
112 Private slot to update the OK button. |
|
113 </p><a NAME="GitBundleDialog.getData" ID="GitBundleDialog.getData"></a> |
|
114 <h4>GitBundleDialog.getData</h4> |
|
115 <b>getData</b>(<i></i>) |
|
116 <p> |
|
117 Public method to retrieve the bundle data. |
|
118 </p><dl> |
|
119 <dt>Returns:</dt> |
|
120 <dd> |
|
121 list of revision expressions (list of strings) |
|
122 </dd> |
|
123 </dl><a NAME="GitBundleDialog.on_branchButton_toggled" ID="GitBundleDialog.on_branchButton_toggled"></a> |
|
124 <h4>GitBundleDialog.on_branchButton_toggled</h4> |
|
125 <b>on_branchButton_toggled</b>(<i>checked</i>) |
|
126 <p> |
|
127 Private slot to handle changes of the Branch select button. |
|
128 </p><dl> |
|
129 <dt><i>checked</i></dt> |
|
130 <dd> |
|
131 state of the button (boolean) |
|
132 </dd> |
|
133 </dl><a NAME="GitBundleDialog.on_branchCombo_editTextChanged" ID="GitBundleDialog.on_branchCombo_editTextChanged"></a> |
|
134 <h4>GitBundleDialog.on_branchCombo_editTextChanged</h4> |
|
135 <b>on_branchCombo_editTextChanged</b>(<i>txt</i>) |
|
136 <p> |
|
137 Private slot to handle changes of the Branch combo. |
|
138 </p><dl> |
|
139 <dt><i>txt</i></dt> |
|
140 <dd> |
|
141 text of the combo (string) |
|
142 </dd> |
|
143 </dl><a NAME="GitBundleDialog.on_revisionsButton_toggled" ID="GitBundleDialog.on_revisionsButton_toggled"></a> |
|
144 <h4>GitBundleDialog.on_revisionsButton_toggled</h4> |
|
145 <b>on_revisionsButton_toggled</b>(<i>checked</i>) |
|
146 <p> |
|
147 Private slot to handle changes of the revisions select button. |
|
148 </p><dl> |
|
149 <dt><i>checked</i></dt> |
|
150 <dd> |
|
151 state of the button (boolean) |
|
152 </dd> |
|
153 </dl><a NAME="GitBundleDialog.on_revisionsEdit_textChanged" ID="GitBundleDialog.on_revisionsEdit_textChanged"></a> |
|
154 <h4>GitBundleDialog.on_revisionsEdit_textChanged</h4> |
|
155 <b>on_revisionsEdit_textChanged</b>(<i>txt</i>) |
|
156 <p> |
|
157 Private slot to handle changes of the Revisions edit. |
|
158 </p><dl> |
|
159 <dt><i>txt</i></dt> |
|
160 <dd> |
|
161 text of the line edit (string) |
|
162 </dd> |
|
163 </dl><a NAME="GitBundleDialog.on_tagButton_toggled" ID="GitBundleDialog.on_tagButton_toggled"></a> |
|
164 <h4>GitBundleDialog.on_tagButton_toggled</h4> |
|
165 <b>on_tagButton_toggled</b>(<i>checked</i>) |
|
166 <p> |
|
167 Private slot to handle changes of the Tag select button. |
|
168 </p><dl> |
|
169 <dt><i>checked</i></dt> |
|
170 <dd> |
|
171 state of the button (boolean) |
|
172 </dd> |
|
173 </dl><a NAME="GitBundleDialog.on_tagCombo_editTextChanged" ID="GitBundleDialog.on_tagCombo_editTextChanged"></a> |
|
174 <h4>GitBundleDialog.on_tagCombo_editTextChanged</h4> |
|
175 <b>on_tagCombo_editTextChanged</b>(<i>txt</i>) |
|
176 <p> |
|
177 Private slot to handle changes of the Tag combo. |
|
178 </p><dl> |
|
179 <dt><i>txt</i></dt> |
|
180 <dd> |
|
181 text of the combo (string) |
|
182 </dd> |
|
183 </dl> |
|
184 <div align="right"><a href="#top">Up</a></div> |
|
185 <hr /> |
|
186 </body></html> |