Documentation/Source/eric5.Plugins.VcsPlugins.vcsMercurial.HgBackoutDialog.html

changeset 1020
adf7e95f05e7
parent 945
8cd4d08fa9f6
child 1228
7afaf2fca55b
equal deleted inserted replaced
1019:d8a9697f78d1 1020:adf7e95f05e7
55 <table> 55 <table>
56 <tr> 56 <tr>
57 <td><a href="#HgBackoutDialog.__init__">HgBackoutDialog</a></td> 57 <td><a href="#HgBackoutDialog.__init__">HgBackoutDialog</a></td>
58 <td>Constructor</td> 58 <td>Constructor</td>
59 </tr><tr> 59 </tr><tr>
60 <td><a href="#HgBackoutDialog.__updateOK">__updateOK</a></td>
61 <td>Private slot to update the OK button.</td>
62 </tr><tr>
60 <td><a href="#HgBackoutDialog.getParameters">getParameters</a></td> 63 <td><a href="#HgBackoutDialog.getParameters">getParameters</a></td>
61 <td>Public method to retrieve the backout data.</td> 64 <td>Public method to retrieve the backout data.</td>
62 </tr><tr> 65 </tr><tr>
66 <td><a href="#HgBackoutDialog.on_bookmarkButton_toggled">on_bookmarkButton_toggled</a></td>
67 <td>Private slot to handle changes of the Bookmark select button.</td>
68 </tr><tr>
69 <td><a href="#HgBackoutDialog.on_bookmarkCombo_editTextChanged">on_bookmarkCombo_editTextChanged</a></td>
70 <td>Private slot to handle changes of the Bookmark combo.</td>
71 </tr><tr>
72 <td><a href="#HgBackoutDialog.on_branchButton_toggled">on_branchButton_toggled</a></td>
73 <td>Private slot to handle changes of the Branch select button.</td>
74 </tr><tr>
75 <td><a href="#HgBackoutDialog.on_branchCombo_editTextChanged">on_branchCombo_editTextChanged</a></td>
76 <td>Private slot to handle changes of the Branch combo.</td>
77 </tr><tr>
78 <td><a href="#HgBackoutDialog.on_idButton_toggled">on_idButton_toggled</a></td>
79 <td>Private slot to handle changes of the ID select button.</td>
80 </tr><tr>
81 <td><a href="#HgBackoutDialog.on_idEdit_textChanged">on_idEdit_textChanged</a></td>
82 <td>Private slot to handle changes of the ID edit.</td>
83 </tr><tr>
63 <td><a href="#HgBackoutDialog.on_noneButton_toggled">on_noneButton_toggled</a></td> 84 <td><a href="#HgBackoutDialog.on_noneButton_toggled">on_noneButton_toggled</a></td>
64 <td>Private slot to handle the toggling of the None revision button.</td> 85 <td>Private slot to handle the toggling of the None revision button.</td>
86 </tr><tr>
87 <td><a href="#HgBackoutDialog.on_tagButton_toggled">on_tagButton_toggled</a></td>
88 <td>Private slot to handle changes of the Tag select button.</td>
89 </tr><tr>
90 <td><a href="#HgBackoutDialog.on_tagCombo_editTextChanged">on_tagCombo_editTextChanged</a></td>
91 <td>Private slot to handle changes of the Tag combo.</td>
65 </tr> 92 </tr>
66 </table> 93 </table>
67 <a NAME="HgBackoutDialog.__init__" ID="HgBackoutDialog.__init__"></a> 94 <a NAME="HgBackoutDialog.__init__" ID="HgBackoutDialog.__init__"></a>
68 <h4>HgBackoutDialog (Constructor)</h4> 95 <h4>HgBackoutDialog (Constructor)</h4>
69 <b>HgBackoutDialog</b>(<i>tagsList, branchesList, parent=None</i>) 96 <b>HgBackoutDialog</b>(<i>tagsList, branchesList, bookmarksList=None, parent=None</i>)
70 <p> 97 <p>
71 Constructor 98 Constructor
72 </p><dl> 99 </p><dl>
73 <dt><i>tagsList</i></dt> 100 <dt><i>tagsList</i></dt>
74 <dd> 101 <dd>
75 list of tags (list of strings) 102 list of tags (list of strings)
76 </dd><dt><i>branchesList</i></dt> 103 </dd><dt><i>branchesList</i></dt>
77 <dd> 104 <dd>
78 list of branches (list of strings) 105 list of branches (list of strings)
106 </dd><dt><i>bookmarksList</i></dt>
107 <dd>
108 list of bookmarks (list of strings)
79 </dd><dt><i>parent</i></dt> 109 </dd><dt><i>parent</i></dt>
80 <dd> 110 <dd>
81 parent widget (QWidget) 111 parent widget (QWidget)
82 </dd> 112 </dd>
83 </dl><a NAME="HgBackoutDialog.getParameters" ID="HgBackoutDialog.getParameters"></a> 113 </dl><a NAME="HgBackoutDialog.__updateOK" ID="HgBackoutDialog.__updateOK"></a>
114 <h4>HgBackoutDialog.__updateOK</h4>
115 <b>__updateOK</b>(<i></i>)
116 <p>
117 Private slot to update the OK button.
118 </p><a NAME="HgBackoutDialog.getParameters" ID="HgBackoutDialog.getParameters"></a>
84 <h4>HgBackoutDialog.getParameters</h4> 119 <h4>HgBackoutDialog.getParameters</h4>
85 <b>getParameters</b>(<i></i>) 120 <b>getParameters</b>(<i></i>)
86 <p> 121 <p>
87 Public method to retrieve the backout data. 122 Public method to retrieve the backout data.
88 </p><dl> 123 </p><dl>
90 <dd> 125 <dd>
91 tuple naming the revision, a flag indicating a 126 tuple naming the revision, a flag indicating a
92 merge, the commit date, the commit user and a commit message 127 merge, the commit date, the commit user and a commit message
93 (string, boolean, string, string, string) 128 (string, boolean, string, string, string)
94 </dd> 129 </dd>
130 </dl><a NAME="HgBackoutDialog.on_bookmarkButton_toggled" ID="HgBackoutDialog.on_bookmarkButton_toggled"></a>
131 <h4>HgBackoutDialog.on_bookmarkButton_toggled</h4>
132 <b>on_bookmarkButton_toggled</b>(<i>checked</i>)
133 <p>
134 Private slot to handle changes of the Bookmark select button.
135 </p><dl>
136 <dt><i>checked</i></dt>
137 <dd>
138 state of the button (boolean)
139 </dd>
140 </dl><a NAME="HgBackoutDialog.on_bookmarkCombo_editTextChanged" ID="HgBackoutDialog.on_bookmarkCombo_editTextChanged"></a>
141 <h4>HgBackoutDialog.on_bookmarkCombo_editTextChanged</h4>
142 <b>on_bookmarkCombo_editTextChanged</b>(<i>txt</i>)
143 <p>
144 Private slot to handle changes of the Bookmark combo.
145 </p><dl>
146 <dt><i>txt</i></dt>
147 <dd>
148 text of the combo (string)
149 </dd>
150 </dl><a NAME="HgBackoutDialog.on_branchButton_toggled" ID="HgBackoutDialog.on_branchButton_toggled"></a>
151 <h4>HgBackoutDialog.on_branchButton_toggled</h4>
152 <b>on_branchButton_toggled</b>(<i>checked</i>)
153 <p>
154 Private slot to handle changes of the Branch select button.
155 </p><dl>
156 <dt><i>checked</i></dt>
157 <dd>
158 state of the button (boolean)
159 </dd>
160 </dl><a NAME="HgBackoutDialog.on_branchCombo_editTextChanged" ID="HgBackoutDialog.on_branchCombo_editTextChanged"></a>
161 <h4>HgBackoutDialog.on_branchCombo_editTextChanged</h4>
162 <b>on_branchCombo_editTextChanged</b>(<i>txt</i>)
163 <p>
164 Private slot to handle changes of the Branch combo.
165 </p><dl>
166 <dt><i>txt</i></dt>
167 <dd>
168 text of the combo (string)
169 </dd>
170 </dl><a NAME="HgBackoutDialog.on_idButton_toggled" ID="HgBackoutDialog.on_idButton_toggled"></a>
171 <h4>HgBackoutDialog.on_idButton_toggled</h4>
172 <b>on_idButton_toggled</b>(<i>checked</i>)
173 <p>
174 Private slot to handle changes of the ID select button.
175 </p><dl>
176 <dt><i>checked</i></dt>
177 <dd>
178 state of the button (boolean)
179 </dd>
180 </dl><a NAME="HgBackoutDialog.on_idEdit_textChanged" ID="HgBackoutDialog.on_idEdit_textChanged"></a>
181 <h4>HgBackoutDialog.on_idEdit_textChanged</h4>
182 <b>on_idEdit_textChanged</b>(<i>txt</i>)
183 <p>
184 Private slot to handle changes of the ID edit.
185 </p><dl>
186 <dt><i>txt</i></dt>
187 <dd>
188 text of the edit (string)
189 </dd>
95 </dl><a NAME="HgBackoutDialog.on_noneButton_toggled" ID="HgBackoutDialog.on_noneButton_toggled"></a> 190 </dl><a NAME="HgBackoutDialog.on_noneButton_toggled" ID="HgBackoutDialog.on_noneButton_toggled"></a>
96 <h4>HgBackoutDialog.on_noneButton_toggled</h4> 191 <h4>HgBackoutDialog.on_noneButton_toggled</h4>
97 <b>on_noneButton_toggled</b>(<i>checked</i>) 192 <b>on_noneButton_toggled</b>(<i>checked</i>)
98 <p> 193 <p>
99 Private slot to handle the toggling of the None revision button. 194 Private slot to handle the toggling of the None revision button.
100 </p><dl> 195 </p><dl>
101 <dt><i>checked</i></dt> 196 <dt><i>checked</i></dt>
102 <dd> 197 <dd>
103 flag indicating the checked state (boolean) 198 flag indicating the checked state (boolean)
199 </dd>
200 </dl><a NAME="HgBackoutDialog.on_tagButton_toggled" ID="HgBackoutDialog.on_tagButton_toggled"></a>
201 <h4>HgBackoutDialog.on_tagButton_toggled</h4>
202 <b>on_tagButton_toggled</b>(<i>checked</i>)
203 <p>
204 Private slot to handle changes of the Tag select button.
205 </p><dl>
206 <dt><i>checked</i></dt>
207 <dd>
208 state of the button (boolean)
209 </dd>
210 </dl><a NAME="HgBackoutDialog.on_tagCombo_editTextChanged" ID="HgBackoutDialog.on_tagCombo_editTextChanged"></a>
211 <h4>HgBackoutDialog.on_tagCombo_editTextChanged</h4>
212 <b>on_tagCombo_editTextChanged</b>(<i>txt</i>)
213 <p>
214 Private slot to handle changes of the Tag combo.
215 </p><dl>
216 <dt><i>txt</i></dt>
217 <dd>
218 text of the combo (string)
104 </dd> 219 </dd>
105 </dl> 220 </dl>
106 <div align="right"><a href="#top">Up</a></div> 221 <div align="right"><a href="#top">Up</a></div>
107 <hr /> 222 <hr />
108 </body></html> 223 </body></html>

eric ide

mercurial