vymmodel.h
author insilmaril
Wed, 13 May 2009 08:26:27 +0000
changeset 767 6d2b32f305f9
parent 766 7a71a914afdb
child 769 a6931cd6309a
permissions -rw-r--r--
Started to use QtKinetic for Animation
     1 #ifndef VYMMODEL_H
     2 #define VYMMODEL_H
     3 
     4 #include <QGraphicsScene>
     5 #include <QtNetwork>
     6 
     7 #include "file.h"
     8 #include "mapcenterobj.h"
     9 #include "mapeditor.h"
    10 #include "parser.h"
    11 #include "selection.h"
    12 #include "treeitem.h"
    13 #include "treemodel.h"
    14 
    15 class BranchItem;
    16 class MapCenterItem;
    17 class MapEditor;
    18 
    19 class VymModel : public TreeModel {		
    20 	Q_OBJECT
    21 
    22 ////////////////////////////////////////////
    23 // General housekeeping
    24 ////////////////////////////////////////////
    25 private:
    26 	QGraphicsScene *mapScene;
    27 	QString version;	//!< version string saved in vym file
    28 	QString author;
    29 	QString comment;
    30 	QDate date;
    31 
    32 public:
    33 	VymModel();
    34 	~VymModel ();
    35     void clear();
    36     void init();
    37 	void makeTmpDirectories();		//!< create temporary directories e.g. for history
    38 
    39 	MapEditor* getMapEditor();			// FIXME-2 still necessary?
    40 
    41 	bool isRepositionBlocked();		//!< While load or undo there is no need to update graphicsview
    42 
    43 	void updateActions();			//!< Update buttons in mainwindow
    44 
    45 
    46 ////////////////////////////////////////////
    47 // Load/save 
    48 ////////////////////////////////////////////
    49 private:
    50 
    51 	bool zipped;				// should map be zipped
    52 	static	int mapNum;			// unique number for model used in save/undo
    53 	FileType fileType;			// type of file, e.g. vym, freemind...
    54 	QString fileName;			// short name of file (for tab)
    55 	QString filePath;			// path to file which will be saved
    56 	QString fileDir;			// dir where file is saved
    57 	QString destPath;			// path to .vym file (needed for vymlinks)
    58 	QString mapName;			// fileName without ".vym"
    59 
    60 	QString tmpMapDir;			// tmp directory with undo history
    61 
    62 	QTimer *autosaveTimer;
    63 	QTimer *fileChangedTimer;
    64 	QDateTime fileChangedTime;
    65 
    66 public:
    67 	/*! This function saves all information of the map to disc.
    68 	    saveToDir also calls the functions for all BranchObj and other objects in the map.
    69 		The structure of the map itself is returned as QString and passed back to Main, 
    70 		where saveToDir is called initially
    71 	*/	
    72     QString saveToDir (const QString &tmpdir, const QString &prefix, bool writeflags, const QPointF &offset, TreeItem *saveSel);
    73 
    74 	/*! Save all data in tree*/
    75 	QString saveTreeToDir (const QString&,const QString&,int, const QPointF&);// Save data recursivly to tempdir
    76 
    77 
    78 	/*! \brief Sets filepath, filename and mapname
    79 
    80 	     If the filepath is "/home/tux/map.xml", then the filename will be set
    81 		 to map.xml. The destname is needed for vymLinks, pointing to another map. 
    82 		 The destname holds the real name of the file, after it has been compressed, e.g. "map.vym"
    83 	*/	 
    84 
    85 
    86 	/*! \brief Set File path
    87 
    88 	     The destname is needed to construct the references between maps
    89 	*/	 
    90 	void setFilePath (QString filepath,QString destname);	
    91 	void setFilePath (QString);	//!< Overloaded for convenience
    92 	QString getFilePath ();	//!< Full path e.g. "/home/tux/map.xml"
    93 	QString getFileName ();	//!< e.g. "map.xml"
    94 	QString getMapName ();	//!< e.g. "map"
    95 	QString getDestPath (); //!< e.g. "/home/tux/map.vym"
    96 
    97 	/*! \brief Load map
    98 
    99 		The data is read from file. Depending on LoadMode the current
   100 		selection gets replaced by data or the data is appended.
   101 	*/	
   102     ErrorCode load (QString, const LoadMode &, const FileType& );	// newmap, import/replace selection
   103 
   104 public:
   105 	/*! \brief Save the map to file */
   106     ErrorCode save(const SaveMode &);	
   107 
   108 private:
   109     void addMapReplaceInt(const QString & undoSel, const QString & path);
   110     void addMapInsertInt (const QString & path, int pos);
   111 
   112 	FloatImageObj* loadFloatImageInt (QString);
   113 	void saveFloatImageInt (FloatImageObj*, const QString &, const QString &);
   114 public:	
   115 	void loadFloatImage ();
   116 	void saveFloatImage ();
   117 
   118 private:	
   119     void importDirInt(BranchObj *,QDir);
   120     void importDirInt(const QString&);
   121 public:	
   122     void importDir();
   123 
   124 private slots:
   125 	void autosave ();
   126 	void fileChanged();
   127 
   128 ////////////////////////////////////////////
   129 // history (undo/redo)
   130 ////////////////////////////////////////////
   131 private:
   132     bool mapDefault;			//!< Flag if map is untouched
   133     bool mapChanged;			//!< Flag if undo is possible
   134 	bool mapUnsaved;			//!< Flag if map should be saved
   135 
   136 	QString histPath;			//!< Path to history file
   137 	SimpleSettings undoSet;		//!< undo/redo commands, saved in histPath
   138 	int stepsTotal;				//!< total number of steps (undos+redos) 
   139 	int curStep;				//!< Current step in history (ring buffer)
   140 	int curClipboard;			//!< number of history step, which is the current clipboard
   141 	int redosAvail;				//!< Available number of redo steps
   142 	int undosAvail;				//!< Available number of undo steps
   143 	bool blockReposition;		//!< block while load or undo
   144 	bool blockSaveState;		//!< block while load or undo
   145 public:
   146 	bool isDefault();			//!< true, if map is still the empty default map
   147 	void makeDefault();			//!< Reset changelog, declare this as default map
   148     bool hasChanged()	;		//!< true, if something has changed and is not saved yet
   149 	void setChanged();			//!< called from TextEditor via LinkableMapObj
   150 
   151 	/*! \brief Get name of object
   152 	  
   153 	  Returns heading of a branch or name of an object for use in comment
   154 	  of undo/redo history
   155 	*/ 
   156 	QString getObjectName(const LinkableMapObj*);	
   157 	QString getObjectName(const TreeItem*);	
   158 
   159     void redo();						//!< Redo last action
   160 	bool isRedoAvailable();				//!< True, if redo is available
   161     void undo();						//!< Undo last action
   162 	bool isUndoAvailable();				//!< True, if undo is available
   163 	void gotoHistoryStep (int);			//!< Goto a specifig step in history
   164 
   165 
   166 	QString getHistoryPath();			//!< Path to directory containing the history
   167 
   168 	/*! \brief Save the current changes in map 
   169 
   170 		Two commands and selections are saved:
   171 
   172 			- undocommand and undoselection to undo the change
   173 			- redocommand and redoselection to redo the action after an undo
   174 
   175 		Additionally a comment is logged. 
   176 
   177 	*/	
   178     void saveState(
   179 		const SaveMode& savemode, 
   180 		const QString &undoSelection, 
   181 		const QString &undoCommand, 
   182 		const QString &redoSelection, 
   183 		const QString &redoCommand, 
   184 		const QString &comment, 
   185 		TreeItem *saveSelection);
   186 	/*! Overloaded for convenience */
   187     void saveStateChangingPart(
   188 		TreeItem *undoSelection, 
   189 		TreeItem* redoSelection, 
   190 		const QString &redoCommand, 
   191 		const QString &comment);
   192 	/*! Overloaded for convenience */
   193     void saveStateRemovingPart(
   194 		TreeItem *redoSelection, 
   195 		const QString &comment);
   196 	/*! Overloaded for convenience */
   197     void saveState(
   198 		TreeItem *undoSelection, 
   199 		const QString &undoCommand, 
   200 		TreeItem *redoSelection, 
   201 		const QString &redoCommand, 
   202 		const QString &comment); 
   203 	/*! Overloaded for convenience */
   204     void saveState(
   205 		const QString &undoSelection, 
   206 		const QString &undoCommand, 
   207 		const QString &redoSelection, 
   208 		const QString &redoCommand, 
   209 		const QString &comment) ;
   210     void saveState(
   211 		const QString &undoCommand, 
   212 		const QString &redoCommand, 
   213 		const QString &comment) ;
   214 
   215 
   216 ////////////////////////////////////////////
   217 // unsorted so far
   218 ////////////////////////////////////////////
   219 public:
   220 	void setScene(QGraphicsScene *s);
   221 	QGraphicsScene *getScene();
   222 
   223     TreeItem* findBySelectString (QString s);		
   224     TreeItem* findID (const QString &s);				// find MapObj by previously set ID
   225 
   226 
   227 ////////////////////////////////////////////
   228 // Interface 
   229 ////////////////////////////////////////////
   230 public:
   231 	void setVersion(const  QString &);
   232 	void setAuthor  (const QString &);
   233 	QString getAuthor ();
   234 	void setComment (const QString &);
   235 	QString getComment ();
   236 	QString getDate();
   237 	int branchCount();
   238 
   239 public:	
   240 	void setHeading(const QString &);		//!< Set heading of branch	
   241 //	QString getHeading (bool &ok,QPoint &p); //!< Get heading, ok if selection is branch
   242 
   243 private:
   244 	BranchItem* findCurrent;		// next object in find process
   245 	BranchItem* findPrevious;		// next object in find process
   246 	bool EOFind;				// true, if search failed
   247 public:
   248     BranchItem* findText(QString,bool);		// Find object
   249     void findReset();						// Reset Search
   250 
   251 	void setURL(const QString &url);
   252 	QString getURL();						// returns URL of selection or ""
   253 	QStringList getURLs();					// returns URLs of subtree
   254 
   255 	void linkFloatImageTo(const QString &);
   256 
   257 	void setFrameType(const FrameObj::FrameType &);
   258 	void setFrameType(const QString &);
   259 	void setFramePenColor (const QColor &);
   260 	void setFrameBrushColor (const QColor &);
   261 	void setFramePadding (const int &);
   262 	void setFrameBorderWidth (const int &);
   263 	void setIncludeImagesVer(bool);
   264 	void setIncludeImagesHor(bool);
   265 	void setHideLinkUnselected (bool);
   266 
   267 	/*! Should object be hidden in exports (clouded)? */
   268 	void setHideExport(bool);			
   269 
   270 	/*! Should object be hidden in exports (clouded)? */
   271 	void toggleHideExport();		
   272 
   273     void copy();						//!< Copy to clipboard
   274 private:	
   275     void pasteNoSave(const int &n);		//!< paste clipboard to branch
   276 public:	
   277     void paste();		//!< Paste clipboard to branch and backup
   278     void cut();			//!< Cut to clipboard (and copy)
   279 
   280     void moveUp();	//!< Move branch up
   281     void moveDown();	//!< Move branch down
   282 	void sortChildren();	//!< Sort children lexically
   283 
   284 	// The create methods are used to quickly parse a XML file
   285 	MapCenterItem* createMapCenter();	//!< Create and select MapCenter
   286 	BranchItem* createBranch();			//!< Create and select Branch
   287 	TreeItem* createImage();			//!< Create and select image
   288 
   289 	/*! \brief Add new mapcenter
   290 
   291 	    Disclaimer: Still experimental, not fully supported yet.
   292 	*/	
   293 	MapCenterItem* addMapCenter();
   294 private:	
   295 	MapCenterItem* addMapCenter(QPointF absPos);
   296 
   297 	/*! \brief Add new branch
   298 
   299 		Depending on num the new branch is created
   300 
   301 		-3 above selection as child of selections parent
   302 		-2 as child of selection
   303 		-1 below selection as child of selections parent
   304 		0..n	insert at a specific position in selections parent
   305 		(needed for free relinking)
   306 	*/	
   307 
   308 private:	
   309     BranchItem* addNewBranchInt(int);		// pos allows to add above/below selection
   310 public:	
   311 	/*! \Add new branch
   312 		
   313 		Depending on num the new branch is created
   314 		-1 above selection
   315 		 0 as child of selection
   316 		 1 below selection
   317 	*/
   318     BranchItem* addNewBranch(int pos);		
   319     BranchItem* addNewBranchBefore();		//!< Insert branch between selection and its parent
   320 	/*! \brief Relink a branch to a new destination dst 
   321 	    Relinks branch to dst at branch position pos. There is no saveState
   322 		here, as for example moveUp or moving in MapEditor have
   323 		different needs to call saveState
   324 		Returns true if relinking was successful.
   325 	*/	
   326 	bool relinkBranch (BranchItem* branch, BranchItem* dst, int pos =-1);	
   327 
   328     void deleteSelection();					//!< Delete selection
   329 	void deleteKeepChildren();				//!< remove branch, but keep children
   330 	void deleteChildren();					//!< keep branch, but remove children
   331 
   332 private:	
   333 	bool scrollBranch(BranchItem *);
   334 	bool unscrollBranch(BranchItem *);
   335 public:	
   336     void toggleScroll();
   337     void unscrollChildren();
   338 	void emitExpandAll();
   339 signals:	
   340 	void expandAll();
   341 
   342 public:	
   343 	void toggleStandardFlag (const QString &name, FlagRow *master=NULL);
   344     void addFloatImage(const QPixmap &img);
   345 
   346     void colorBranch(QColor);
   347     void colorSubtree(QColor);
   348 	QColor getCurrentHeadingColor();
   349 
   350 
   351 	void editURL();							// edit URL
   352 	void editLocalURL();					// edit URL to local file
   353 	void editHeading2URL();					// copy heading to URL
   354 	void editBugzilla2URL();				// create URL to Bugzilla
   355 	void editFATE2URL();					// create URL to FATE
   356 	void editVymLink();						// edit link to another map
   357 	void setVymLink (const QString &);	// Set vymLink for selection
   358 	void deleteVymLink();					// delete link to another map
   359 	QString getVymLink();					// return path to map
   360 	QStringList getVymLinks();				// return paths in subtree
   361 	void followXLink (int);
   362 	void editXLink (int);
   363 
   364 
   365 
   366 
   367 ////////////////////////////////////////////
   368 // Scripting
   369 ////////////////////////////////////////////
   370 public:	
   371 
   372 	/* \brief Process one command and its parameters */
   373     void parseAtom (const QString &atom);	
   374 
   375 	/* \brief Runs the script */
   376 	void runScript (QString script);
   377 
   378 private:
   379 	Parser parser;
   380 
   381 ////////////////////////////////////////////
   382 // Exports
   383 ////////////////////////////////////////////
   384 private:
   385 	TreeItem::HideTmpMode hidemode;	// true while exporting to hide some stuff
   386 
   387 public:
   388 	/*! Set or unset temporary hiding of objects during export  */
   389 	void setExportMode (bool);
   390 
   391 	/*! Save as image */
   392     void exportImage (QString fname="",bool askForName=true,QString format="PNG");
   393 
   394 
   395 	/*! Export as XTML to directory */
   396     void exportXML(QString dir="", bool askForName=true);
   397 
   398 	/*! Export as ASCII text to file */
   399 	void exportASCII (QString fname="",bool askForName=true);  
   400 
   401 	/*! Export as XHTML to directory */
   402     void exportXHTML(const QString& dir="", bool askForName=true);	
   403 
   404     /*! Export as OpenOfficeOrg presentation */
   405     void exportOOPresentation(const QString &,const QString &);	
   406 
   407 
   408 ////////////////////////////////////////////
   409 // View related
   410 ////////////////////////////////////////////
   411 public:
   412 	void registerEditor (QWidget *);
   413 	void unregisterEditor (QWidget *);
   414 
   415 private: 
   416 	QPointF contextPos;					//!< local position during context menu
   417 public:
   418 	void setContextPos (QPointF);		//!< local position during context menu
   419 	void unsetContextPos ();			//!< forget local position after context menu
   420 
   421 	void updateNoteFlag();				//!< Signal origination in TextEditor
   422     void updateRelPositions();
   423 
   424 	QRectF getTotalBBox();
   425 	void reposition();					//!< Call reposition for all MCOs
   426 	void setHideTmpMode (TreeItem::HideTmpMode mode);	
   427 
   428 	QPolygonF shape(BranchObj *bo);		//!< Returns arbitrary shape of subtree
   429 	void moveAway (LinkableMapObj *lmo);//!< Autolayout: Move all out of the way
   430 
   431 	void emitNoteHasChanged (TreeItem *ti);
   432 	void emitDataHasChanged (TreeItem *ti);
   433 
   434 signals:
   435 	void noteHasChanged (QModelIndex ix);
   436 	void newChildObject(QModelIndex ix);
   437 
   438 private:
   439 	MapEditor *mapEditor;
   440 
   441 	QColor defLinkColor;		// default color for links
   442 	QColor defXLinkColor;		// default color for xlinks
   443 	int defXLinkWidth;			// default width for xlinks
   444 	LinkableMapObj::ColorHint linkcolorhint;// use heading color or own color
   445 	LinkableMapObj::Style linkstyle;		// default style for links
   446 
   447 private:
   448     QPixmap getPixmap();
   449 
   450 public:
   451 	void setMapLinkStyle (const QString &);	// Set style of link
   452 	LinkableMapObj::Style getMapLinkStyle ();	// requested in LMO
   453 	void setMapDefLinkColor(QColor);		// default color of links
   454 	void setMapLinkColorHintInt();			// color of links
   455 	void setMapLinkColorHint(LinkableMapObj::ColorHint);// color of links
   456 	void toggleMapLinkColorHint();			// after changing linkStyles
   457     void selectMapBackgroundImage();
   458     void setMapBackgroundImage(const QString &);
   459     void selectMapBackgroundColor();
   460     void setMapBackgroundColor(QColor);
   461     QColor getMapBackgroundColor();
   462 
   463 
   464 	LinkableMapObj::ColorHint getMapLinkColorHint();
   465 	QColor getMapDefLinkColor();
   466 	void setMapDefXLinkColor(QColor);
   467 	QColor getMapDefXLinkColor();
   468 	void setMapDefXLinkWidth (int);
   469 	int getMapDefXLinkWidth();
   470 
   471 	/*!  Move absolutly to (x,y).  */	
   472     void move    (const double &x, const double &y);
   473 
   474 	/*!  Move relativly to (x,y).  */	
   475     void moveRel (const double &x, const double &y);
   476 
   477 ////////////////////////////////////////////
   478 // Animation  **experimental**
   479 ////////////////////////////////////////////
   480 private:	
   481 	QTimer *animationTimer;
   482 	bool animationUse;
   483 	uint animationTicks;
   484 	uint animationInterval;
   485 	int timerId;				// animation timer
   486 	QList <MapObj*> animObjList;// list with animated objects //FIXME-2 should go to MapEditor
   487 
   488 private slots:
   489 	void animate();						//!< Called by timer to animate stuff
   490 public:
   491 	void startAnimation(BranchObj *bo, const QPointF &start, const QPointF &dest);
   492 	void stopAnimation(MapObj *mo);
   493 
   494 ////////////////////////////////////////////
   495 // Network related 
   496 ////////////////////////////////////////////
   497 public:
   498     /*! \brief Networking states
   499 		
   500 		In Network modus we want to switch of saveState, autosave, ...
   501 	*/
   502 	enum NetState {
   503 		Offline,			//!< Offline
   504 		Client,				//!< I am the client and connected to server
   505 		Server				//!< I am the server
   506 	};
   507 
   508 private:
   509 	// Network connections **Experimental**
   510 	NetState netstate;			// offline, client, server
   511 	QTcpServer *tcpServer;		// Act as server in conference mode (experimental)
   512 	QList <QTcpSocket*> clientList;		// List of connected clients
   513 	quint16 sendCounter;		// Increased with every sent command
   514 
   515 	QTcpSocket	*clientSocket;	// socket of this client
   516 	QString server;				// server address of this client
   517 	int port;					// server port of this client
   518 
   519 
   520 
   521 protected:
   522 	void sendSelection();
   523 
   524 public:
   525 	void newServer();
   526 	void connectToServer();
   527 
   528 private slots:	
   529 	void newClient();
   530 	void sendData(const QString &s);
   531 	void readData();
   532 	void displayNetworkError (QAbstractSocket::SocketError);
   533 
   534 private:	
   535 	void displayClientError(QAbstractSocket::SocketError socketError);
   536 
   537 
   538 ////////////////////////////////////////////
   539 // Selection related 
   540 ////////////////////////////////////////////
   541 private:
   542 	Selection selection;
   543 	TreeItem *latestAddedItem;				// latest added object, reset on setChanged()
   544 
   545 signals:
   546 	void selectionChanged(const QItemSelection &, const QItemSelection &);
   547 
   548 public:
   549 	void setSelectionModel(QItemSelectionModel *);		// Set common selectionModel
   550 	QItemSelectionModel* getSelectionModel();
   551 
   552 	void setSelectionBlocked(bool);
   553 	bool isSelectionBlocked();
   554 
   555 	bool select ();							// select by using common QItemSlectionModel
   556 	bool select (const QString &);			// Select by string
   557 	bool select (LinkableMapObj *lmo);		// Select by pointer tog LMO
   558 	bool select (TreeItem *ti );			// Select by point to TreeItem
   559 	void unselect();
   560 	void reselect();
   561 
   562 	void emitShowSelection();				//!< Show selection in all views
   563 signals:
   564 	void showSelection();
   565 
   566 //	void selectInt(LinkableMapObj*);	//FIXME-4
   567 
   568 private:	
   569 	void selectNextBranchInt();		// Increment number of branch
   570 	void selectPrevBranchInt();		//! Select the branch which would be above in vymmap view
   571 	void selectAboveBranchInt();	//! Select the branch which would be above current selection in TreeView
   572 	void selectBelowBranchInt();		// Increment number of branch
   573 public:	
   574     void selectUpperBranch();
   575     void selectLowerBranch();
   576     void selectLeftBranch();
   577     void selectRightBranch();
   578     void selectFirstBranch();
   579     void selectLastBranch();
   580 	void selectLastSelectedBranch();
   581 	void selectParent();
   582 
   583 public:
   584 	TreeItem::Type selectionType();
   585 	LinkableMapObj* getSelectedLMO();
   586 	BranchObj* getSelectedBranchObj();	// FIXME-2 replace by item...
   587 	BranchItem* getSelectedBranchItem();
   588 	TreeItem* getSelectedItem();
   589 	QModelIndex getSelectedIndex();
   590 	FloatImageObj* getSelectedFloatImage();
   591 	QString getSelectString ();
   592 	QString getSelectString (LinkableMapObj *lmo);
   593 	QString getSelectString (TreeItem *item);
   594 	
   595 	
   596 	/*
   597 public slots:
   598 	void changeSelection (const QItemSelection &newSel, const QItemSelection &delSel);
   599 	*/
   600 
   601 public:
   602 	void updateSelection(const QItemSelection &oldsel);
   603 	void updateSelection();
   604 	void selectMapLinkColor();
   605     void selectMapSelectionColor();
   606 private:	
   607     void setSelectionColorInt(QColor);
   608 	QItemSelectionModel *selModel;
   609 
   610 public:	
   611     void setSelectionColor(QColor);
   612     QColor getSelectionColor();
   613 };
   614 
   615 #endif