52 |
52 |
53 class ConfigurationWidget(QWidget): |
53 class ConfigurationWidget(QWidget): |
54 """ |
54 """ |
55 Class implementing a dialog for the configuration of eric5. |
55 Class implementing a dialog for the configuration of eric5. |
56 |
56 |
57 @signal preferencesChanged emitted after settings have been changed |
57 @signal preferencesChanged() emitted after settings have been changed |
58 """ |
58 """ |
59 preferencesChanged = pyqtSignal() |
59 preferencesChanged = pyqtSignal() |
60 |
60 |
61 def __init__(self, parent = None, fromEric = True, helpBrowserMode = False): |
61 def __init__(self, parent = None, fromEric = True, helpBrowserMode = False): |
62 """ |
62 """ |
579 |
579 |
580 class ConfigurationDialog(QDialog): |
580 class ConfigurationDialog(QDialog): |
581 """ |
581 """ |
582 Class for the dialog variant. |
582 Class for the dialog variant. |
583 |
583 |
584 @signal preferencesChanged emitted after settings have been changed |
584 @signal preferencesChanged() emitted after settings have been changed |
585 """ |
585 """ |
586 preferencesChanged = pyqtSignal() |
586 preferencesChanged = pyqtSignal() |
587 |
587 |
588 def __init__(self, parent = None, name = None, modal = False, |
588 def __init__(self, parent = None, name = None, modal = False, |
589 fromEric = True, helpBrowserMode = False): |
589 fromEric = True, helpBrowserMode = False): |