85 expandedEntries=None): |
85 expandedEntries=None): |
86 """ |
86 """ |
87 Constructor |
87 Constructor |
88 |
88 |
89 @param parent The parent widget of this dialog. (QWidget) |
89 @param parent The parent widget of this dialog. (QWidget) |
90 @keyparam fromEric flag indicating a dialog generation from within the |
90 @param fromEric flag indicating a dialog generation from within the |
91 eric6 ide (boolean) |
91 eric6 ide (boolean) |
92 @keyparam displayMode mode of the configuration dialog |
92 @param displayMode mode of the configuration dialog |
93 (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, |
93 (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, |
94 WebBrowserMode) |
94 WebBrowserMode) |
95 @exception RuntimeError raised to indicate an invalid dialog mode |
95 @exception RuntimeError raised to indicate an invalid dialog mode |
96 @keyparam expandedEntries list of entries to be shown expanded |
96 @param expandedEntries list of entries to be shown expanded |
97 (list of strings) |
97 (list of strings) |
98 """ |
98 """ |
99 super(ConfigurationWidget, self).__init__(parent) |
99 super(ConfigurationWidget, self).__init__(parent) |
100 self.fromEric = fromEric |
100 self.fromEric = fromEric |
101 self.displayMode = displayMode |
101 self.displayMode = displayMode |
924 Constructor |
924 Constructor |
925 |
925 |
926 @param parent The parent widget of this dialog. (QWidget) |
926 @param parent The parent widget of this dialog. (QWidget) |
927 @param name The name of this dialog. string |
927 @param name The name of this dialog. string |
928 @param modal Flag indicating a modal dialog. (boolean) |
928 @param modal Flag indicating a modal dialog. (boolean) |
929 @keyparam fromEric flag indicating a dialog generation from within the |
929 @param fromEric flag indicating a dialog generation from within the |
930 eric6 ide (boolean) |
930 eric6 ide (boolean) |
931 @keyparam displayMode mode of the configuration dialog |
931 @param displayMode mode of the configuration dialog |
932 (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, |
932 (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, |
933 WebBrowserMode) |
933 WebBrowserMode) |
934 @keyparam expandedEntries list of entries to be shown expanded |
934 @param expandedEntries list of entries to be shown expanded |
935 (list of strings) |
935 (list of strings) |
936 """ |
936 """ |
937 super(ConfigurationDialog, self).__init__(parent) |
937 super(ConfigurationDialog, self).__init__(parent) |
938 if name: |
938 if name: |
939 self.setObjectName(name) |
939 self.setObjectName(name) |