4 #include <QGraphicsScene>
6 #include "mapcenterobj.h"
10 /*! \brief This will later be divided into Model/View
19 void setMapEditor(MapEditor *me); // FIXME should not be necessary in Model/View
20 MapEditor* getMapEditor();
21 void setVersion(const QString &);
22 void setAuthor (const QString &);
24 void setComment (const QString &);
25 QString getComment ();
27 void setScene(QGraphicsScene *s);
28 QGraphicsScene *getScene();
29 MapCenterObj* addMapCenter();
30 MapCenterObj* removeMapCenter(MapCenterObj *mco);
32 BranchObj* first(); // FIXME replaced by ModelIndex later
33 BranchObj* next(BranchObj *bo); // FIXME replaced by ModelIndex later
35 LinkableMapObj* findMapObj(QPointF,LinkableMapObj*); // find MapObj
36 LinkableMapObj* findObjBySelect (const QString &s); // find MapObj by select string
37 LinkableMapObj* findID (const QString &s); // find MapObj by previously set ID
38 QString saveToDir (const QString&,const QString&,int, const QPointF&);// Save data recursivly to tempdir
41 ////////////////////////////////////////// View related
42 // void updateLink(); FIXME needed?
43 void updateRelPositions();
45 QRectF getTotalBBox();
46 void reposition(); //!< Call reposition for all MCOs
47 void setHideTmp (HideTmpMode mode);
49 ////////////////////////////////////////// Selection related
50 LinkableMapObj* getSelection();
51 BranchObj* getSelectedBranch();
52 bool select (const QString &s);
53 QString getSelectString (LinkableMapObj *lmo);
56 QGraphicsScene *mapScene;
58 QList <MapCenterObj*> mapCenters;
59 QString version; //!< version string saved in vym file