#include <CeylanGenericModel.h>
Public Types | |
enum | TextOutputFormat { rawText, html } |
Defines what text output formats for TextDisplayable instances are available. More... | |
Public Member Functions | |
SingleViewGenericModel (const ActualView &view) | |
Creates a new generic model, which will be linked to specified view, whose ownership is taken, and to no controller. | |
SingleViewGenericModel () | |
Creates a new generic model, which will be linked afterwards to a view and to no controller. | |
virtual | ~SingleViewGenericModel () throw () |
Virtual destructor. | |
virtual void | setView (const ActualView &view) |
Sets the unique view this model should have. | |
virtual void | addView (const ActualView &view) const |
Sets the unique view this model should have. | |
virtual const std::string | toString (Ceylan::VerbosityLevels level=Ceylan::high) const |
Returns a user-friendly description of the state of this object. | |
virtual void | addView (const BaseView &view) const =0 |
Adds specified view to that model. | |
Static Public Member Functions | |
static const std::string | ToString (std::list< TextDisplayable * > displayables, Ceylan::VerbosityLevels level=Ceylan::high) |
Returns a user-friendly description of this list of pointers to text displayable instances. | |
static TextOutputFormat | GetOutputFormat () |
Returns the current overall text format to be used by TextDisplayable instances. | |
static void | SetOutputFormat (TextOutputFormat newOutputFormat) |
Sets the current overall text format to be used by TextDisplayable instances. | |
Protected Attributes | |
const ActualView * | _view |
The associated (unique, if any, and owned) view. | |
Static Protected Attributes | |
static TextOutputFormat | _OutputFormat = rawText |
The text format to be used currently by TextDisplayable instances. | |
Private Member Functions | |
SingleViewGenericModel (const SingleViewGenericModel &source) | |
Copy constructor made private to ensure that it will never be called. | |
SingleViewGenericModel & | operator= (const SingleViewGenericModel &source) |
Assignment operator made private to ensure that it will never be called. |
This generic model is linked to exactly one view, and knowing it is only useful to manage its lifecycle.
Note that using the non-templated version SingleViewModel is enough in most cases, as a model generally does not need to trigger methods on its view, whereas the contrary is true (a view requests the model for its current state at rendering time).
Definition at line 353 of file CeylanGenericModel.h.
enum Ceylan::TextDisplayable::TextOutputFormat [inherited] |
Defines what text output formats for TextDisplayable instances are available.
Definition at line 124 of file CeylanTextDisplayable.h.
Ceylan::MVC::SingleViewGenericModel< ActualView >::SingleViewGenericModel | ( | const ActualView & | view | ) | [inline, explicit] |
Creates a new generic model, which will be linked to specified view, whose ownership is taken, and to no controller.
Definition at line 499 of file CeylanGenericModel.h.
Ceylan::MVC::SingleViewGenericModel< ActualView >::SingleViewGenericModel | ( | ) | [inline] |
Creates a new generic model, which will be linked afterwards to a view and to no controller.
Definition at line 509 of file CeylanGenericModel.h.
Ceylan::MVC::SingleViewGenericModel< ActualView >::~SingleViewGenericModel | ( | ) | throw () [inline, virtual] |
Virtual destructor.
Definition at line 518 of file CeylanGenericModel.h.
References Ceylan::MVC::SingleViewGenericModel< ActualView >::_view.
Ceylan::MVC::SingleViewGenericModel< ActualView >::SingleViewGenericModel | ( | const SingleViewGenericModel< ActualView > & | source | ) | [private] |
Copy constructor made private to ensure that it will never be called.
The compiler should complain whenever this undefined constructor is called, implicitly or not.
virtual void Ceylan::MVC::BaseModel::addView | ( | const BaseView & | view | ) | const [pure virtual, inherited] |
Adds specified view to that model.
GenericMVCException | if the operation failed. |
Implemented in Ceylan::MVC::NoViewModel, Ceylan::MVC::SingleViewModel, and Ceylan::MVC::MultipleViewModel.
void Ceylan::MVC::SingleViewGenericModel< ActualView >::addView | ( | const ActualView & | view | ) | const [inline, virtual] |
Sets the unique view this model should have.
If a view was already registered, it will be deallocated first.
view | the view, whose ownership is taken. |
GenericMVCException | if a view was already registered. |
The use of the setView method should be preferred, as its name is clearer than this inherited one.
Definition at line 546 of file CeylanGenericModel.h.
References Ceylan::MVC::SingleViewGenericModel< ActualView >::_view.
Referenced by Ceylan::MVC::SingleViewGenericModel< ActualView >::setView().
TextDisplayable::TextOutputFormat TextDisplayable::GetOutputFormat | ( | ) | [static, inherited] |
Returns the current overall text format to be used by TextDisplayable instances.
Definition at line 63 of file CeylanTextDisplayable.cc.
References Ceylan::TextDisplayable::_OutputFormat.
Referenced by Ceylan::formatStringList(), Ceylan::formatStringMap(), Ceylan::XML::XMLMarkup::toString(), Ceylan::Maths::Linear::Vector3::toString(), Ceylan::Maths::Linear::Vector2::toString(), Ceylan::Maths::Linear::Tripoint::toString(), Ceylan::Module::toString(), Ceylan::Maths::Linear::Matrix3::toString(), Ceylan::Maths::Linear::Matrix2::toString(), Ceylan::Maths::Linear::HomogeneousMatrix3::toString(), and Ceylan::Maths::Linear::Bipoint::toString().
SingleViewGenericModel& Ceylan::MVC::SingleViewGenericModel< ActualView >::operator= | ( | const SingleViewGenericModel< ActualView > & | source | ) | [private] |
Assignment operator made private to ensure that it will never be called.
The compiler should complain whenever this undefined operator is called, implicitly or not.
void TextDisplayable::SetOutputFormat | ( | TextOutputFormat | newOutputFormat | ) | [static, inherited] |
Sets the current overall text format to be used by TextDisplayable instances.
newOutputFormat | the new output format. |
Definition at line 72 of file CeylanTextDisplayable.cc.
References Ceylan::TextDisplayable::_OutputFormat.
Referenced by Ceylan::Log::LogHolder::LogHolder().
void Ceylan::MVC::SingleViewGenericModel< ActualView >::setView | ( | const ActualView & | view | ) | [inline, virtual] |
Sets the unique view this model should have.
If a view was already registered, it will be deallocated first.
view | the view, whose ownership is taken. |
GenericMVCException | if a view was already registered. |
Definition at line 535 of file CeylanGenericModel.h.
References Ceylan::MVC::SingleViewGenericModel< ActualView >::addView().
const std::string TextDisplayable::ToString | ( | std::list< TextDisplayable * > | displayables, | |
Ceylan::VerbosityLevels | level = Ceylan::high | |||
) | [static, inherited] |
Returns a user-friendly description of this list of pointers to text displayable instances.
displayables | a list of pointers to TextDisplayable instances/ | |
level | the requested verbosity level. |
Definition at line 45 of file CeylanTextDisplayable.cc.
References Ceylan::formatStringList().
const std::string Ceylan::MVC::SingleViewGenericModel< ActualView >::toString | ( | Ceylan::VerbosityLevels | level = Ceylan::high |
) | const [inline, virtual] |
Returns a user-friendly description of the state of this object.
level | the requested verbosity level. |
Reimplemented from Ceylan::MVC::BaseModel.
Definition at line 565 of file CeylanGenericModel.h.
References Ceylan::MVC::SingleViewGenericModel< ActualView >::_view, and Ceylan::low.
TextDisplayable::TextOutputFormat TextDisplayable::_OutputFormat = rawText [static, protected, inherited] |
The text format to be used currently by TextDisplayable instances.
Definition at line 158 of file CeylanTextDisplayable.h.
Referenced by Ceylan::TextDisplayable::GetOutputFormat(), and Ceylan::TextDisplayable::SetOutputFormat().
const ActualView* Ceylan::MVC::SingleViewGenericModel< ActualView >::_view [protected] |
The associated (unique, if any, and owned) view.
Definition at line 461 of file CeylanGenericModel.h.
Referenced by Ceylan::MVC::SingleViewGenericModel< ActualView >::addView(), Ceylan::MVC::SingleViewGenericModel< ActualView >::toString(), and Ceylan::MVC::SingleViewGenericModel< ActualView >::~SingleViewGenericModel().