Documentation/Source/eric5.Plugins.VcsPlugins.vcsMercurial.HgRevisionSelectionDialog.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="#HgRevisionSelectionDialog.__init__">HgRevisionSelectionDialog</a></td> 57 <td><a href="#HgRevisionSelectionDialog.__init__">HgRevisionSelectionDialog</a></td>
58 <td>Constructor</td> 58 <td>Constructor</td>
59 </tr><tr> 59 </tr><tr>
60 <td><a href="#HgRevisionSelectionDialog.__updateOK">__updateOK</a></td>
61 <td>Private slot to update the OK button.</td>
62 </tr><tr>
60 <td><a href="#HgRevisionSelectionDialog.getRevision">getRevision</a></td> 63 <td><a href="#HgRevisionSelectionDialog.getRevision">getRevision</a></td>
61 <td>Public method to retrieve the selected revision.</td> 64 <td>Public method to retrieve the selected revision.</td>
65 </tr><tr>
66 <td><a href="#HgRevisionSelectionDialog.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="#HgRevisionSelectionDialog.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="#HgRevisionSelectionDialog.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="#HgRevisionSelectionDialog.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="#HgRevisionSelectionDialog.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="#HgRevisionSelectionDialog.on_idEdit_textChanged">on_idEdit_textChanged</a></td>
82 <td>Private slot to handle changes of the ID edit.</td>
83 </tr><tr>
84 <td><a href="#HgRevisionSelectionDialog.on_tagButton_toggled">on_tagButton_toggled</a></td>
85 <td>Private slot to handle changes of the Tag select button.</td>
86 </tr><tr>
87 <td><a href="#HgRevisionSelectionDialog.on_tagCombo_editTextChanged">on_tagCombo_editTextChanged</a></td>
88 <td>Private slot to handle changes of the Tag combo.</td>
62 </tr> 89 </tr>
63 </table> 90 </table>
64 <a NAME="HgRevisionSelectionDialog.__init__" ID="HgRevisionSelectionDialog.__init__"></a> 91 <a NAME="HgRevisionSelectionDialog.__init__" ID="HgRevisionSelectionDialog.__init__"></a>
65 <h4>HgRevisionSelectionDialog (Constructor)</h4> 92 <h4>HgRevisionSelectionDialog (Constructor)</h4>
66 <b>HgRevisionSelectionDialog</b>(<i>tagsList, branchesList, showNone=False, parent=None</i>) 93 <b>HgRevisionSelectionDialog</b>(<i>tagsList, branchesList, bookmarksList=None, showNone=False, parent=None</i>)
67 <p> 94 <p>
68 Constructor 95 Constructor
69 </p><dl> 96 </p><dl>
70 <dt><i>tagsList</i></dt> 97 <dt><i>tagsList</i></dt>
71 <dd> 98 <dd>
72 list of tags (list of strings) 99 list of tags (list of strings)
73 </dd><dt><i>branchesList</i></dt> 100 </dd><dt><i>branchesList</i></dt>
74 <dd> 101 <dd>
75 list of branches (list of strings) 102 list of branches (list of strings)
103 </dd><dt><i>bookmarksList</i></dt>
104 <dd>
105 list of bookmarks (list of strings)
76 </dd><dt><i>showNone</i></dt> 106 </dd><dt><i>showNone</i></dt>
77 <dd> 107 <dd>
78 flag influencing the label of the 'None' selection (boolean) 108 flag influencing the label of the 'None' selection (boolean)
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="HgRevisionSelectionDialog.getRevision" ID="HgRevisionSelectionDialog.getRevision"></a> 113 </dl><a NAME="HgRevisionSelectionDialog.__updateOK" ID="HgRevisionSelectionDialog.__updateOK"></a>
114 <h4>HgRevisionSelectionDialog.__updateOK</h4>
115 <b>__updateOK</b>(<i></i>)
116 <p>
117 Private slot to update the OK button.
118 </p><a NAME="HgRevisionSelectionDialog.getRevision" ID="HgRevisionSelectionDialog.getRevision"></a>
84 <h4>HgRevisionSelectionDialog.getRevision</h4> 119 <h4>HgRevisionSelectionDialog.getRevision</h4>
85 <b>getRevision</b>(<i></i>) 120 <b>getRevision</b>(<i></i>)
86 <p> 121 <p>
87 Public method to retrieve the selected revision. 122 Public method to retrieve the selected revision.
88 </p><dl> 123 </p><dl>
89 <dt>Returns:</dt> 124 <dt>Returns:</dt>
90 <dd> 125 <dd>
91 tuple naming the revision and a flag indicating a 126 selected revision (string)
92 forced merge (string, boolean) 127 </dd>
128 </dl><a NAME="HgRevisionSelectionDialog.on_bookmarkButton_toggled" ID="HgRevisionSelectionDialog.on_bookmarkButton_toggled"></a>
129 <h4>HgRevisionSelectionDialog.on_bookmarkButton_toggled</h4>
130 <b>on_bookmarkButton_toggled</b>(<i>checked</i>)
131 <p>
132 Private slot to handle changes of the Bookmark select button.
133 </p><dl>
134 <dt><i>checked</i></dt>
135 <dd>
136 state of the button (boolean)
137 </dd>
138 </dl><a NAME="HgRevisionSelectionDialog.on_bookmarkCombo_editTextChanged" ID="HgRevisionSelectionDialog.on_bookmarkCombo_editTextChanged"></a>
139 <h4>HgRevisionSelectionDialog.on_bookmarkCombo_editTextChanged</h4>
140 <b>on_bookmarkCombo_editTextChanged</b>(<i>txt</i>)
141 <p>
142 Private slot to handle changes of the Bookmark combo.
143 </p><dl>
144 <dt><i>txt</i></dt>
145 <dd>
146 text of the combo (string)
147 </dd>
148 </dl><a NAME="HgRevisionSelectionDialog.on_branchButton_toggled" ID="HgRevisionSelectionDialog.on_branchButton_toggled"></a>
149 <h4>HgRevisionSelectionDialog.on_branchButton_toggled</h4>
150 <b>on_branchButton_toggled</b>(<i>checked</i>)
151 <p>
152 Private slot to handle changes of the Branch select button.
153 </p><dl>
154 <dt><i>checked</i></dt>
155 <dd>
156 state of the button (boolean)
157 </dd>
158 </dl><a NAME="HgRevisionSelectionDialog.on_branchCombo_editTextChanged" ID="HgRevisionSelectionDialog.on_branchCombo_editTextChanged"></a>
159 <h4>HgRevisionSelectionDialog.on_branchCombo_editTextChanged</h4>
160 <b>on_branchCombo_editTextChanged</b>(<i>txt</i>)
161 <p>
162 Private slot to handle changes of the Branch combo.
163 </p><dl>
164 <dt><i>txt</i></dt>
165 <dd>
166 text of the combo (string)
167 </dd>
168 </dl><a NAME="HgRevisionSelectionDialog.on_idButton_toggled" ID="HgRevisionSelectionDialog.on_idButton_toggled"></a>
169 <h4>HgRevisionSelectionDialog.on_idButton_toggled</h4>
170 <b>on_idButton_toggled</b>(<i>checked</i>)
171 <p>
172 Private slot to handle changes of the ID select button.
173 </p><dl>
174 <dt><i>checked</i></dt>
175 <dd>
176 state of the button (boolean)
177 </dd>
178 </dl><a NAME="HgRevisionSelectionDialog.on_idEdit_textChanged" ID="HgRevisionSelectionDialog.on_idEdit_textChanged"></a>
179 <h4>HgRevisionSelectionDialog.on_idEdit_textChanged</h4>
180 <b>on_idEdit_textChanged</b>(<i>txt</i>)
181 <p>
182 Private slot to handle changes of the ID edit.
183 </p><dl>
184 <dt><i>txt</i></dt>
185 <dd>
186 text of the edit (string)
187 </dd>
188 </dl><a NAME="HgRevisionSelectionDialog.on_tagButton_toggled" ID="HgRevisionSelectionDialog.on_tagButton_toggled"></a>
189 <h4>HgRevisionSelectionDialog.on_tagButton_toggled</h4>
190 <b>on_tagButton_toggled</b>(<i>checked</i>)
191 <p>
192 Private slot to handle changes of the Tag select button.
193 </p><dl>
194 <dt><i>checked</i></dt>
195 <dd>
196 state of the button (boolean)
197 </dd>
198 </dl><a NAME="HgRevisionSelectionDialog.on_tagCombo_editTextChanged" ID="HgRevisionSelectionDialog.on_tagCombo_editTextChanged"></a>
199 <h4>HgRevisionSelectionDialog.on_tagCombo_editTextChanged</h4>
200 <b>on_tagCombo_editTextChanged</b>(<i>txt</i>)
201 <p>
202 Private slot to handle changes of the Tag combo.
203 </p><dl>
204 <dt><i>txt</i></dt>
205 <dd>
206 text of the combo (string)
93 </dd> 207 </dd>
94 </dl> 208 </dl>
95 <div align="right"><a href="#top">Up</a></div> 209 <div align="right"><a href="#top">Up</a></div>
96 <hr /> 210 <hr />
97 </body></html> 211 </body></html>

eric ide

mercurial