4 #include <QGraphicsScene>
6 #include <QtDBus/QDBusConnection>
10 #include "mapeditor.h"
13 #include "treemodel.h"
18 class VymModel : public TreeModel {
21 ////////////////////////////////////////////
22 // General housekeeping
23 ////////////////////////////////////////////
25 QGraphicsScene *mapScene;
26 QString version; //!< version string saved in vym file
36 void makeTmpDirectories(); //!< create temporary directories e.g. for history
38 MapEditor* getMapEditor(); // FIXME-2 still necessary?
40 bool isRepositionBlocked(); //!< While load or undo there is no need to update graphicsview
42 void updateActions(); //!< Update buttons in mainwindow
45 ////////////////////////////////////////////
47 ////////////////////////////////////////////
50 bool zipped; // should map be zipped
51 static int mapNum; // unique number for model used in save/undo
52 FileType fileType; // type of file, e.g. vym, freemind...
53 QString fileName; // short name of file (for tab)
54 QString filePath; // path to file which will be saved
55 QString fileDir; // dir where file is saved
56 QString destPath; // path to .vym file (needed for vymlinks)
57 QString mapName; // fileName without ".vym"
59 QString tmpMapDir; // tmp directory with undo history
61 QTimer *autosaveTimer;
62 QTimer *fileChangedTimer;
63 QDateTime fileChangedTime;
66 /*! This function saves all information of the map to disc.
67 saveToDir also calls the functions for all BranchObj and other objects in the map.
68 The structure of the map itself is returned as QString and passed back to Main,
69 where saveToDir is called initially
71 QString saveToDir (const QString &tmpdir, const QString &prefix, bool writeflags, const QPointF &offset, TreeItem *saveSel);
73 /*! Save all data in tree*/
74 QString saveTreeToDir (const QString&,const QString&,int, const QPointF&);// Save data recursivly to tempdir
77 /*! \brief Sets filepath, filename and mapname
79 If the filepath is "/home/tux/map.xml", then the filename will be set
80 to map.xml. The destname is needed for vymLinks, pointing to another map.
81 The destname holds the real name of the file, after it has been compressed, e.g. "map.vym"
85 /*! \brief Set File path
87 The destname is needed to construct the references between maps
89 void setFilePath (QString filepath,QString destname);
90 void setFilePath (QString); //!< Overloaded for convenience
91 QString getFilePath (); //!< Full path e.g. "/home/tux/map.xml"
92 QString getFileName (); //!< e.g. "map.xml"
93 QString getMapName (); //!< e.g. "map"
94 QString getDestPath (); //!< e.g. "/home/tux/map.vym"
98 The data is read from file. Depending on LoadMode the current
99 selection gets replaced by data or the data is appended.
101 ErrorCode load (QString, const LoadMode &, const FileType& ); // newmap, import/replace selection
104 /*! \brief Save the map to file */
105 ErrorCode save(const SaveMode &);
108 void addMapReplaceInt(const QString & undoSel, const QString & path);
109 void addMapInsertInt (const QString & path, int pos);
111 ImageItem* loadFloatImageInt (BranchItem *dst,QString);
112 void saveFloatImageInt (ImageItem*, const QString &, const QString &);
114 void loadFloatImage ();
115 void saveFloatImage ();
118 void importDirInt(BranchObj *,QDir);
119 void importDirInt(const QString&);
127 ////////////////////////////////////////////
128 // history (undo/redo)
129 ////////////////////////////////////////////
131 bool mapDefault; //!< Flag if map is untouched
132 bool mapChanged; //!< Flag if undo is possible
133 bool mapUnsaved; //!< Flag if map should be saved
135 QString histPath; //!< Path to history file
136 SimpleSettings undoSet; //!< undo/redo commands, saved in histPath
137 int stepsTotal; //!< total number of steps (undos+redos)
138 int curStep; //!< Current step in history (ring buffer)
139 int curClipboard; //!< number of history step, which is the current clipboard
140 int redosAvail; //!< Available number of redo steps
141 int undosAvail; //!< Available number of undo steps
142 bool blockReposition; //!< block while load or undo
143 bool blockSaveState; //!< block while load or undo
145 bool isDefault(); //!< true, if map is still the empty default map
146 void makeDefault(); //!< Reset changelog, declare this as default map
147 bool hasChanged() ; //!< true, if something has changed and is not saved yet
148 void setChanged(); //!< called from TextEditor via LinkableMapObj
150 /*! \brief Get name of object
152 Returns heading of a branch or name of an object for use in comment
155 QString getObjectName(LinkableMapObj*);
156 QString getObjectName(TreeItem*);
158 void redo(); //!< Redo last action
159 bool isRedoAvailable(); //!< True, if redo is available
160 void undo(); //!< Undo last action
161 bool isUndoAvailable(); //!< True, if undo is available
162 void gotoHistoryStep (int); //!< Goto a specifig step in history
165 QString getHistoryPath(); //!< Path to directory containing the history
167 /*! \brief Save the current changes in map
169 Two commands and selections are saved:
171 - undocommand and undoselection to undo the change
172 - redocommand and redoselection to redo the action after an undo
174 Additionally a comment is logged.
178 const SaveMode& savemode,
179 const QString &undoSelection,
180 const QString &undoCommand,
181 const QString &redoSelection,
182 const QString &redoCommand,
183 const QString &comment,
184 TreeItem *saveSelection);
185 /*! Overloaded for convenience */
186 void saveStateChangingPart(
187 TreeItem *undoSelection,
188 TreeItem* redoSelection,
189 const QString &redoCommand,
190 const QString &comment);
191 /*! Overloaded for convenience */
192 void saveStateRemovingPart(
193 TreeItem *redoSelection,
194 const QString &comment);
195 /*! Overloaded for convenience */
197 TreeItem *undoSelection,
198 const QString &undoCommand,
199 TreeItem *redoSelection,
200 const QString &redoCommand,
201 const QString &comment);
202 /*! Overloaded for convenience */
204 const QString &undoSelection,
205 const QString &undoCommand,
206 const QString &redoSelection,
207 const QString &redoCommand,
208 const QString &comment) ;
210 const QString &undoCommand,
211 const QString &redoCommand,
212 const QString &comment) ;
215 ////////////////////////////////////////////
217 ////////////////////////////////////////////
219 void setScene(QGraphicsScene *s);
220 QGraphicsScene *getScene();
222 TreeItem* findBySelectString (QString s);
223 TreeItem* findID (const QString &s); // find MapObj by previously set ID
226 ////////////////////////////////////////////
228 ////////////////////////////////////////////
230 void setVersion(const QString &);
231 void setAuthor (const QString &);
232 QString getAuthor ();
233 void setComment (const QString &);
234 QString getComment ();
239 void setHeading(const QString &); //!< Set heading of branch
240 // QString getHeading (bool &ok,QPoint &p); //!< Get heading, ok if selection is branch
243 BranchItem* findCurrent; // next object in find process
244 BranchItem* findPrevious; // next object in find process
245 bool EOFind; // true, if search failed
247 BranchItem* findText(QString,bool); // Find object
248 void findReset(); // Reset Search
250 void setURL(const QString &url);
251 QString getURL(); // returns URL of selection or ""
252 QStringList getURLs(); // returns URLs of subtree
255 void setFrameType(const FrameObj::FrameType &);
256 void setFrameType(const QString &);
257 void setFramePenColor (const QColor &);
258 void setFrameBrushColor (const QColor &);
259 void setFramePadding (const int &);
260 void setFrameBorderWidth (const int &);
261 void setIncludeImagesVer(bool);
262 void setIncludeImagesHor(bool);
263 void setHideLinkUnselected (bool);
265 /*! Should object be hidden in exports (clouded)? */
266 void setHideExport(bool);
268 /*! Should object be hidden in exports (clouded)? */
269 void toggleHideExport();
271 void copy(); //!< Copy to clipboard
273 void pasteNoSave(const int &n); //!< paste clipboard to branch
275 void paste(); //!< Paste clipboard to branch and backup
276 void cut(); //!< Cut to clipboard (and copy)
278 void moveUp(); //!< Move branch up
279 void moveDown(); //!< Move branch down
280 void sortChildren(); //!< Sort children lexically
282 // The create methods are used to quickly parse a XML file
283 BranchItem* createMapCenter(); //!< Create MapCenter
284 BranchItem* createBranch(BranchItem *dst); //!< Create Branch
285 ImageItem* createImage(BranchItem *dst); //!< Create image
287 /*! \brief Add new mapcenter
289 Disclaimer: Still experimental, not fully supported yet.
291 BranchItem* addMapCenter();
293 BranchItem* addMapCenter(QPointF absPos);
295 /*! \brief Add new branch
297 Depending on num the new branch is created
299 -3 above selection as child of selections parent
300 -2 as child of selection
301 -1 below selection as child of selections parent
302 0..n insert at a specific position in selections parent
303 (needed for free relinking)
307 BranchItem* addNewBranchInt(BranchItem *dst, int pos); // pos allows to add above/below selection
311 Depending on num the new branch is created
313 0 as child of selection
316 BranchItem* addNewBranch(int pos=0);
317 BranchItem* addNewBranchBefore(); //!< Insert branch between selection and its parent
318 /*! \brief Relink a branch to a new destination dst
319 Relinks branch to dst at branch position pos. There is no saveState
320 here, as for example moveUp or moving in MapEditor have
321 different needs to call saveState
322 Returns true if relinking was successful.
324 bool relinkBranch (BranchItem* branch, BranchItem* dst, int pos =-1);
325 bool relinkImage (ImageItem* image, BranchItem* dst);
327 void deleteSelection(); //!< Delete selection
328 void deleteKeepChildren(); //!< remove branch, but keep children
329 void deleteChildren(); //!< keep branch, but remove children
332 TreeItem* deleteItem(TreeItem*); //!< Delete item and return parent (if parent!= rootItem)
333 bool scrollBranch(BranchItem *);
334 bool unscrollBranch(BranchItem *);
337 void unscrollChildren();
338 void emitExpandAll();
343 void toggleStandardFlag (const QString &name, FlagRow *master=NULL);
344 void addFloatImage(const QPixmap &img);
346 void colorBranch(QColor);
347 void colorSubtree(QColor);
348 QColor getCurrentHeadingColor();
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);
367 ////////////////////////////////////////////
369 ////////////////////////////////////////////
372 /* \brief Process one command and its parameters */
373 void parseAtom (const QString &atom);
375 /* \brief Runs the script */
376 void runScript (QString script);
381 ////////////////////////////////////////////
383 ////////////////////////////////////////////
385 TreeItem::HideTmpMode hidemode; // true while exporting to hide some stuff
388 /*! Set or unset temporary hiding of objects during export */
389 void setExportMode (bool);
392 void exportImage (QString fname="",bool askForName=true,QString format="PNG");
395 /*! Export as XTML to directory */
396 void exportXML(QString dir="", bool askForName=true);
398 /*! Export as ASCII text to file */
399 void exportASCII (QString fname="",bool askForName=true);
401 /*! Export as XHTML to directory */
402 void exportXHTML(const QString& dir="", bool askForName=true);
404 /*! Export as OpenOfficeOrg presentation */
405 void exportOOPresentation(const QString &,const QString &);
408 ////////////////////////////////////////////
410 ////////////////////////////////////////////
412 void registerEditor (QWidget *);
413 void unregisterEditor (QWidget *);
416 QPointF contextPos; //!< local position during context menu
418 void setContextPos (QPointF); //!< local position during context menu
419 void unsetContextPos (); //!< forget local position after context menu
421 void updateNoteFlag(); //!< Signal origination in TextEditor
422 void updateRelPositions();
424 QRectF getTotalBBox();
425 void reposition(); //!< Call reposition for all MCOs
426 void setHideTmpMode (TreeItem::HideTmpMode mode);
428 //FIXME-5 QPolygonF shape(BranchObj *bo); //!< Returns arbitrary shape of subtree
429 //FIXME-5 void moveAway (LinkableMapObj *lmo);//!< Autolayout: Move all out of the way
431 void emitNoteHasChanged (TreeItem *ti);
432 void emitDataHasChanged (TreeItem *ti);
435 void noteHasChanged (QModelIndex ix);
436 void newChildObject(QModelIndex ix);
439 MapEditor *mapEditor;
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
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();
464 LinkableMapObj::ColorHint getMapLinkColorHint();
465 QColor getMapDefLinkColor();
466 void setMapDefXLinkColor(QColor);
467 QColor getMapDefXLinkColor();
468 void setMapDefXLinkWidth (int);
469 int getMapDefXLinkWidth();
471 /*! Move absolutly to (x,y). */
472 void move (const double &x, const double &y);
474 /*! Move relativly to (x,y). */
475 void moveRel (const double &x, const double &y);
477 ////////////////////////////////////////////
478 // Animation **experimental**
479 ////////////////////////////////////////////
481 QTimer *animationTimer;
484 uint animationInterval;
485 int timerId; // animation timer
486 QList <MapObj*> animObjList;// list with animated objects //FIXME-2 should go to MapEditor
489 void animate(); //!< Called by timer to animate stuff
491 void startAnimation(BranchObj *bo, const QPointF &start, const QPointF &dest);
492 void stopAnimation(MapObj *mo);
494 ////////////////////////////////////////////
496 ////////////////////////////////////////////
498 /*! \brief Networking states
500 In Network modus we want to switch of saveState, autosave, ...
503 Offline, //!< Offline
504 Client, //!< I am the client and connected to server
505 Server //!< I am the server
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
515 QTcpSocket *clientSocket; // socket of this client
516 QString server; // server address of this client
517 int port; // server port of this client
522 void sendSelection();
526 void connectToServer();
530 void sendData(const QString &s);
532 void displayNetworkError (QAbstractSocket::SocketError);
535 void displayClientError(QAbstractSocket::SocketError socketError);
538 ////////////////////////////////////////////
540 ////////////////////////////////////////////
542 TreeItem *latestAddedItem; // latest added object, reset on setChanged()
545 void setSelectionModel(QItemSelectionModel *); // Set common selectionModel
546 QItemSelectionModel* getSelectionModel();
548 void setSelectionBlocked(bool);
549 bool isSelectionBlocked();
551 bool select (); //! select by using common QItemSelectionModel
552 bool select (const QString &); //! Select by string
553 bool select (LinkableMapObj *lmo); //! Select by pointer to LMO
554 bool select (TreeItem *ti ); //! Select by pointer to TreeItem
555 bool select (const QModelIndex &index); //! Select by ModelIndex
559 void emitShowSelection(); //!< Show selection in all views
561 void showSelection();
563 // void selectInt(LinkableMapObj*); //FIXME-4
566 void selectNextBranchInt(); // Increment number of branch
567 void selectPrevBranchInt(); //! Select the branch which would be above in vymmap view
568 void selectAboveBranchInt(); //! Select the branch which would be above current selection in TreeView
569 void selectBelowBranchInt(); // Increment number of branch
571 void selectUpperBranch();
572 void selectLowerBranch();
573 void selectLeftBranch();
574 void selectRightBranch();
575 void selectFirstBranch();
576 void selectLastBranch();
577 void selectLastSelectedBranch();
581 TreeItem::Type selectionType();
582 LinkableMapObj* getSelectedLMO();
583 BranchObj* getSelectedBranchObj(); // FIXME-3 replace by item...
584 BranchItem* getSelectedBranchItem();
585 TreeItem* getSelectedItem();
586 QModelIndex getSelectedIndex();
587 ImageItem* getSelectedImageItem();
588 QString getSelectString ();
589 QString getSelectString (LinkableMapObj *lmo);
590 QString getSelectString (TreeItem *item);
594 void selectionChanged(const QItemSelection &newsel, const QItemSelection &oldsel);
597 void updateSelection (const QItemSelection &newSel, const QItemSelection &delSel);
600 void emitSelectionChanged(const QItemSelection &oldsel);
601 void emitSelectionChanged();
602 void selectMapLinkColor();
603 void selectMapSelectionColor();
605 void setSelectionColorInt(QColor);
606 QItemSelectionModel *selModel;
607 QString lastSelectString;
608 bool selectionBlocked; //! Used to block changes of selection while editing a heading
611 void setSelectionColor(QColor);
612 QColor getSelectionColor();