GPL V2. Added settings to documentation
6 #include <QGraphicsScene>
21 enum Type {Undefined,Branch,MapCenter,FloatImage};
24 void copy(const Selection&);
26 void setMapEditor (MapEditor *);
28 void setColor (QColor c);
30 bool select (LinkableMapObj*);
31 bool select (const QString &);
37 LinkableMapObj * first(); // first in selection list
38 LinkableMapObj * single(); // NULL, if multiple selected
39 BranchObj* getBranch();
40 FloatImageObj* getFloatImage();
42 QString getSelectString();
46 QList <LinkableMapObj*> selectList;
47 QList <LinkableMapObj*> lastSelectList;
48 QList <QGraphicsRectItem*> selboxList;
50 MapCenterObj *mapCenter;
51 QGraphicsScene *scene;