RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.RefactoringRope.RefactoringServer.html

branch
server_client_variant
changeset 214
ccc3918ac38c
parent 204
b4bf79b956bc
child 217
874115c79ca7
equal deleted inserted replaced
213:2547dd1627b3 214:ccc3918ac38c
70 <td>Private slot to clear the redo and undo lists.</td> 70 <td>Private slot to clear the redo and undo lists.</td>
71 </tr><tr> 71 </tr><tr>
72 <td><a href="#RefactoringServer.__configChanged">__configChanged</a></td> 72 <td><a href="#RefactoringServer.__configChanged">__configChanged</a></td>
73 <td>Private slot called, when the rope config file has changed.</td> 73 <td>Private slot called, when the rope config file has changed.</td>
74 </tr><tr> 74 </tr><tr>
75 <td><a href="#RefactoringServer.__connectMouseClickHandler">__connectMouseClickHandler</a></td>
76 <td>Private method to connect the mouse click handler to an editor.</td>
77 </tr><tr>
75 <td><a href="#RefactoringServer.__convertLocalToAttribute">__convertLocalToAttribute</a></td> 78 <td><a href="#RefactoringServer.__convertLocalToAttribute">__convertLocalToAttribute</a></td>
76 <td>Private slot to convert a local variable to an attribute.</td> 79 <td>Private slot to convert a local variable to an attribute.</td>
77 </tr><tr> 80 </tr><tr>
78 <td><a href="#RefactoringServer.__defaultConfig">__defaultConfig</a></td> 81 <td><a href="#RefactoringServer.__defaultConfig">__defaultConfig</a></td>
79 <td>Private slot to return the contents of rope's default configuration.</td> 82 <td>Private slot to return the contents of rope's default configuration.</td>
80 </tr><tr> 83 </tr><tr>
84 <td><a href="#RefactoringServer.__disconnectMouseClickHandler">__disconnectMouseClickHandler</a></td>
85 <td>Private method to disconnect the mouse click handler from an editor.</td>
86 </tr><tr>
81 <td><a href="#RefactoringServer.__doExtract">__doExtract</a></td> 87 <td><a href="#RefactoringServer.__doExtract">__doExtract</a></td>
82 <td>Private method to perform the extract refactoring.</td> 88 <td>Private method to perform the extract refactoring.</td>
83 </tr><tr> 89 </tr><tr>
84 <td><a href="#RefactoringServer.__doImports">__doImports</a></td> 90 <td><a href="#RefactoringServer.__doImports">__doImports</a></td>
85 <td>Private method to perform the various imports refactorings.</td> 91 <td>Private method to perform the various imports refactorings.</td>
235 <td>Public method to check, if any editor has unsaved changes.</td> 241 <td>Public method to check, if any editor has unsaved changes.</td>
236 </tr><tr> 242 </tr><tr>
237 <td><a href="#RefactoringServer.confirmBufferIsSaved">confirmBufferIsSaved</a></td> 243 <td><a href="#RefactoringServer.confirmBufferIsSaved">confirmBufferIsSaved</a></td>
238 <td>Public method to check, if an editor has unsaved changes.</td> 244 <td>Public method to check, if an editor has unsaved changes.</td>
239 </tr><tr> 245 </tr><tr>
246 <td><a href="#RefactoringServer.connectEditor">connectEditor</a></td>
247 <td>Public method to connect an editor.</td>
248 </tr><tr>
240 <td><a href="#RefactoringServer.deactivate">deactivate</a></td> 249 <td><a href="#RefactoringServer.deactivate">deactivate</a></td>
241 <td>Public method to deactivate the refactoring server.</td> 250 <td>Public method to deactivate the refactoring server.</td>
251 </tr><tr>
252 <td><a href="#RefactoringServer.disconnectEditor">disconnectEditor</a></td>
253 <td>Public method to disconnect an editor.</td>
242 </tr><tr> 254 </tr><tr>
243 <td><a href="#RefactoringServer.getActions">getActions</a></td> 255 <td><a href="#RefactoringServer.getActions">getActions</a></td>
244 <td>Public method to get a list of all actions.</td> 256 <td>Public method to get a list of all actions.</td>
245 </tr><tr> 257 </tr><tr>
246 <td><a href="#RefactoringServer.getMainWindow">getMainWindow</a></td> 258 <td><a href="#RefactoringServer.getMainWindow">getMainWindow</a></td>
306 </p><a NAME="RefactoringServer.__configChanged" ID="RefactoringServer.__configChanged"></a> 318 </p><a NAME="RefactoringServer.__configChanged" ID="RefactoringServer.__configChanged"></a>
307 <h4>RefactoringServer.__configChanged</h4> 319 <h4>RefactoringServer.__configChanged</h4>
308 <b>__configChanged</b>(<i></i>) 320 <b>__configChanged</b>(<i></i>)
309 <p> 321 <p>
310 Private slot called, when the rope config file has changed. 322 Private slot called, when the rope config file has changed.
311 </p><a NAME="RefactoringServer.__convertLocalToAttribute" ID="RefactoringServer.__convertLocalToAttribute"></a> 323 </p><a NAME="RefactoringServer.__connectMouseClickHandler" ID="RefactoringServer.__connectMouseClickHandler"></a>
324 <h4>RefactoringServer.__connectMouseClickHandler</h4>
325 <b>__connectMouseClickHandler</b>(<i>editor</i>)
326 <p>
327 Private method to connect the mouse click handler to an editor.
328 </p><dl>
329 <dt><i>editor</i> (QScintilla.Editor)</dt>
330 <dd>
331 reference to the editor
332 </dd>
333 </dl><a NAME="RefactoringServer.__convertLocalToAttribute" ID="RefactoringServer.__convertLocalToAttribute"></a>
312 <h4>RefactoringServer.__convertLocalToAttribute</h4> 334 <h4>RefactoringServer.__convertLocalToAttribute</h4>
313 <b>__convertLocalToAttribute</b>(<i></i>) 335 <b>__convertLocalToAttribute</b>(<i></i>)
314 <p> 336 <p>
315 Private slot to convert a local variable to an attribute. 337 Private slot to convert a local variable to an attribute.
316 </p><a NAME="RefactoringServer.__defaultConfig" ID="RefactoringServer.__defaultConfig"></a> 338 </p><a NAME="RefactoringServer.__defaultConfig" ID="RefactoringServer.__defaultConfig"></a>
326 </dd> 348 </dd>
327 </dl><dl> 349 </dl><dl>
328 <dt>Return Type:</dt> 350 <dt>Return Type:</dt>
329 <dd> 351 <dd>
330 str 352 str
353 </dd>
354 </dl><a NAME="RefactoringServer.__disconnectMouseClickHandler" ID="RefactoringServer.__disconnectMouseClickHandler"></a>
355 <h4>RefactoringServer.__disconnectMouseClickHandler</h4>
356 <b>__disconnectMouseClickHandler</b>(<i>editor</i>)
357 <p>
358 Private method to disconnect the mouse click handler from an editor.
359 </p><dl>
360 <dt><i>editor</i> (QScintilla.Editor)</dt>
361 <dd>
362 reference to the editor
331 </dd> 363 </dd>
332 </dl><a NAME="RefactoringServer.__doExtract" ID="RefactoringServer.__doExtract"></a> 364 </dl><a NAME="RefactoringServer.__doExtract" ID="RefactoringServer.__doExtract"></a>
333 <h4>RefactoringServer.__doExtract</h4> 365 <h4>RefactoringServer.__doExtract</h4>
334 <b>__doExtract</b>(<i>title, kind</i>) 366 <b>__doExtract</b>(<i>title, kind</i>)
335 <p> 367 <p>
770 </dl><dl> 802 </dl><dl>
771 <dt>Return Type:</dt> 803 <dt>Return Type:</dt>
772 <dd> 804 <dd>
773 bool 805 bool
774 </dd> 806 </dd>
807 </dl><a NAME="RefactoringServer.connectEditor" ID="RefactoringServer.connectEditor"></a>
808 <h4>RefactoringServer.connectEditor</h4>
809 <b>connectEditor</b>(<i>editor</i>)
810 <p>
811 Public method to connect an editor.
812 </p><dl>
813 <dt><i>editor</i> (QScintilla.Editor)</dt>
814 <dd>
815 reference to the editor
816 </dd>
775 </dl><a NAME="RefactoringServer.deactivate" ID="RefactoringServer.deactivate"></a> 817 </dl><a NAME="RefactoringServer.deactivate" ID="RefactoringServer.deactivate"></a>
776 <h4>RefactoringServer.deactivate</h4> 818 <h4>RefactoringServer.deactivate</h4>
777 <b>deactivate</b>(<i></i>) 819 <b>deactivate</b>(<i></i>)
778 <p> 820 <p>
779 Public method to deactivate the refactoring server. 821 Public method to deactivate the refactoring server.
780 </p><a NAME="RefactoringServer.getActions" ID="RefactoringServer.getActions"></a> 822 </p><a NAME="RefactoringServer.disconnectEditor" ID="RefactoringServer.disconnectEditor"></a>
823 <h4>RefactoringServer.disconnectEditor</h4>
824 <b>disconnectEditor</b>(<i>editor</i>)
825 <p>
826 Public method to disconnect an editor.
827 </p><dl>
828 <dt><i>editor</i> (QScintilla.Editor)</dt>
829 <dd>
830 reference to the editor
831 </dd>
832 </dl><a NAME="RefactoringServer.getActions" ID="RefactoringServer.getActions"></a>
781 <h4>RefactoringServer.getActions</h4> 833 <h4>RefactoringServer.getActions</h4>
782 <b>getActions</b>(<i></i>) 834 <b>getActions</b>(<i></i>)
783 <p> 835 <p>
784 Public method to get a list of all actions. 836 Public method to get a list of all actions.
785 </p><dl> 837 </p><dl>

eric ide

mercurial