BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | List of all members
BALL::PreferencesObject Class Referenceabstract

#include <BALL/CONCEPT/preferencesObject.h>

Inheritance diagram for BALL::PreferencesObject:
QObject

Public Member Functions

 PreferencesObject ()
 
virtual ~PreferencesObject ()
 
virtual bool getValue (String &) const =0
 Overload this in derived classes! More...
 
virtual bool setValue (const String &)=0
 Overload this in derived classes! More...
 

Detailed Description

Base class for objects that can store settings in an INIFile. To support storing of a classes' state to an INIFile, derive from this class and implement the getValue/setValue-methods.

Note that a more sophisticated and simpler to use scheme for storing state that is accessible through GUI elements, e.g., LineEdits, already exists in libVIEW. Use this class if you want/need to be independent of the view functionality, or if the elements supported by VIEW::PreferencesEntry do not suffice.

Make sure to name all derived objects, by calling setObjectName() Otherwise (re-)storing the values wont work.

Definition at line 25 of file preferencesObject.h.

Constructor & Destructor Documentation

BALL::PreferencesObject::PreferencesObject ( )
inline

Definition at line 31 of file preferencesObject.h.

virtual BALL::PreferencesObject::~PreferencesObject ( )
inlinevirtual

Definition at line 34 of file preferencesObject.h.

Member Function Documentation

virtual bool BALL::PreferencesObject::getValue ( String ) const
pure virtual

Overload this in derived classes!

virtual bool BALL::PreferencesObject::setValue ( const String )
pure virtual

Overload this in derived classes!