diff -r 78e4a6823a98 -r 8318a6881e63 RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.PluginRefactoringRope.html --- a/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.PluginRefactoringRope.html Mon Nov 12 19:03:47 2018 +0100 +++ b/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.PluginRefactoringRope.html Mon Nov 12 19:05:14 2018 +0100 @@ -78,9 +78,18 @@ <td><a href="#RefactoringRopePlugin.__connectEditor">__connectEditor</a></td> <td>Private method to connect an editor.</td> </tr><tr> +<td><a href="#RefactoringRopePlugin.__connectMouseClickHandler">__connectMouseClickHandler</a></td> +<td>Private method to connect the mouse click handler to an editor.</td> +</tr><tr> +<td><a href="#RefactoringRopePlugin.__determineLanguage">__determineLanguage</a></td> +<td>Private method to determine the valid language strings.</td> +</tr><tr> <td><a href="#RefactoringRopePlugin.__disconnectEditor">__disconnectEditor</a></td> <td>Private method to disconnect an editor.</td> </tr><tr> +<td><a href="#RefactoringRopePlugin.__disconnectMouseClickHandler">__disconnectMouseClickHandler</a></td> +<td>Private method to disconnect the mouse click handler from an editor.</td> +</tr><tr> <td><a href="#RefactoringRopePlugin.__editorAboutToBeSaved">__editorAboutToBeSaved</a></td> <td>Private slot to get the old contents of the named file.</td> </tr><tr> @@ -102,9 +111,21 @@ <td><a href="#RefactoringRopePlugin.__loadTranslator">__loadTranslator</a></td> <td>Private method to load the translation file.</td> </tr><tr> +<td><a href="#RefactoringRopePlugin.__setAutoCompletionHook">__setAutoCompletionHook</a></td> +<td>Private method to set the autocompletion hook.</td> +</tr><tr> +<td><a href="#RefactoringRopePlugin.__setCalltipsHook">__setCalltipsHook</a></td> +<td>Private method to set the calltip hook.</td> +</tr><tr> <td><a href="#RefactoringRopePlugin.__shutdown">__shutdown</a></td> <td>Private slot handling the shutdown signal of the plug-in manager.</td> </tr><tr> +<td><a href="#RefactoringRopePlugin.__unsetAutoCompletionHook">__unsetAutoCompletionHook</a></td> +<td>Private method to unset the autocompletion hook.</td> +</tr><tr> +<td><a href="#RefactoringRopePlugin.__unsetCalltipsHook">__unsetCalltipsHook</a></td> +<td>Private method to unset the calltip hook.</td> +</tr><tr> <td><a href="#RefactoringRopePlugin.activate">activate</a></td> <td>Public method to activate this plugin.</td> </tr><tr> @@ -145,6 +166,31 @@ <dd> reference to the editor </dd> +</dl><a NAME="RefactoringRopePlugin.__connectMouseClickHandler" ID="RefactoringRopePlugin.__connectMouseClickHandler"></a> +<h4>RefactoringRopePlugin.__connectMouseClickHandler</h4> +<b>__connectMouseClickHandler</b>(<i>editor</i>) +<p> + Private method to connect the mouse click handler to an editor. +</p><dl> +<dt><i>editor</i> (QScintilla.Editor)</dt> +<dd> +reference to the editor +</dd> +</dl><a NAME="RefactoringRopePlugin.__determineLanguage" ID="RefactoringRopePlugin.__determineLanguage"></a> +<h4>RefactoringRopePlugin.__determineLanguage</h4> +<b>__determineLanguage</b>(<i></i>) +<p> + Private method to determine the valid language strings. +</p><dl> +<dt>Returns:</dt> +<dd> +list of valid language strings +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +list of str +</dd> </dl><a NAME="RefactoringRopePlugin.__disconnectEditor" ID="RefactoringRopePlugin.__disconnectEditor"></a> <h4>RefactoringRopePlugin.__disconnectEditor</h4> <b>__disconnectEditor</b>(<i>editor</i>) @@ -155,6 +201,16 @@ <dd> reference to the editor </dd> +</dl><a NAME="RefactoringRopePlugin.__disconnectMouseClickHandler" ID="RefactoringRopePlugin.__disconnectMouseClickHandler"></a> +<h4>RefactoringRopePlugin.__disconnectMouseClickHandler</h4> +<b>__disconnectMouseClickHandler</b>(<i>editor</i>) +<p> + Private method to disconnect the mouse click handler from an editor. +</p><dl> +<dt><i>editor</i> (QScintilla.Editor)</dt> +<dd> +reference to the editor +</dd> </dl><a NAME="RefactoringRopePlugin.__editorAboutToBeSaved" ID="RefactoringRopePlugin.__editorAboutToBeSaved"></a> <h4>RefactoringRopePlugin.__editorAboutToBeSaved</h4> <b>__editorAboutToBeSaved</b>(<i>filename</i>) @@ -215,12 +271,52 @@ <b>__loadTranslator</b>(<i></i>) <p> Private method to load the translation file. -</p><a NAME="RefactoringRopePlugin.__shutdown" ID="RefactoringRopePlugin.__shutdown"></a> +</p><a NAME="RefactoringRopePlugin.__setAutoCompletionHook" ID="RefactoringRopePlugin.__setAutoCompletionHook"></a> +<h4>RefactoringRopePlugin.__setAutoCompletionHook</h4> +<b>__setAutoCompletionHook</b>(<i>editor</i>) +<p> + Private method to set the autocompletion hook. +</p><dl> +<dt><i>editor</i> (QScintilla.Editor)</dt> +<dd> +reference to the editor +</dd> +</dl><a NAME="RefactoringRopePlugin.__setCalltipsHook" ID="RefactoringRopePlugin.__setCalltipsHook"></a> +<h4>RefactoringRopePlugin.__setCalltipsHook</h4> +<b>__setCalltipsHook</b>(<i>editor</i>) +<p> + Private method to set the calltip hook. +</p><dl> +<dt><i>editor</i> (QScintilla.Editor)</dt> +<dd> +reference to the editor +</dd> +</dl><a NAME="RefactoringRopePlugin.__shutdown" ID="RefactoringRopePlugin.__shutdown"></a> <h4>RefactoringRopePlugin.__shutdown</h4> <b>__shutdown</b>(<i></i>) <p> Private slot handling the shutdown signal of the plug-in manager. -</p><a NAME="RefactoringRopePlugin.activate" ID="RefactoringRopePlugin.activate"></a> +</p><a NAME="RefactoringRopePlugin.__unsetAutoCompletionHook" ID="RefactoringRopePlugin.__unsetAutoCompletionHook"></a> +<h4>RefactoringRopePlugin.__unsetAutoCompletionHook</h4> +<b>__unsetAutoCompletionHook</b>(<i>editor</i>) +<p> + Private method to unset the autocompletion hook. +</p><dl> +<dt><i>editor</i> (QScintilla.Editor)</dt> +<dd> +reference to the editor +</dd> +</dl><a NAME="RefactoringRopePlugin.__unsetCalltipsHook" ID="RefactoringRopePlugin.__unsetCalltipsHook"></a> +<h4>RefactoringRopePlugin.__unsetCalltipsHook</h4> +<b>__unsetCalltipsHook</b>(<i>editor</i>) +<p> + Private method to unset the calltip hook. +</p><dl> +<dt><i>editor</i> (QScintilla.Editor)</dt> +<dd> +reference to the editor +</dd> +</dl><a NAME="RefactoringRopePlugin.activate" ID="RefactoringRopePlugin.activate"></a> <h4>RefactoringRopePlugin.activate</h4> <b>activate</b>(<i></i>) <p>