Sun, 19 Nov 2017 19:31:46 +0100
Fixed a little bug in the code assist client.
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
1 | <!DOCTYPE html> |
17 | 2 | <html><head> |
3 | <title>Plugin_Refactoring_Rope.PluginRefactoringRope</title> | |
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
4 | <meta charset="UTF-8"> |
17 | 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>Plugin_Refactoring_Rope.PluginRefactoringRope</h1> | |
23 | <p> | |
24 | Module implementing the Rope refactoring plugin. | |
25 | </p> | |
26 | <h3>Global Attributes</h3> | |
27 | <table> | |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
28 | <tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>doNotCompile</td></tr><tr><td>error</td></tr><tr><td>internalPackages</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>python2Compatible</td></tr><tr><td>refactoringRopePluginObject</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> |
17 | 29 | </table> |
30 | <h3>Classes</h3> | |
31 | <table> | |
32 | <tr> | |
33 | <td><a href="#RefactoringRopePlugin">RefactoringRopePlugin</a></td> | |
34 | <td>Class implementing the Rope refactoring plugin.</td> | |
35 | </tr> | |
36 | </table> | |
37 | <h3>Functions</h3> | |
38 | <table> | |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
39 | <tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
40 | <td><a href="#createAutoCompletionPage">createAutoCompletionPage</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
41 | <td>Module function to create the autocompletion configuration page.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
42 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
43 | <td><a href="#createCallTipsPage">createCallTipsPage</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
44 | <td>Module function to create the calltips configuration page.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
45 | </tr><tr> |
129
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
46 | <td><a href="#createMouseClickHandlerPage">createMouseClickHandlerPage</a></td> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
47 | <td>Module function to create the mouse click handler configuration page.</td> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
48 | </tr><tr> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
49 | <td><a href="#getConfigData">getConfigData</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
50 | <td>Module function returning data as required by the configuration dialog.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
51 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
52 | <td><a href="#prepareUninstall">prepareUninstall</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
53 | <td>Module function to prepare for an uninstallation.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
54 | </tr> |
17 | 55 | </table> |
56 | <hr /><hr /> | |
57 | <a NAME="RefactoringRopePlugin" ID="RefactoringRopePlugin"></a> | |
58 | <h2>RefactoringRopePlugin</h2> | |
59 | <p> | |
60 | Class implementing the Rope refactoring plugin. | |
61 | </p> | |
62 | <h3>Derived from</h3> | |
63 | QObject | |
64 | <h3>Class Attributes</h3> | |
65 | <table> | |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
66 | <tr><td>PreferencesKey</td></tr> |
17 | 67 | </table> |
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
68 | <h3>Class Methods</h3> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
69 | <table> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
70 | <tr><td>None</td></tr> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
71 | </table> |
17 | 72 | <h3>Methods</h3> |
73 | <table> | |
74 | <tr> | |
75 | <td><a href="#RefactoringRopePlugin.__init__">RefactoringRopePlugin</a></td> | |
76 | <td>Constructor</td> | |
77 | </tr><tr> | |
101
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
78 | <td><a href="#RefactoringRopePlugin.__connectEditor">__connectEditor</a></td> |
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
79 | <td>Private method to connect an editor.</td> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
80 | </tr><tr> |
101
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
81 | <td><a href="#RefactoringRopePlugin.__disconnectEditor">__disconnectEditor</a></td> |
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
82 | <td>Private method to disconnect an editor.</td> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
83 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
84 | <td><a href="#RefactoringRopePlugin.__editorAboutToBeSaved">__editorAboutToBeSaved</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
85 | <td>Private slot to get the old contents of the named file.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
86 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
87 | <td><a href="#RefactoringRopePlugin.__editorClosed">__editorClosed</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
88 | <td>Private slot called, when an editor was closed.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
89 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
90 | <td><a href="#RefactoringRopePlugin.__editorLanguageChanged">__editorLanguageChanged</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
91 | <td>Private slot to handle the language change of an editor.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
92 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
93 | <td><a href="#RefactoringRopePlugin.__editorOpened">__editorOpened</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
94 | <td>Private slot called, when a new editor was opened.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
95 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
96 | <td><a href="#RefactoringRopePlugin.__editorSaved">__editorSaved</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
97 | <td>Private slot to activate SOA.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
98 | </tr><tr> |
17 | 99 | <td><a href="#RefactoringRopePlugin.__initialize">__initialize</a></td> |
100 | <td>Private slot to (re)initialize the plugin.</td> | |
101 | </tr><tr> | |
102 | <td><a href="#RefactoringRopePlugin.__loadTranslator">__loadTranslator</a></td> | |
103 | <td>Private method to load the translation file.</td> | |
104 | </tr><tr> | |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
105 | <td><a href="#RefactoringRopePlugin.__shutdown">__shutdown</a></td> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
106 | <td>Private slot handling the shutdown signal of the plug-in manager.</td> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
107 | </tr><tr> |
17 | 108 | <td><a href="#RefactoringRopePlugin.activate">activate</a></td> |
109 | <td>Public method to activate this plugin.</td> | |
110 | </tr><tr> | |
111 | <td><a href="#RefactoringRopePlugin.deactivate">deactivate</a></td> | |
112 | <td>Public method to deactivate this plugin.</td> | |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
113 | </tr><tr> |
214
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
114 | <td><a href="#RefactoringRopePlugin.getCodeAssistServer">getCodeAssistServer</a></td> |
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
115 | <td>Public method to get a reference to the code assist server.</td> |
119
a03f2be1997b
Added some eye-candy and made the method to get a list of completions publicly available.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
118
diff
changeset
|
116 | </tr><tr> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
117 | <td><a href="#RefactoringRopePlugin.getPreferences">getPreferences</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
118 | <td>Public method to retrieve the various refactoring settings.</td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
119 | </tr><tr> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
120 | <td><a href="#RefactoringRopePlugin.setPreferences">setPreferences</a></td> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
121 | <td>Public method to store the various refactoring settings.</td> |
17 | 122 | </tr> |
123 | </table> | |
44
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
124 | <h3>Static Methods</h3> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
125 | <table> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
126 | <tr><td>None</td></tr> |
8aa985c8dee5
Fixed an issue causing failures for files with Windows end-of-line indicators.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
31
diff
changeset
|
127 | </table> |
17 | 128 | <a NAME="RefactoringRopePlugin.__init__" ID="RefactoringRopePlugin.__init__"></a> |
129 | <h4>RefactoringRopePlugin (Constructor)</h4> | |
130 | <b>RefactoringRopePlugin</b>(<i>ui</i>) | |
131 | <p> | |
132 | Constructor | |
133 | </p><dl> | |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
134 | <dt><i>ui</i> (UI.UserInterface)</dt> |
17 | 135 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
136 | reference to the user interface object |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
137 | </dd> |
101
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
138 | </dl><a NAME="RefactoringRopePlugin.__connectEditor" ID="RefactoringRopePlugin.__connectEditor"></a> |
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
139 | <h4>RefactoringRopePlugin.__connectEditor</h4> |
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
140 | <b>__connectEditor</b>(<i>editor</i>) |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
141 | <p> |
101
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
142 | Private method to connect an editor. |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
143 | </p><dl> |
217
874115c79ca7
Added support for the extraction of source code documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
214
diff
changeset
|
144 | <dt><i>editor</i> (QScintilla.Editor.Editor)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
145 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
146 | reference to the editor |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
147 | </dd> |
101
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
148 | </dl><a NAME="RefactoringRopePlugin.__disconnectEditor" ID="RefactoringRopePlugin.__disconnectEditor"></a> |
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
149 | <h4>RefactoringRopePlugin.__disconnectEditor</h4> |
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
150 | <b>__disconnectEditor</b>(<i>editor</i>) |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
151 | <p> |
101
5098ad8960ed
Fixed issues connecting/disconnecting editors.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
100
diff
changeset
|
152 | Private method to disconnect an editor. |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
153 | </p><dl> |
217
874115c79ca7
Added support for the extraction of source code documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
214
diff
changeset
|
154 | <dt><i>editor</i> (QScintilla.Editor.Editor)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
155 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
156 | reference to the editor |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
157 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
158 | </dl><a NAME="RefactoringRopePlugin.__editorAboutToBeSaved" ID="RefactoringRopePlugin.__editorAboutToBeSaved"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
159 | <h4>RefactoringRopePlugin.__editorAboutToBeSaved</h4> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
160 | <b>__editorAboutToBeSaved</b>(<i>filename</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
161 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
162 | Private slot to get the old contents of the named file. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
163 | </p><dl> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
164 | <dt><i>filename</i> (str)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
165 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
166 | name of the file about to be saved |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
167 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
168 | </dl><a NAME="RefactoringRopePlugin.__editorClosed" ID="RefactoringRopePlugin.__editorClosed"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
169 | <h4>RefactoringRopePlugin.__editorClosed</h4> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
170 | <b>__editorClosed</b>(<i>editor</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
171 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
172 | Private slot called, when an editor was closed. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
173 | </p><dl> |
217
874115c79ca7
Added support for the extraction of source code documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
214
diff
changeset
|
174 | <dt><i>editor</i> (QScintilla.Editor.Editor)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
175 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
176 | reference to the editor |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
177 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
178 | </dl><a NAME="RefactoringRopePlugin.__editorLanguageChanged" ID="RefactoringRopePlugin.__editorLanguageChanged"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
179 | <h4>RefactoringRopePlugin.__editorLanguageChanged</h4> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
180 | <b>__editorLanguageChanged</b>(<i>language</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
181 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
182 | Private slot to handle the language change of an editor. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
183 | </p><dl> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
184 | <dt><i>language</i> (str)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
185 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
186 | programming language of the editor |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
187 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
188 | </dl><a NAME="RefactoringRopePlugin.__editorOpened" ID="RefactoringRopePlugin.__editorOpened"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
189 | <h4>RefactoringRopePlugin.__editorOpened</h4> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
190 | <b>__editorOpened</b>(<i>editor</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
191 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
192 | Private slot called, when a new editor was opened. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
193 | </p><dl> |
217
874115c79ca7
Added support for the extraction of source code documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
214
diff
changeset
|
194 | <dt><i>editor</i> (QScintilla.Editor.Editor)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
195 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
196 | reference to the new editor |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
197 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
198 | </dl><a NAME="RefactoringRopePlugin.__editorSaved" ID="RefactoringRopePlugin.__editorSaved"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
199 | <h4>RefactoringRopePlugin.__editorSaved</h4> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
200 | <b>__editorSaved</b>(<i>filename</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
201 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
202 | Private slot to activate SOA. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
203 | </p><dl> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
204 | <dt><i>filename</i> (str)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
205 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
206 | name of the file that was saved |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
207 | </dd> |
17 | 208 | </dl><a NAME="RefactoringRopePlugin.__initialize" ID="RefactoringRopePlugin.__initialize"></a> |
209 | <h4>RefactoringRopePlugin.__initialize</h4> | |
210 | <b>__initialize</b>(<i></i>) | |
211 | <p> | |
212 | Private slot to (re)initialize the plugin. | |
213 | </p><a NAME="RefactoringRopePlugin.__loadTranslator" ID="RefactoringRopePlugin.__loadTranslator"></a> | |
214 | <h4>RefactoringRopePlugin.__loadTranslator</h4> | |
215 | <b>__loadTranslator</b>(<i></i>) | |
216 | <p> | |
217 | Private method to load the translation file. | |
214
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
218 | </p><a NAME="RefactoringRopePlugin.__shutdown" ID="RefactoringRopePlugin.__shutdown"></a> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
219 | <h4>RefactoringRopePlugin.__shutdown</h4> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
220 | <b>__shutdown</b>(<i></i>) |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
221 | <p> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
222 | Private slot handling the shutdown signal of the plug-in manager. |
214
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
223 | </p><a NAME="RefactoringRopePlugin.activate" ID="RefactoringRopePlugin.activate"></a> |
17 | 224 | <h4>RefactoringRopePlugin.activate</h4> |
225 | <b>activate</b>(<i></i>) | |
226 | <p> | |
227 | Public method to activate this plugin. | |
228 | </p><dl> | |
229 | <dt>Returns:</dt> | |
230 | <dd> | |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
231 | tuple of None and activation status |
17 | 232 | </dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
233 | </dl><dl> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
234 | <dt>Return Type:</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
235 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
236 | tuple of (None, bool) |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
237 | </dd> |
17 | 238 | </dl><a NAME="RefactoringRopePlugin.deactivate" ID="RefactoringRopePlugin.deactivate"></a> |
239 | <h4>RefactoringRopePlugin.deactivate</h4> | |
240 | <b>deactivate</b>(<i></i>) | |
241 | <p> | |
242 | Public method to deactivate this plugin. | |
214
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
243 | </p><a NAME="RefactoringRopePlugin.getCodeAssistServer" ID="RefactoringRopePlugin.getCodeAssistServer"></a> |
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
244 | <h4>RefactoringRopePlugin.getCodeAssistServer</h4> |
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
245 | <b>getCodeAssistServer</b>(<i></i>) |
119
a03f2be1997b
Added some eye-candy and made the method to get a list of completions publicly available.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
118
diff
changeset
|
246 | <p> |
214
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
247 | Public method to get a reference to the code assist server. |
119
a03f2be1997b
Added some eye-candy and made the method to get a list of completions publicly available.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
118
diff
changeset
|
248 | </p><dl> |
a03f2be1997b
Added some eye-candy and made the method to get a list of completions publicly available.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
118
diff
changeset
|
249 | <dt>Returns:</dt> |
a03f2be1997b
Added some eye-candy and made the method to get a list of completions publicly available.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
118
diff
changeset
|
250 | <dd> |
214
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
251 | reference to the code assist server |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
252 | </dd> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
253 | </dl><dl> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
254 | <dt>Return Type:</dt> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
255 | <dd> |
214
ccc3918ac38c
Updated source docu.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
204
diff
changeset
|
256 | CodeAssistServer |
119
a03f2be1997b
Added some eye-candy and made the method to get a list of completions publicly available.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
118
diff
changeset
|
257 | </dd> |
a03f2be1997b
Added some eye-candy and made the method to get a list of completions publicly available.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
118
diff
changeset
|
258 | </dl><a NAME="RefactoringRopePlugin.getPreferences" ID="RefactoringRopePlugin.getPreferences"></a> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
259 | <h4>RefactoringRopePlugin.getPreferences</h4> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
260 | <b>getPreferences</b>(<i>key</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
261 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
262 | Public method to retrieve the various refactoring settings. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
263 | </p><dl> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
264 | <dt><i>key</i> (str)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
265 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
266 | the key of the value to get |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
267 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
268 | </dl><dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
269 | <dt>Returns:</dt> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
270 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
271 | the requested refactoring setting |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
272 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
273 | </dl><a NAME="RefactoringRopePlugin.setPreferences" ID="RefactoringRopePlugin.setPreferences"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
274 | <h4>RefactoringRopePlugin.setPreferences</h4> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
275 | <b>setPreferences</b>(<i>key, value</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
276 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
277 | Public method to store the various refactoring settings. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
278 | </p><dl> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
279 | <dt><i>key</i> (str)</dt> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
280 | <dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
281 | the key of the setting to be set |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
282 | </dd><dt><i>value</i></dt> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
283 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
284 | the value to be set |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
285 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
286 | </dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
287 | <div align="right"><a href="#top">Up</a></div> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
288 | <hr /><hr /> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
289 | <a NAME="createAutoCompletionPage" ID="createAutoCompletionPage"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
290 | <h2>createAutoCompletionPage</h2> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
291 | <b>createAutoCompletionPage</b>(<i>configDlg</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
292 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
293 | Module function to create the autocompletion configuration page. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
294 | </p><dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
295 | <dt><i>configDlg</i></dt> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
296 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
297 | reference to the configuration dialog |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
298 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
299 | </dl><dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
300 | <dt>Returns:</dt> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
301 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
302 | reference to the configuration page |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
303 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
304 | </dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
305 | <div align="right"><a href="#top">Up</a></div> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
306 | <hr /><hr /> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
307 | <a NAME="createCallTipsPage" ID="createCallTipsPage"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
308 | <h2>createCallTipsPage</h2> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
309 | <b>createCallTipsPage</b>(<i>configDlg</i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
310 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
311 | Module function to create the calltips configuration page. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
312 | </p><dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
313 | <dt><i>configDlg</i></dt> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
314 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
315 | reference to the configuration dialog |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
316 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
317 | </dl><dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
318 | <dt>Returns:</dt> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
319 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
320 | reference to the configuration page |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
321 | </dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
322 | </dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
323 | <div align="right"><a href="#top">Up</a></div> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
324 | <hr /><hr /> |
129
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
325 | <a NAME="createMouseClickHandlerPage" ID="createMouseClickHandlerPage"></a> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
326 | <h2>createMouseClickHandlerPage</h2> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
327 | <b>createMouseClickHandlerPage</b>(<i>configDlg</i>) |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
328 | <p> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
329 | Module function to create the mouse click handler configuration page. |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
330 | </p><dl> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
331 | <dt><i>configDlg</i></dt> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
332 | <dd> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
333 | reference to the configuration dialog |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
334 | </dd> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
335 | </dl><dl> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
336 | <dt>Returns:</dt> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
337 | <dd> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
338 | reference to the configuration page |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
339 | </dd> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
340 | </dl> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
341 | <div align="right"><a href="#top">Up</a></div> |
23ee57a96ea3
Added capability to go to the definition of a class or function by clicking on it (while holding the Ctrl key or another configurable modifier sequence) (needs eric 6.1.0).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
119
diff
changeset
|
342 | <hr /><hr /> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
343 | <a NAME="getConfigData" ID="getConfigData"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
344 | <h2>getConfigData</h2> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
345 | <b>getConfigData</b>(<i></i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
346 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
347 | Module function returning data as required by the configuration dialog. |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
348 | </p><dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
349 | <dt>Returns:</dt> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
350 | <dd> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
351 | dictionary containing the relevant data |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
352 | </dd> |
204
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
353 | </dl><dl> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
354 | <dt>Return Type:</dt> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
355 | <dd> |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
356 | dict |
b4bf79b956bc
Regenerated source documentation.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
153
diff
changeset
|
357 | </dd> |
100
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
358 | </dl> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
359 | <div align="right"><a href="#top">Up</a></div> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
360 | <hr /><hr /> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
361 | <a NAME="prepareUninstall" ID="prepareUninstall"></a> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
362 | <h2>prepareUninstall</h2> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
363 | <b>prepareUninstall</b>(<i></i>) |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
364 | <p> |
2bfe9e3fad8d
Ported the code completion and calltips support of the eric4 variant of this plug-in.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
87
diff
changeset
|
365 | Module function to prepare for an uninstallation. |
17 | 366 | </p> |
367 | <div align="right"><a href="#top">Up</a></div> | |
368 | <hr /> | |
369 | </body></html> |