|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' |
|
3 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> |
|
4 <html><head> |
|
5 <title>eric4.PluginManager.PluginUninstallDialog</title> |
|
6 <style> |
|
7 body { |
|
8 background:white; |
|
9 margin: 0em 1em 10em 1em; |
|
10 color: black; |
|
11 } |
|
12 |
|
13 h1 { color: white; background: #4FA4FF; } |
|
14 h2 { color: white; background: #4FA4FF; } |
|
15 h3 { color: white; background: #00557F; } |
|
16 h4 { color: white; background: #00557F; } |
|
17 |
|
18 a { color: #AA5500; } |
|
19 |
|
20 </style> |
|
21 </head> |
|
22 <body><a NAME="top" ID="top"></a> |
|
23 <h1>eric4.PluginManager.PluginUninstallDialog</h1> |
|
24 <p> |
|
25 Module implementing a dialog for plugin deinstallation. |
|
26 </p> |
|
27 <h3>Global Attributes</h3> |
|
28 <table> |
|
29 <tr><td>None</td></tr> |
|
30 </table> |
|
31 <h3>Classes</h3> |
|
32 <table> |
|
33 <tr> |
|
34 <td><a href="#PluginUninstallDialog">PluginUninstallDialog</a></td> |
|
35 <td>Class for the dialog variant.</td> |
|
36 </tr><tr> |
|
37 <td><a href="#PluginUninstallWidget">PluginUninstallWidget</a></td> |
|
38 <td>Class implementing a dialog for plugin deinstallation.</td> |
|
39 </tr><tr> |
|
40 <td><a href="#PluginUninstallWindow">PluginUninstallWindow</a></td> |
|
41 <td>Main window class for the standalone dialog.</td> |
|
42 </tr> |
|
43 </table> |
|
44 <h3>Functions</h3> |
|
45 <table> |
|
46 <tr><td>None</td></tr> |
|
47 </table> |
|
48 <hr /><hr /> |
|
49 <a NAME="PluginUninstallDialog" ID="PluginUninstallDialog"></a> |
|
50 <h2>PluginUninstallDialog</h2> |
|
51 <p> |
|
52 Class for the dialog variant. |
|
53 </p> |
|
54 <h3>Derived from</h3> |
|
55 QDialog |
|
56 <h3>Class Attributes</h3> |
|
57 <table> |
|
58 <tr><td>None</td></tr> |
|
59 </table> |
|
60 <h3>Methods</h3> |
|
61 <table> |
|
62 <tr> |
|
63 <td><a href="#PluginUninstallDialog.__init__">PluginUninstallDialog</a></td> |
|
64 <td>Constructor</td> |
|
65 </tr> |
|
66 </table> |
|
67 <a NAME="PluginUninstallDialog.__init__" ID="PluginUninstallDialog.__init__"></a> |
|
68 <h4>PluginUninstallDialog (Constructor)</h4> |
|
69 <b>PluginUninstallDialog</b>(<i>pluginManager, parent = None</i>) |
|
70 <p> |
|
71 Constructor |
|
72 </p><dl> |
|
73 <dt><i>pluginManager</i></dt> |
|
74 <dd> |
|
75 reference to the plugin manager object |
|
76 </dd><dt><i>parent</i></dt> |
|
77 <dd> |
|
78 reference to the parent widget (QWidget) |
|
79 </dd> |
|
80 </dl> |
|
81 <div align="right"><a href="#top">Up</a></div> |
|
82 <hr /><hr /> |
|
83 <a NAME="PluginUninstallWidget" ID="PluginUninstallWidget"></a> |
|
84 <h2>PluginUninstallWidget</h2> |
|
85 <p> |
|
86 Class implementing a dialog for plugin deinstallation. |
|
87 </p> |
|
88 <h3>Derived from</h3> |
|
89 QWidget, Ui_PluginUninstallDialog |
|
90 <h3>Class Attributes</h3> |
|
91 <table> |
|
92 <tr><td>None</td></tr> |
|
93 </table> |
|
94 <h3>Methods</h3> |
|
95 <table> |
|
96 <tr> |
|
97 <td><a href="#PluginUninstallWidget.__init__">PluginUninstallWidget</a></td> |
|
98 <td>Constructor</td> |
|
99 </tr><tr> |
|
100 <td><a href="#PluginUninstallWidget.__uninstallPlugin">__uninstallPlugin</a></td> |
|
101 <td>Private slot to uninstall the selected plugin.</td> |
|
102 </tr><tr> |
|
103 <td><a href="#PluginUninstallWidget.on_buttonBox_accepted">on_buttonBox_accepted</a></td> |
|
104 <td>Private slot to handle the accepted signal of the button box.</td> |
|
105 </tr><tr> |
|
106 <td><a href="#PluginUninstallWidget.on_pluginDirectoryCombo_currentIndexChanged">on_pluginDirectoryCombo_currentIndexChanged</a></td> |
|
107 <td>Private slot to populate the plugin name combo upon a change of the plugin area.</td> |
|
108 </tr> |
|
109 </table> |
|
110 <a NAME="PluginUninstallWidget.__init__" ID="PluginUninstallWidget.__init__"></a> |
|
111 <h4>PluginUninstallWidget (Constructor)</h4> |
|
112 <b>PluginUninstallWidget</b>(<i>pluginManager, parent = None</i>) |
|
113 <p> |
|
114 Constructor |
|
115 </p><dl> |
|
116 <dt><i>pluginManager</i></dt> |
|
117 <dd> |
|
118 reference to the plugin manager object |
|
119 </dd><dt><i>parent</i></dt> |
|
120 <dd> |
|
121 parent of this dialog (QWidget) |
|
122 </dd> |
|
123 </dl><a NAME="PluginUninstallWidget.__uninstallPlugin" ID="PluginUninstallWidget.__uninstallPlugin"></a> |
|
124 <h4>PluginUninstallWidget.__uninstallPlugin</h4> |
|
125 <b>__uninstallPlugin</b>(<i></i>) |
|
126 <p> |
|
127 Private slot to uninstall the selected plugin. |
|
128 </p><dl> |
|
129 <dt>Returns:</dt> |
|
130 <dd> |
|
131 flag indicating success (boolean) |
|
132 </dd> |
|
133 </dl><a NAME="PluginUninstallWidget.on_buttonBox_accepted" ID="PluginUninstallWidget.on_buttonBox_accepted"></a> |
|
134 <h4>PluginUninstallWidget.on_buttonBox_accepted</h4> |
|
135 <b>on_buttonBox_accepted</b>(<i></i>) |
|
136 <p> |
|
137 Private slot to handle the accepted signal of the button box. |
|
138 </p><a NAME="PluginUninstallWidget.on_pluginDirectoryCombo_currentIndexChanged" ID="PluginUninstallWidget.on_pluginDirectoryCombo_currentIndexChanged"></a> |
|
139 <h4>PluginUninstallWidget.on_pluginDirectoryCombo_currentIndexChanged</h4> |
|
140 <b>on_pluginDirectoryCombo_currentIndexChanged</b>(<i>index</i>) |
|
141 <p> |
|
142 Private slot to populate the plugin name combo upon a change of the |
|
143 plugin area. |
|
144 </p><dl> |
|
145 <dt><i>index</i></dt> |
|
146 <dd> |
|
147 index of the selected item (integer) |
|
148 </dd> |
|
149 </dl> |
|
150 <div align="right"><a href="#top">Up</a></div> |
|
151 <hr /><hr /> |
|
152 <a NAME="PluginUninstallWindow" ID="PluginUninstallWindow"></a> |
|
153 <h2>PluginUninstallWindow</h2> |
|
154 <p> |
|
155 Main window class for the standalone dialog. |
|
156 </p> |
|
157 <h3>Derived from</h3> |
|
158 QMainWindow |
|
159 <h3>Class Attributes</h3> |
|
160 <table> |
|
161 <tr><td>None</td></tr> |
|
162 </table> |
|
163 <h3>Methods</h3> |
|
164 <table> |
|
165 <tr> |
|
166 <td><a href="#PluginUninstallWindow.__init__">PluginUninstallWindow</a></td> |
|
167 <td>Constructor</td> |
|
168 </tr> |
|
169 </table> |
|
170 <a NAME="PluginUninstallWindow.__init__" ID="PluginUninstallWindow.__init__"></a> |
|
171 <h4>PluginUninstallWindow (Constructor)</h4> |
|
172 <b>PluginUninstallWindow</b>(<i>parent = None</i>) |
|
173 <p> |
|
174 Constructor |
|
175 </p><dl> |
|
176 <dt><i>parent</i></dt> |
|
177 <dd> |
|
178 reference to the parent widget (QWidget) |
|
179 </dd> |
|
180 </dl> |
|
181 <div align="right"><a href="#top">Up</a></div> |
|
182 <hr /> |
|
183 </body></html> |