mapeditor.h
author insilmaril
Tue, 02 Mar 2010 13:59:19 +0000
changeset 825 1ad892c1a709
parent 819 8f987e376035
child 834 0fad394bc330
permissions -rw-r--r--
Added file for later dockwidget showing all search results at once
     1 #ifndef MAPEDITOR_H
     2 #define MAPEDITOR_H
     3 
     4 #include <QGraphicsView>
     5 #include <QItemSelectionModel>
     6 
     7 #include <QtPropertyAnimation>	
     8 
     9 #include "attribute.h"
    10 #include "ornamentedobj.h"
    11 #include "settings.h"
    12 #include "vymmodel.h"
    13 
    14 
    15 class XLinkItem;
    16 
    17 /*! \brief Main widget in vym to display and edit a map */
    18 
    19 
    20 class MapEditor : public QGraphicsView {	
    21     Q_OBJECT
    22 	Q_PROPERTY(qreal zoomFactor READ getZoomFactor WRITE setZoomFactor)
    23 	Q_PROPERTY(QPointF scrollBarPos READ getScrollBarPos WRITE setScrollBarPos)
    24 
    25 public:
    26     MapEditor(VymModel *vm);
    27 	~MapEditor();
    28 	VymModel* getModel();
    29 	QGraphicsScene * getScene();
    30 
    31 protected:
    32 	QPointF scrollBarPos;
    33 	QPointF scrollBarPosTarget;
    34 	QtPropertyAnimation scrollBarPosAnimation;
    35 public:
    36 	void scrollTo (const QModelIndex &index);
    37 	void setScrollBarPosTarget (const QRectF &rect);	//!  ensureVisible of rect
    38 	QPointF getScrollBarPosTarget ();
    39 	void setScrollBarPos (const QPointF &p);
    40 	QPointF getScrollBarPos();
    41 
    42 protected:
    43 	qreal zoomFactor;
    44 	qreal zoomFactorTarget;
    45 	QtPropertyAnimation zoomAnimation;
    46 public:
    47 	void setZoomFactorTarget (const qreal &zf);
    48 	qreal getZoomFactorTarget();
    49 	void setZoomFactor (const qreal &zf);
    50 	qreal getZoomFactor();
    51 
    52 public:
    53     void print();				//!< Print the map
    54 	QRectF getTotalBBox();		//!< Bounding box of all items in map
    55 	QImage getImage ();			//!< Get a pixmap of the map
    56 	void setAntiAlias (bool);	//!< Set or unset antialiasing
    57 	void setSmoothPixmap(bool); //!< Set or unset smoothing of pixmaps
    58 	void setHideTmp (bool);		//!< Hide parts temporary
    59 public:
    60 	TreeItem *findMapItem (QPointF p,TreeItem *exclude);	//! find item in map at position p. Ignore item exclude 
    61 
    62 	AttributeTable* attributeTable();	// FIXME-3
    63     void testFunction1();				// just testing new stuff
    64     void testFunction2();				// just testing new stuff
    65 
    66 protected:	
    67 	BranchItem* getBranchDirectAbove(BranchItem *bi);	//!  get branch direct above bi (in TreeView) 
    68 	BranchItem* getBranchAbove(BranchItem *bi);			//! get branch above bi (in TreeView) 
    69 	BranchItem* getBranchDirectBelow(BranchItem *bi);	//!  bet branch direct below bi (in TreeView)
    70 	BranchItem* getBranchBelow(BranchItem *bi);			//! bet branch below bi (in TreeView)
    71 	BranchItem* getLeftBranch(BranchItem *bi);			//! bet branch left of bi (in TreeView)
    72 	BranchItem* getRightBranch(BranchItem *bi);			//! bet branch right of bi (in TreeView)
    73 
    74 public slots:
    75 	void cursorUp();
    76 	void cursorDown();
    77 	void cursorLeft();
    78 	void cursorRight();
    79 	void cursorFirst();
    80 	void cursorLast();
    81 	void editHeading();
    82 	void editHeadingFinished();
    83 private:
    84 	bool editingHeading;
    85 	QLineEdit *lineEdit;
    86 
    87 protected:
    88 	virtual void contextMenuEvent ( QContextMenuEvent *e );
    89     virtual void keyPressEvent(QKeyEvent*);
    90     virtual void keyReleaseEvent(QKeyEvent*);
    91     virtual void mousePressEvent(QMouseEvent*);
    92     virtual void mouseMoveEvent(QMouseEvent*);
    93     virtual void mouseReleaseEvent(QMouseEvent*);
    94     virtual void mouseDoubleClickEvent(QMouseEvent*);
    95     virtual void resizeEvent( QResizeEvent * );
    96 
    97 	void dragEnterEvent (QDragEnterEvent *);
    98 	void dragMoveEvent (QDragMoveEvent *);
    99 	void dragLeaveEvent (QDragLeaveEvent *);
   100 	void dropEvent (QDropEvent *);
   101 
   102 
   103 private:
   104 	QGraphicsScene *mapScene;
   105 	VymModel *model;			//!< Vym Map, includding several mapCenters
   106 
   107 	bool adjustCanvasRequested;	// collect requests until end of user event
   108 	BranchObj *editingBO;		// entering Text into BO
   109 
   110     QCursor HandOpenCursor;		// cursor while moving canvas view
   111 	QCursor PickColorCursor;	// cursor while picking color 
   112 	QCursor CopyCursor;			// cursor while picking color 
   113 	QCursor XLinkCursor;		// cursor while picking color 
   114 	bool pickingColor;
   115 	bool drawingLink;			// true while creating a link
   116 	bool copyingObj;			// true while modModeCopy
   117 	bool objectMoved;			// true if object was not clicked, but moved with mouse
   118 	XLinkItem* tmpXLink;
   119 
   120 	MapObj* movingObj;				// moving a MapObj
   121     QPointF movingObj_orgPos;		// org. pos of mouse before move
   122     QPointF movingObj_orgRelPos;	// org. relative pos of mouse before move
   123     QPointF movingObj_start;		// rel. pos of mouse to absPos 
   124     QPointF movingCont_start;		// inital pos of moving Content or
   125     QPointF movingVec;				// how far has Content moved
   126 
   127 	QPointF contextMenuPos;			// position where context event was triggered
   128 
   129     QPrinter* printer;				// Printing
   130 
   131 	AttributeTable *attrTable;
   132 
   133 	bool printFrame;			// Print frame around map
   134 	bool printFooter;			// Print footer below map
   135 
   136 	QPoint exportOffset;		// set before export, used in save
   137 
   138 //////////// Selection related
   139 signals:
   140 	void selectionChanged(const QItemSelection &, const QItemSelection &);
   141 
   142 private:	
   143 	QList <QGraphicsRectItem*> selboxList;
   144 	QColor selectionColor;
   145 
   146 public slots:
   147 	void updateSelection(QItemSelection ,QItemSelection); // update selection
   148 	void updateData (const QModelIndex&); // update data
   149 public:
   150 	void setSelectionColor (QColor c);
   151 	QColor getSelectionColor ();
   152 };
   153 #endif
   154