7 #include <qfiledialog.h>
11 #include "mapcenterobj.h"
14 enum ModifierMode {pickColorMode,linkObjectsMode};
16 class MapEditor : public QCanvasView , public xmlObj {
20 MapEditor(QWidget* parent=0, bool interactive=false, const char* name=0, WFlags f=0);
23 QColor backgroundColor();
24 MapCenterObj* getMapCenter();
26 void adjustCanvasSize();// adjust canvas size to map and scrollview
27 bool blockReposition(); // block while load or undo
30 void makeTmpDirs(); // create temporary directories
31 void delTmpDirs(); // delete temporary directories
32 void makeSubDirs(const QString&);
33 // create subdirs in dir
34 QString saveToDir(const QString&,const QString &,bool, const QPoint
36 void saveState(); // save actual state to backup
37 void saveState(const SaveMode&, LinkableMapObj *);
40 void finishedLineEditNoSave();
43 bool isDefault(); // false, if map was changed once
44 bool isUnsaved(); // save necessary
45 bool hasChanged(); // undo possible
46 void setChanged(); // called from NoteEditor via LMO
48 void setFilePath (QString);
49 void setFilePath (QString,QString);
50 QString getFilePath (); // Full path e.g. "/home/tux/map.xml"
51 QString getFileName (); // e.g. "map.xml"
52 QString getMapName (); // e.g. "map"
53 QString getDestPath (); // e.g. "/home/tux/map.vym"
54 int load (QString&, const LoadMode &); // newmap, import/replace selection
55 int save(const SaveMode &); // Save map
56 void setZipped(bool); // save map zipped
57 bool saveZipped(); // 1 if file will be saved zipped
58 void print(); // print canvas
62 void exportImage (QString fn); // export as PNG
63 void exportImage (QString fn, int); // export in given format
65 void exportXML(const QString&); // export to directory
66 void clear(); // clear map
67 void undo(); // undo last action
68 void copy(); // copy branch to clipboard
70 LinkableMapObj* pasteNoSave(); // paste clipboard to branch
71 void cutNoSave(); // cut to clipboard
73 void paste(); // paste clipboard to branch and backup
74 void cut(); // cut to clipboard and backup
76 void moveBranchDown();
78 void addNewBranch(int); // pos allows to add above/below selection
79 void deleteSelection();
80 LinkableMapObj* getSelection(); // returns selection
81 LinkableMapObj* findObj (QString);
82 bool select(const QString &); // Select
83 void unselect(); // before changing current noteedit
84 void reselect(); // after changing current noteedit
86 void selectNextBranch(); // Increment number of branch
87 void selectPrevBranch(); // Decrement number of branch
89 void selectUpperBranch();
90 void selectLowerBranch();
91 void selectLeftBranch();
92 void selectRightBranch();
93 void selectFirstBranch();
94 void selectLastBranch();
95 void setColor(QColor);
96 void selectBackgroundColor();
97 void setBackgroundColor(QColor);
101 void toggleStandardFlag(QString);
102 virtual void setViewCenter(); // needed for zooming
103 BranchObj* findText(QString,bool); // Find object
104 void findReset(); // Reset Find
105 void openURL(); // open URL in external browser
106 void editURL(); // edit the URL
107 void editHeading2URL(); // copy heading to URL
108 void editBugzilla2URL(); // create URL to Bugzilla
109 void editVymLink(); // edit link to another map
110 void deleteVymLink(); // delete link to another map
111 QString getVymLink(); // return path to map
112 void editMapInfo(); // dialog to enter author, ...
113 void updateActions(); // update e.g. format buttons
114 void setLinkStyle (LinkStyle); // Set style of link
115 LinkStyle getLinkStyle (); // requested in LMO
116 void setLinkColor(QColor); // default color of links
117 void setLinkColorHint(); // color of links
118 void setLinkColorHint(LinkColorHint); // color of links
119 LinkColorHint getLinkColorHint();
120 QColor getDefLinkColor();
121 void toggleLinkColorHint(); // after changing linkStyles
122 void selectLinkColor();
125 void loadFloatImage ();
126 void saveFloatImage (int);
127 void toggleFloatExport();
128 void setFrame(const FrameType &);
130 void importDir(BranchObj *,QDir);
133 void testFunction(); // FIXME just testing
136 void ensureSelectionVisible();
137 virtual void updateViewCenter(); // needed for zooming
138 virtual void contentsContextMenuEvent ( QContextMenuEvent *e );
139 virtual void contentsMousePressEvent(QMouseEvent*);
140 virtual void contentsMouseReleaseEvent(QMouseEvent*);
141 virtual void contentsMouseDoubleClickEvent(QMouseEvent*);
142 virtual void contentsMouseMoveEvent(QMouseEvent*);
146 MapCenterObj* mapCenter;
148 bool adjustCanvasRequested; // collect requests until end of user event
149 BranchObj *editingBO; // entering Text into BO
152 QColor actColor; // actual color
153 QColor deflinkcolor; // default color for links
154 LinkColorHint linkcolorhint;// use heading color or own color
155 LinkStyle linkstyle; // default style for links
157 ModifierMode modifierMode; // pick color or link objects?
159 QCursor handOpenCursor; // cursor while moving canvas view
160 QCursor pickColorCursor; // cursor while picking color
162 bool drawingLink; // true while creating a link
165 LinkableMapObj* selection; // select a LinkableMapObj
166 LinkableMapObj* selectionLast; // last selection
167 MapObj* movingObj; // moving a MapObj
168 MapObj* linkingObj_src; // part of a link
169 QPoint movingObj_start; // rel. pos of mouse to absPos
170 QPoint movingCont_start; // inital pos of moving Content or
171 QPoint movingVec; // how far has Content moved
172 QPoint movingCenter; // used when zooming
173 QPrinter* printer; // Printing
175 bool mapDefault; // Flag if map is untouched
176 bool mapChanged; // Flag if undo is possible
177 bool mapUnsaved; // Flag if map should be saved
178 QString backupXML; // backup (XML) for undo
179 LinkableMapObj* undoSelection; // replace this LMO with vympart from backup
182 bool printFrame; // Print frame around map
183 bool printFooter; // Print footer below map
185 bool zipped; // should map be zipped
186 QString fileName; // short name of file (for tab)
187 QString filePath; // path to file which will be saved
188 QString fileDir; // dir where file is saved
189 QString destPath; // path to .vym file (needed for vymlinks)
190 QString mapName; // fileName without ".vym"
191 QString lastImageDir; // save dir for adding images
193 bool isInteractive; // non interactive don't need tmpdirs
194 QString bakMapDir; // tmp directory with data for undo
195 bool blockreposition; // block while load or undo
197 BranchObj* itFind; // next object in find process
198 bool EOFind; // true, if search failed
200 QPoint exportOffset; // set before export, used in save
201 void resizeEvent( QResizeEvent * );