diff -r 000000000000 -r 2f002657dada flagrow.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flagrow.h Tue May 26 11:24:51 2009 +0000 @@ -0,0 +1,52 @@ +#ifndef FLAGROW_H +#define FLAGROW_H + +#include +#include + +#include "flag.h" +#include "xmlobj.h" + +/*! \brief A set of flags (Flag). + + A toolbar can be created from the flags in this row. + The data needed for represention in a vym map + is stored in FlagRowObj. + */ + +class FlagRow:public XMLObj { +public: + FlagRow (); + ~FlagRow (); + void addFlag (Flag *flag); + Flag *getFlag (const QString &name); + QStringList activeFlagNames(); + bool isActive(const QString &name); + + /*! \brief Toggle a Flag + + To activate a flag it will be copied from masterRow to current row. + */ + void toggle (const QString&, FlagRow *masterRow=NULL); + void activate(const QString&); + void deactivate(const QString&); + void deactivateAll(); + void setEnabled (bool); + void setShowFlags (bool); + void resetUsedCounter(); + QString saveToDir (const QString &,const QString &,bool); + void setName (const QString&); // prefix for exporting flags to dir + void setToolBar (QToolBar *tb); + void setMasterRow (FlagRow *row); + void updateToolBar(const QStringList &activeNames); + +private: + QToolBar *toolBar; + FlagRow *masterRow; + QList flags; + QStringList activeNames; //! Lists all names of currently active flags + QString rowName; //! Name of this collection of flags +// bool showFlags; // FloatObjects want to hide their flags +}; +#endif +