10 /*! \brief One flag belonging to a FlagRow.
12 Each TreeItem in a VymModel has a set of standard flags and system
17 /////////////////////////////////////////////////////////////////////////////
18 class Flag:public XMLObj {
24 virtual void copy (Flag*);
25 void load (const QString&);
26 void load (const QPixmap&);
27 void setName (const QString&);
28 const QString getName ();
29 void setVisible (bool b);
31 void setGroup (const QString&);
32 const QString getGroup();
34 void setToolTip(const QString&);
35 const QString getToolTip();
37 void setAction (QAction *a);
38 QAction* getAction ();
39 void setUsed (bool); //FIXME-3 needed?
41 void saveToDir (const QString&, const QString&);