Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
berry::State Class Reference

#include <berryState.h>

Inheritance diagram for berry::State:
Collaboration diagram for berry::State:

Public Member Functions

 berryObjectMacro (State)
 
virtual void AddListener (IStateListener *listener)
 
void AddListener (const IStateListener::Events::StateEvent::AbstractDelegate &delegate)
 
QString GetId () const
 
virtual Object::Pointer GetValue () const
 
virtual void RemoveListener (IStateListener *listener)
 
void RemoveListener (const IStateListener::Events::StateEvent::AbstractDelegate &delegate)
 
virtual void SetId (const QString &id)
 
virtual void SetValue (const Object::Pointer &value)
 
- Public Member Functions inherited from berry::Object
virtual QString GetClassName () const
 
virtual Reflection::TypeInfo GetTypeInfo () const
 
virtual QList< Reflection::TypeInfoGetSuperclasses () const
 
virtual void Delete ()
 
QDebug Print (QDebug os, Indent Indent=0) const
 
virtual QString ToString () const
 
virtual uint HashCode () const
 
virtual bool operator< (const Object *) const
 
void Register () const
 
void UnRegister (bool del=true) const
 
int GetReferenceCount () const
 
void SetReferenceCount (int)
 
void AddDestroyListener (const MessageAbstractDelegate<> &delegate) const
 
void RemoveDestroyListener (const MessageAbstractDelegate<> &delegate) const
 
virtual bool operator== (const Object *) const
 

Protected Member Functions

void FireStateChanged (const Object::Pointer &oldValue)
 
- Protected Member Functions inherited from berry::Object
 Object ()
 
virtual ~Object ()
 
virtual QDebug PrintSelf (QDebug os, Indent indent) const
 
virtual QDebug PrintHeader (QDebug os, Indent indent) const
 
virtual QDebug PrintTrailer (QDebug os, Indent indent) const
 

Protected Attributes

IStateListener::Events stateEvents
 
- Protected Attributes inherited from berry::Object
QAtomicInt m_ReferenceCount
 
QMutex m_ReferenceCountLock
 

Additional Inherited Members

- Public Types inherited from berry::Object
typedef Object Self
 
typedef berry::SmartPointer< SelfPointer
 
typedef berry::SmartPointer< const SelfConstPointer
 
typedef berry::WeakPointer< SelfWeakPtr
 
typedef berry::WeakPointer< const SelfConstWeakPtr
 
- Static Public Member Functions inherited from berry::Object
static const char * GetStaticClassName ()
 
static Reflection::TypeInfo GetStaticTypeInfo ()
 
static QList< Reflection::TypeInfoGetStaticSuperclasses ()
 

Detailed Description

A piece of state information that can be shared between objects, and might be persisted between sessions. This can be used for commands that toggle between two states and wish to pass this state information between different handlers.

This state object can either be used as a single state object shared between several commands, or one state object per command – depending on the needs of the application.

Clients may instantiate or extend this class.

Since
3.2

Definition at line 46 of file berryState.h.

Member Function Documentation

void berry::State::AddListener ( IStateListener listener)
virtual

Adds a listener to changes for this state.

Parameters
listenerThe listener to add; must not be null.

Definition at line 22 of file berryState.cpp.

References berry::IStateListener::Events::AddListener(), and stateEvents.

berry::State::berryObjectMacro ( State  )
void berry::State::FireStateChanged ( const Object::Pointer oldValue)
protected

Notifies listeners to this state that it has changed in some way.

Parameters
oldValueThe old value; may be anything.

Definition at line 42 of file berryState.cpp.

References berry::IStateListener::Events::stateChanged, and stateEvents.

Referenced by SetValue().

QString berry::State::GetId ( ) const

Returns the identifier for this state.

Returns
The id; may be null.

Definition at line 47 of file berryState.cpp.

Object::Pointer berry::State::GetValue ( ) const
virtual

The current value associated with this state. This can be any type of object, but implementations will usually restrict this value to a particular type.

Returns
The current value; may be anything.

Definition at line 52 of file berryState.cpp.

void berry::State::RemoveListener ( IStateListener listener)
virtual

Removes a listener to changes from this state.

Parameters
listenerThe listener to remove; must not be null.

Definition at line 32 of file berryState.cpp.

References berry::IStateListener::Events::RemoveListener(), and stateEvents.

void berry::State::SetId ( const QString &  id)
virtual

Sets the identifier for this object. This method should only be called by the command framework. Clients should not call this method.

Parameters
idThe id; must not be null.

Definition at line 57 of file berryState.cpp.

void berry::State::SetValue ( const Object::Pointer value)
virtual

Sets the value for this state object.

Parameters
valueThe value to set; may be anything.

Definition at line 62 of file berryState.cpp.

References FireStateChanged().

Member Data Documentation

IStateListener::Events berry::State::stateEvents
protected

Definition at line 117 of file berryState.h.

Referenced by AddListener(), FireStateChanged(), and RemoveListener().


The documentation for this class was generated from the following files: