vymmodel.h
author insilmaril
Mon, 20 Apr 2009 10:42:05 +0000
changeset 754 db0ec4bcf416
parent 753 25a77484ec72
child 755 ed5b407975b3
permissions -rw-r--r--
minor fixes
     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 (const 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 moveBranchUp();	//!< Move branch up
   281     void moveBranchDown();	//!< 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 public:	
   297 	MapCenterItem* removeMapCenter(MapCenterItem *mci);
   298 
   299 	/*! \brief Add new branch
   300 
   301 		Depending on num the new branch is created
   302 
   303 		-3 above selection as child of selections parent
   304 		-2 as child of selection
   305 		-1 below selection as child of selections parent
   306 		0..n	insert at a specific position in selections parent
   307 		(needed for free relinking)
   308 	*/	
   309 	MapCenterObj* getLastMapCenter();		//!< get last added MapCenter, used for context menu
   310 
   311 private:	
   312     BranchObj* addNewBranchInt(int);		// pos allows to add above/below selection
   313 public:	
   314 	/*! \Add new branch
   315 		
   316 		Depending on num the new branch is created
   317 		-1 above selection
   318 		 0 as child of selection
   319 		 1 below selection
   320 	*/
   321     BranchObj* addNewBranch(int pos);		
   322     BranchObj* addNewBranchBefore();		//!< Insert branch between selection and its parent
   323     void deleteSelection();					//!< Delete selection
   324 	void deleteKeepChildren();				//!< remove branch, but keep children
   325 	void deleteChildren();					//!< keep branch, but remove children
   326 
   327 private:	
   328 	bool scrollBranch(BranchItem *);
   329 	bool unscrollBranch(BranchItem *);
   330 public:	
   331     void toggleScroll();
   332     void unscrollChildren();
   333 
   334     void addFloatImage(const QPixmap &img);
   335 
   336     void colorBranch(QColor);
   337     void colorSubtree(QColor);
   338 	QColor getCurrentHeadingColor();
   339 
   340 
   341 	void editURL();							// edit URL
   342 	void editLocalURL();					// edit URL to local file
   343 	void editHeading2URL();					// copy heading to URL
   344 	void editBugzilla2URL();				// create URL to Bugzilla
   345 	void editFATE2URL();					// create URL to FATE
   346 	void editVymLink();						// edit link to another map
   347 	void setVymLink (const QString &);	// Set vymLink for selection
   348 	void deleteVymLink();					// delete link to another map
   349 	QString getVymLink();					// return path to map
   350 	QStringList getVymLinks();				// return paths in subtree
   351 	void followXLink (int);
   352 	void editXLink (int);
   353 
   354 
   355 
   356 
   357 ////////////////////////////////////////////
   358 // Scripting
   359 ////////////////////////////////////////////
   360 public:	
   361 
   362 	/* \brief Process one command and its parameters */
   363     void parseAtom (const QString &atom);	
   364 
   365 	/* \brief Runs the script */
   366 	void runScript (QString script);
   367 
   368 private:
   369 	Parser parser;
   370 
   371 ////////////////////////////////////////////
   372 // Exports
   373 ////////////////////////////////////////////
   374 private:
   375 	TreeItem::HideTmpMode hidemode;	// true while exporting to hide some stuff
   376 
   377 public:
   378 	/*! Set or unset temporary hiding of objects during export  */
   379 	void setExportMode (bool);
   380 
   381 	/*! Save as image */
   382     void exportImage (QString fname="",bool askForName=true,QString format="PNG");
   383 
   384 
   385 	/*! Export as XTML to directory */
   386     void exportXML(QString dir="", bool askForName=true);
   387 
   388 	/*! Export as ASCII text to file */
   389 	void exportASCII (QString fname="",bool askForName=true);  
   390 
   391 	/*! Export as XHTML to directory */
   392     void exportXHTML(const QString& dir="", bool askForName=true);	
   393 
   394     /*! Export as OpenOfficeOrg presentation */
   395     void exportOOPresentation(const QString &,const QString &);	
   396 
   397 
   398 ////////////////////////////////////////////
   399 // View related
   400 ////////////////////////////////////////////
   401 public:
   402 	void registerEditor (QWidget *);
   403 	void unregisterEditor (QWidget *);
   404 
   405 private: 
   406 	QPointF contextPos;					//!< local position during context menu
   407 public:
   408 	void setContextPos (QPointF);		//!< local position during context menu
   409 	void unsetContextPos ();			//!< forget local position after context menu
   410 
   411 	void updateNoteFlag();				//!< Signal origination in TextEditor
   412     void updateRelPositions();
   413 
   414 	QRectF getTotalBBox();
   415 	void reposition();					//!< Call reposition for all MCOs
   416 	void setHideTmpMode (TreeItem::HideTmpMode mode);	
   417 
   418 	QPolygonF shape(BranchObj *bo);		//!< Returns arbitrary shape of subtree
   419 	void moveAway (LinkableMapObj *lmo);//!< Autolayout: Move all out of the way
   420 
   421 	//void ensureSelectionVisible();		//!< Show selection in all views
   422 
   423 	void emitNoteHasChanged (TreeItem *ti);
   424 	void emitDataHasChanged (TreeItem *ti);
   425 
   426 signals:
   427 	void noteHasChanged (QModelIndex ix);
   428 	void dataHasChanged (QModelIndex ix);	//FIXME-3 necessary? There is dataChanged in AbstractModel
   429 	void newChildObject(QModelIndex ix);
   430 
   431 private:
   432 	MapEditor *mapEditor;
   433 
   434 	QColor defLinkColor;		// default color for links
   435 	QColor defXLinkColor;		// default color for xlinks
   436 	int defXLinkWidth;			// default width for xlinks
   437 	LinkableMapObj::ColorHint linkcolorhint;// use heading color or own color
   438 	LinkableMapObj::Style linkstyle;		// default style for links
   439 
   440 private:
   441     QPixmap getPixmap();
   442 
   443 public:
   444 	void setMapLinkStyle (const QString &);	// Set style of link
   445 	LinkableMapObj::Style getMapLinkStyle ();	// requested in LMO
   446 	void setMapDefLinkColor(QColor);		// default color of links
   447 	void setMapLinkColorHintInt();			// color of links
   448 	void setMapLinkColorHint(LinkableMapObj::ColorHint);// color of links
   449 	void toggleMapLinkColorHint();			// after changing linkStyles
   450     void selectMapBackgroundImage();
   451     void setMapBackgroundImage(const QString &);
   452     void selectMapBackgroundColor();
   453     void setMapBackgroundColor(QColor);
   454     QColor getMapBackgroundColor();
   455 
   456 
   457 	LinkableMapObj::ColorHint getMapLinkColorHint();
   458 	QColor getMapDefLinkColor();
   459 	void setMapDefXLinkColor(QColor);
   460 	QColor getMapDefXLinkColor();
   461 	void setMapDefXLinkWidth (int);
   462 	int getMapDefXLinkWidth();
   463 
   464 	/*!  Move absolutly to (x,y).  */	
   465     void move    (const double &x, const double &y);
   466 
   467 	/*!  Move relativly to (x,y).  */	
   468     void moveRel (const double &x, const double &y);
   469 
   470 ////////////////////////////////////////////
   471 // Animation  **experimental**
   472 ////////////////////////////////////////////
   473 private:	
   474 	QTimer *animationTimer;
   475 	bool animationUse;
   476 	uint animationTicks;
   477 	uint animationInterval;
   478 	int timerId;				// animation timer
   479 	QList <MapObj*> animObjList;// list with animated objects
   480 
   481 private slots:
   482 	void animate();						//!< Called by timer to animate stuff
   483 public:
   484 	void startAnimation(BranchObj *bo, const QPointF &start, const QPointF &dest);
   485 	void stopAnimation(MapObj *mo);
   486 
   487 ////////////////////////////////////////////
   488 // Network related 
   489 ////////////////////////////////////////////
   490 public:
   491     /*! \brief Networking states
   492 		
   493 		In Network modus we want to switch of saveState, autosave, ...
   494 	*/
   495 	enum NetState {
   496 		Offline,			//!< Offline
   497 		Client,				//!< I am the client and connected to server
   498 		Server				//!< I am the server
   499 	};
   500 
   501 private:
   502 	// Network connections **Experimental**
   503 	NetState netstate;			// offline, client, server
   504 	QTcpServer *tcpServer;		// Act as server in conference mode (experimental)
   505 	QList <QTcpSocket*> clientList;		// List of connected clients
   506 	quint16 sendCounter;		// Increased with every sent command
   507 
   508 	QTcpSocket	*clientSocket;	// socket of this client
   509 	QString server;				// server address of this client
   510 	int port;					// server port of this client
   511 
   512 
   513 
   514 protected:
   515 	void sendSelection();
   516 
   517 public:
   518 	void newServer();
   519 	void connectToServer();
   520 
   521 private slots:	
   522 	void newClient();
   523 	void sendData(const QString &s);
   524 	void readData();
   525 	void displayNetworkError (QAbstractSocket::SocketError);
   526 
   527 private:	
   528 	void displayClientError(QAbstractSocket::SocketError socketError);
   529 
   530 
   531 ////////////////////////////////////////////
   532 // Selection related 
   533 ////////////////////////////////////////////
   534 private:
   535 	Selection selection;
   536 	QString latestSelectionString;	// select string of latest added object
   537 
   538 signals:
   539 	void selectionChanged(const QItemSelection &, const QItemSelection &);
   540 
   541 public:
   542 	void setSelectionModel(QItemSelectionModel *);		// Set common selectionModel
   543 	QItemSelectionModel* getSelectionModel();
   544 
   545 	void setSelectionBlocked(bool);
   546 	bool isSelectionBlocked();
   547 
   548 	bool select ();							// select by using common QItemSlectionModel
   549 	bool select (const QString &);			// Select by string
   550 	bool select (LinkableMapObj *lmo);		// Select by pointer to LMO
   551 	bool select (TreeItem *ti );			// Select by point to TreeItem
   552 	void unselect();
   553 	void reselect();
   554 
   555 	void ensureSelectionVisible();			//!< Show selection in all views
   556 
   557 //	void selectInt(LinkableMapObj*);	//FIXME-4
   558 
   559 private:	
   560 	void selectNextBranchInt();		// Increment number of branch
   561 	void selectPrevBranchInt();		// Decrement number of branch
   562 public:	
   563     void selectUpperBranch();
   564     void selectLowerBranch();
   565     void selectLeftBranch();
   566     void selectRightBranch();
   567     void selectFirstBranch();
   568     void selectLastBranch();
   569 	void selectLastSelectedBranch();
   570 	void selectParent();
   571 
   572 public:
   573 	TreeItem::Type selectionType();
   574 	LinkableMapObj* getSelectedLMO();
   575 	BranchObj* getSelectedBranchObj();	// FIXME-2 replace by item...
   576 	BranchItem* getSelectedBranchItem();
   577 	MapCenterItem* getSelectedMapCenterItem();
   578 	TreeItem* getSelectedItem();
   579 	QModelIndex getSelectedIndex();
   580 	FloatImageObj* getSelectedFloatImage();
   581 	QString getSelectString ();
   582 	QString getSelectString (LinkableMapObj *lmo);
   583 	QString getSelectString (TreeItem *item);
   584 	
   585 	
   586 	/*
   587 public slots:
   588 	void changeSelection (const QItemSelection &newSel, const QItemSelection &delSel);
   589 	*/
   590 
   591 public:
   592 	void updateSelection(const QItemSelection &oldsel);
   593 	void updateSelection();
   594 	void selectMapLinkColor();
   595     void selectMapSelectionColor();
   596 private:	
   597     void setSelectionColorInt(QColor);
   598 	QItemSelectionModel *selModel;
   599 
   600 public:	
   601     void setSelectionColor(QColor);
   602     QColor getSelectionColor();
   603 };
   604 
   605 #endif