#include <preferencesEntry.h>
Inheritance diagram for VIEW::PreferencesEntry:

Public Types | |
|
typedef List< std::pair< QWidget *, String > > | StackPages |
Public Member Functions | |
| virtual void | writePreferenceEntries (INIFile &inifile) |
| Store the settings of all registered objects. | |
| virtual void | readPreferenceEntries (const INIFile &inifile) |
| Restore the settings of all registered objects. | |
| void | setINIFileSectionName (const String &name) |
| Set the name for the section in the INIFile. | |
| const String & | getINIFileSectionName () const |
| Get the name for the section in the INIFile. | |
| void | setWidgetStackName (const String &name) |
| If the derived class is to be shown in a QStackedWidget, call this method to set the name for its entry. | |
| StackPages & | getStackPages () |
| Return all pages, that are to be shown in a parent QStackedWidget. | |
| void | setWidgetStack (QStackedWidget *stack) |
| Call this method in the constructor of the derived class has its own QStackedWidget. | |
| virtual void | showStackPage (Position nr) |
| Show the specified page in the QStackedWidget. | |
| virtual void | showStackPage (QWidget *widget) |
| Show the specified page in the QStackedWidget. | |
| virtual Position | currentStackPage () const |
| Get the currently shown page in the QStackedWidget. | |
| virtual void | restoreDefaultValues (bool all=false) |
| Set all registered objects to their default values. | |
| virtual void | storeValues () |
| Store the values for later restoration by the restoreValues method. | |
| virtual void | restoreValues (bool all=false) |
| Restore the values of the child widgets. | |
| virtual void | dump (std::ostream &s=std::cout, Size depth=0) const throw () |
| Internal state dump. | |
Protected Types | |
|
typedef HashMap< const QWidget *, String > | ValueMap |
Protected Member Functions | |
| void | registerWidgets_ () |
| Register all supported child widgets for the storing of their data. | |
| void | registerWidget_ (QWidget *widget) |
| void | unregisterWidget_ (QWidget *widget) |
| void | registerWidgetForHelpSystem_ (const QWidget *widget, const String &url) |
| Register a widget for the internal help system. | |
| void | restoreValues_ (bool all, const ValueMap &map) |
| void | insertStackEntry_ (QWidget *, const String &name) |
| bool | isSupported_ (QWidget &widget) |
| bool | getValue_ (const QWidget *widget, String &value) |
| bool | setValue_ (QWidget *widget, const String &value) |
Protected Attributes | |
| String | inifile_section_name_ |
| HashSet< QWidget * > | registered_objects_ |
| ValueMap | default_values_ |
| ValueMap | last_values_ |
| QStackedWidget * | widget_stack_ |
| StackPages | stack_pages_ |
Friends | |
| class | PreferencesObject |
It allows to register child widgets to support reading and writing their data into a INIFile. Also restoring of a default value and the last applied value is supported. Currently the following Qt widgets are supported:
|
||||||||||||
|
Internal state dump. Dump the current internal state of this mainControl to the output ostream s with dumping depth depth.
|
|
||||||||||||
|
Register a widget for the internal help system.
|
|
|
Register all supported child widgets for the storing of their data. Must be called at the end of the child classes constructor. |
|
|
Restore the values of the child widgets. Called e.g. when a user presses a Cancel button. Reimplemented in VIEW::LightSettings. |
|
|
Call this method in the constructor of the derived class has its own QStackedWidget.
|
|
|
If the derived class is to be shown in a QStackedWidget, call this method to set the name for its entry.
|
|
|
Store the values for later restoration by the restoreValues method. Called e.g. by the Preferences dialog apply button. |