Sun, 06 Jul 2014 14:23:25 +0200
Ported to PyQt5 and eric6.
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> | |
76 | 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>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> | |
39 | <tr><td>None</td></tr> | |
40 | </table> | |
41 | <hr /><hr /> | |
42 | <a NAME="RefactoringRopePlugin" ID="RefactoringRopePlugin"></a> | |
43 | <h2>RefactoringRopePlugin</h2> | |
44 | <p> | |
45 | Class implementing the Rope refactoring plugin. | |
46 | </p> | |
47 | <h3>Derived from</h3> | |
48 | QObject | |
49 | <h3>Class Attributes</h3> | |
50 | <table> | |
51 | <tr><td>None</td></tr> | |
52 | </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
|
53 | <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
|
54 | <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
|
55 | <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
|
56 | </table> |
17 | 57 | <h3>Methods</h3> |
58 | <table> | |
59 | <tr> | |
60 | <td><a href="#RefactoringRopePlugin.__init__">RefactoringRopePlugin</a></td> | |
61 | <td>Constructor</td> | |
62 | </tr><tr> | |
31
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
63 | <td><a href="#RefactoringRopePlugin.__checkUiVersion">__checkUiVersion</a></td> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
64 | <td>Private method to check, if the IDE has a suitable version.</td> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
65 | </tr><tr> |
17 | 66 | <td><a href="#RefactoringRopePlugin.__initialize">__initialize</a></td> |
67 | <td>Private slot to (re)initialize the plugin.</td> | |
68 | </tr><tr> | |
69 | <td><a href="#RefactoringRopePlugin.__loadTranslator">__loadTranslator</a></td> | |
70 | <td>Private method to load the translation file.</td> | |
71 | </tr><tr> | |
72 | <td><a href="#RefactoringRopePlugin.__projectClosed">__projectClosed</a></td> | |
87
1fbf5fdbe721
Ported to PyQt5 and eric6.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
76
diff
changeset
|
73 | <td>Private slot to handle the projectClosed signal.</td> |
17 | 74 | </tr><tr> |
75 | <td><a href="#RefactoringRopePlugin.__projectOpened">__projectOpened</a></td> | |
87
1fbf5fdbe721
Ported to PyQt5 and eric6.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
76
diff
changeset
|
76 | <td>Private slot to handle the projectOpened signal.</td> |
17 | 77 | </tr><tr> |
78 | <td><a href="#RefactoringRopePlugin.activate">activate</a></td> | |
79 | <td>Public method to activate this plugin.</td> | |
80 | </tr><tr> | |
81 | <td><a href="#RefactoringRopePlugin.deactivate">deactivate</a></td> | |
82 | <td>Public method to deactivate this plugin.</td> | |
83 | </tr> | |
84 | </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
|
85 | <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
|
86 | <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
|
87 | <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
|
88 | </table> |
17 | 89 | <a NAME="RefactoringRopePlugin.__init__" ID="RefactoringRopePlugin.__init__"></a> |
90 | <h4>RefactoringRopePlugin (Constructor)</h4> | |
91 | <b>RefactoringRopePlugin</b>(<i>ui</i>) | |
92 | <p> | |
93 | Constructor | |
94 | </p><dl> | |
95 | <dt><i>ui</i></dt> | |
96 | <dd> | |
97 | reference to the user interface object (UI.UserInterface) | |
98 | </dd> | |
31
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
99 | </dl><a NAME="RefactoringRopePlugin.__checkUiVersion" ID="RefactoringRopePlugin.__checkUiVersion"></a> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
100 | <h4>RefactoringRopePlugin.__checkUiVersion</h4> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
101 | <b>__checkUiVersion</b>(<i></i>) |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
102 | <p> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
103 | Private method to check, if the IDE has a suitable version. |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
104 | </p><dl> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
105 | <dt>Returns:</dt> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
106 | <dd> |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
107 | flag indicating a suitable version (boolean) |
0389d4a924cc
Dropped support for eric 5.0.x.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
17
diff
changeset
|
108 | </dd> |
17 | 109 | </dl><a NAME="RefactoringRopePlugin.__initialize" ID="RefactoringRopePlugin.__initialize"></a> |
110 | <h4>RefactoringRopePlugin.__initialize</h4> | |
111 | <b>__initialize</b>(<i></i>) | |
112 | <p> | |
113 | Private slot to (re)initialize the plugin. | |
114 | </p><a NAME="RefactoringRopePlugin.__loadTranslator" ID="RefactoringRopePlugin.__loadTranslator"></a> | |
115 | <h4>RefactoringRopePlugin.__loadTranslator</h4> | |
116 | <b>__loadTranslator</b>(<i></i>) | |
117 | <p> | |
118 | Private method to load the translation file. | |
119 | </p><a NAME="RefactoringRopePlugin.__projectClosed" ID="RefactoringRopePlugin.__projectClosed"></a> | |
120 | <h4>RefactoringRopePlugin.__projectClosed</h4> | |
121 | <b>__projectClosed</b>(<i></i>) | |
122 | <p> | |
87
1fbf5fdbe721
Ported to PyQt5 and eric6.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
76
diff
changeset
|
123 | Private slot to handle the projectClosed signal. |
17 | 124 | </p><a NAME="RefactoringRopePlugin.__projectOpened" ID="RefactoringRopePlugin.__projectOpened"></a> |
125 | <h4>RefactoringRopePlugin.__projectOpened</h4> | |
126 | <b>__projectOpened</b>(<i></i>) | |
127 | <p> | |
87
1fbf5fdbe721
Ported to PyQt5 and eric6.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
76
diff
changeset
|
128 | Private slot to handle the projectOpened signal. |
17 | 129 | </p><a NAME="RefactoringRopePlugin.activate" ID="RefactoringRopePlugin.activate"></a> |
130 | <h4>RefactoringRopePlugin.activate</h4> | |
131 | <b>activate</b>(<i></i>) | |
132 | <p> | |
133 | Public method to activate this plugin. | |
134 | </p><dl> | |
135 | <dt>Returns:</dt> | |
136 | <dd> | |
137 | tuple of None and activation status (boolean) | |
138 | </dd> | |
139 | </dl><a NAME="RefactoringRopePlugin.deactivate" ID="RefactoringRopePlugin.deactivate"></a> | |
140 | <h4>RefactoringRopePlugin.deactivate</h4> | |
141 | <b>deactivate</b>(<i></i>) | |
142 | <p> | |
143 | Public method to deactivate this plugin. | |
144 | </p> | |
145 | <div align="right"><a href="#top">Up</a></div> | |
146 | <hr /> | |
147 | </body></html> |