129 <p> |
129 <p> |
130 Constructor |
130 Constructor |
131 </p> |
131 </p> |
132 <dl> |
132 <dl> |
133 |
133 |
134 <dt><i>parent</i> (QWidget)</dt> |
134 <dt><i>parent</i> (QWidget (optional))</dt> |
135 <dd> |
135 <dd> |
136 reference to the parent widget |
136 reference to the parent widget (defaults to None) |
137 </dd> |
137 </dd> |
138 <dt><i>name</i> (str)</dt> |
138 <dt><i>name</i> (str (optional))</dt> |
139 <dd> |
139 <dd> |
140 name of the dialog |
140 name of the dialog (defaults to None) |
141 </dd> |
141 </dd> |
142 <dt><i>modal</i> (bool)</dt> |
142 <dt><i>modal</i> (bool (optional))</dt> |
143 <dd> |
143 <dd> |
144 flag indicating a modal dialog |
144 flag indicating a modal dialog (defaults to False) |
145 </dd> |
145 </dd> |
146 <dt><i>fromEric</i> (bool)</dt> |
146 <dt><i>fromEric</i> (bool (optional))</dt> |
147 <dd> |
147 <dd> |
148 flag indicating a dialog generation from within the |
148 flag indicating a dialog generation from within the |
149 eric IDE |
149 eric IDE (defaults to True) |
150 </dd> |
150 </dd> |
151 <dt><i>displayMode</i> (ConfigurationMode)</dt> |
151 <dt><i>displayMode</i> (ConfigurationMode (optional))</dt> |
152 <dd> |
152 <dd> |
153 mode of the configuration dialog |
153 mode of the configuration dialog (defaults to |
154 </dd> |
154 ConfigurationMode.DEFAULTMODE) |
155 <dt><i>expandedEntries</i> (list of str)</dt> |
155 </dd> |
156 <dd> |
156 <dt><i>expandedEntries</i> (list of str (optional))</dt> |
157 list of entries to be shown expanded |
157 <dd> |
|
158 list of entries to be shown expanded (defaults to None) |
158 </dd> |
159 </dd> |
159 </dl> |
160 </dl> |
160 <a NAME="ConfigurationDialog.__mainPasswordChanged" ID="ConfigurationDialog.__mainPasswordChanged"></a> |
161 <a NAME="ConfigurationDialog.__mainPasswordChanged" ID="ConfigurationDialog.__mainPasswordChanged"></a> |
161 <h4>ConfigurationDialog.__mainPasswordChanged</h4> |
162 <h4>ConfigurationDialog.__mainPasswordChanged</h4> |
162 <b>__mainPasswordChanged</b>(<i>oldPassword, newPassword</i>) |
163 <b>__mainPasswordChanged</b>(<i>oldPassword, newPassword</i>) |
249 <h3>Derived from</h3> |
250 <h3>Derived from</h3> |
250 enum.Enum |
251 enum.Enum |
251 <h3>Class Attributes</h3> |
252 <h3>Class Attributes</h3> |
252 |
253 |
253 <table> |
254 <table> |
254 <tr><td>DEFAULTMODE</td></tr><tr><td>EDITORMODE</td></tr><tr><td>HEXEDITORMODE</td></tr><tr><td>PDFVIEWERMODE</td></tr><tr><td>PIPMANAGERMODE</td></tr><tr><td>TRAYSTARTERMODE</td></tr><tr><td>WEBBROWSERMODE</td></tr> |
255 <tr><td>DEFAULTMODE</td></tr><tr><td>EDITORMODE</td></tr><tr><td>HEXEDITORMODE</td></tr><tr><td>PDFVIEWERMODE</td></tr><tr><td>PIPMANAGERMODE</td></tr><tr><td>SHELLMODE</td></tr><tr><td>TRAYSTARTERMODE</td></tr><tr><td>WEBBROWSERMODE</td></tr> |
255 </table> |
256 </table> |
256 <h3>Class Methods</h3> |
257 <h3>Class Methods</h3> |
257 |
258 |
258 <table> |
259 <table> |
259 <tr><td>None</td></tr> |
260 <tr><td>None</td></tr> |
498 <tr><td>None</td></tr> |
499 <tr><td>None</td></tr> |
499 </table> |
500 </table> |
500 |
501 |
501 <a NAME="ConfigurationWidget.__init__" ID="ConfigurationWidget.__init__"></a> |
502 <a NAME="ConfigurationWidget.__init__" ID="ConfigurationWidget.__init__"></a> |
502 <h4>ConfigurationWidget (Constructor)</h4> |
503 <h4>ConfigurationWidget (Constructor)</h4> |
503 <b>ConfigurationWidget</b>(<i>parent=None, fromEric=True, displayMode=ConfigurationMode.DEFAULTMODE, expandedEntries=None, </i>) |
504 <b>ConfigurationWidget</b>(<i>parent=None, fromEric=True, displayMode=ConfigurationMode.DEFAULTMODE, expandedEntries=None, withApply=True, </i>) |
504 |
505 |
505 <p> |
506 <p> |
506 Constructor |
507 Constructor |
507 </p> |
508 </p> |
508 <dl> |
509 <dl> |
509 |
510 |
510 <dt><i>parent</i> (QWidget)</dt> |
511 <dt><i>parent</i> (QWidget (optional))</dt> |
511 <dd> |
512 <dd> |
512 reference to the parent widget |
513 reference to the parent widget (defaults to None) |
513 </dd> |
514 </dd> |
514 <dt><i>fromEric</i> (bool)</dt> |
515 <dt><i>fromEric</i> (bool (optional))</dt> |
515 <dd> |
516 <dd> |
516 flag indicating a dialog generation from within the |
517 flag indicating a dialog generation from within the |
517 eric IDE |
518 eric IDE (defaults to True) |
518 </dd> |
519 </dd> |
519 <dt><i>displayMode</i> (ConfigurationMode)</dt> |
520 <dt><i>displayMode</i> (ConfigurationMode (optional))</dt> |
520 <dd> |
521 <dd> |
521 mode of the configuration dialog |
522 mode of the configuration dialog (defaults to |
522 </dd> |
523 ConfigurationMode.DEFAULTMODE) |
523 <dt><i>expandedEntries</i> (list of str)</dt> |
524 </dd> |
524 <dd> |
525 <dt><i>expandedEntries</i> (list of str (optional))</dt> |
525 list of entries to be shown expanded |
526 <dd> |
|
527 list of entries to be shown expanded (defaults to None) |
|
528 </dd> |
|
529 <dt><i>withApply</i> (bool (optional))</dt> |
|
530 <dd> |
|
531 flag indicating to show the 'Apply' button (defaults to True) |
526 </dd> |
532 </dd> |
527 </dl> |
533 </dl> |
528 <a NAME="ConfigurationWidget.__importConfigurationPage" ID="ConfigurationWidget.__importConfigurationPage"></a> |
534 <a NAME="ConfigurationWidget.__importConfigurationPage" ID="ConfigurationWidget.__importConfigurationPage"></a> |
529 <h4>ConfigurationWidget.__importConfigurationPage</h4> |
535 <h4>ConfigurationWidget.__importConfigurationPage</h4> |
530 <b>__importConfigurationPage</b>(<i>name</i>) |
536 <b>__importConfigurationPage</b>(<i>name</i>) |
617 text to search for (string) |
623 text to search for (string) |
618 </dd> |
624 </dd> |
619 </dl> |
625 </dl> |
620 <a NAME="ConfigurationWidget.__setupUi" ID="ConfigurationWidget.__setupUi"></a> |
626 <a NAME="ConfigurationWidget.__setupUi" ID="ConfigurationWidget.__setupUi"></a> |
621 <h4>ConfigurationWidget.__setupUi</h4> |
627 <h4>ConfigurationWidget.__setupUi</h4> |
622 <b>__setupUi</b>(<i></i>) |
628 <b>__setupUi</b>(<i>withApply=True</i>) |
623 |
629 |
624 <p> |
630 <p> |
625 Private method to perform the general setup of the configuration |
631 Private method to perform the general setup of the configuration |
626 widget. |
632 widget. |
627 </p> |
633 </p> |
|
634 <dl> |
|
635 |
|
636 <dt><i>withApply</i> (bool (optional))</dt> |
|
637 <dd> |
|
638 flag indicating to show the 'Apply' button (defaults to True) |
|
639 </dd> |
|
640 </dl> |
628 <a NAME="ConfigurationWidget.__showConfigurationPage" ID="ConfigurationWidget.__showConfigurationPage"></a> |
641 <a NAME="ConfigurationWidget.__showConfigurationPage" ID="ConfigurationWidget.__showConfigurationPage"></a> |
629 <h4>ConfigurationWidget.__showConfigurationPage</h4> |
642 <h4>ConfigurationWidget.__showConfigurationPage</h4> |
630 <b>__showConfigurationPage</b>(<i>itm</i>) |
643 <b>__showConfigurationPage</b>(<i>itm</i>) |
631 |
644 |
632 <p> |
645 <p> |