mapeditor.h
author insilmaril
Thu, 23 Nov 2006 13:53:08 +0000
changeset 406 1c8ff1928b97
parent 404 53efc2562a7d
child 407 5db8dfd30ea2
permissions -rw-r--r--
Removed more QT3 stuff. Drag & Drop not 100% functional at the moment
insilmaril@0
     1
#ifndef MAPEDITOR_H
insilmaril@0
     2
#define MAPEDITOR_H
insilmaril@0
     3
insilmaril@366
     4
#include <q3canvas.h>
insilmaril@366
     5
#include <QBuffer>
insilmaril@0
     6
insilmaril@0
     7
#include "mapcenterobj.h"
insilmaril@175
     8
#include "file.h"
insilmaril@0
     9
#include "misc.h"
insilmaril@366
    10
#include "selection.h"
insilmaril@366
    11
#include "settings.h"
insilmaril@0
    12
insilmaril@366
    13
class Q3NetworkOperation;
insilmaril@366
    14
class Q3UrlOperator;
insilmaril@119
    15
insilmaril@366
    16
class MapEditor : public Q3CanvasView , public xmlObj {
insilmaril@0
    17
    Q_OBJECT
insilmaril@0
    18
insilmaril@0
    19
public:
insilmaril@390
    20
    MapEditor(QWidget* parent=0,  const char* name=0, Qt::WFlags f=0);
insilmaril@0
    21
	~MapEditor();
insilmaril@0
    22
    MapCenterObj* getMapCenter();
insilmaril@366
    23
	Q3Canvas* getCanvas();
insilmaril@0
    24
	void adjustCanvasSize();// adjust canvas size to map and scrollview
insilmaril@139
    25
	bool isRepositionBlocked(); // block while load or undo
insilmaril@0
    26
	
insilmaril@0
    27
private:
insilmaril@295
    28
	QString getName(LinkableMapObj*);	// Get e.g. heading or filename
insilmaril@0
    29
	void makeTmpDirs();		// create temporary directories
insilmaril@106
    30
    QString saveToDir(const QString&,const QString &,bool, const QPoint &,LinkableMapObj*);
insilmaril@395
    31
    void saveStateChangingPart (LinkableMapObj *, LinkableMapObj *, const QString &, const QString &);
insilmaril@393
    32
    void saveStateRemovingPart (LinkableMapObj *, const QString &);
insilmaril@366
    33
    void saveState(LinkableMapObj *, const QString &, LinkableMapObj *, const QString &, const QString &);
insilmaril@366
    34
    void saveState(const QString &, const QString &, const QString &, const QString &, const QString &);
insilmaril@366
    35
    void saveState(const SaveMode&, const QString &, const QString &, const QString &, const QString &, const QString &, LinkableMapObj *);
insilmaril@393
    36
public:	
insilmaril@106
    37
    void parseAtom(const QString &);	
insilmaril@393
    38
private:
insilmaril@395
    39
    void addFloatImageInt(const QPixmap &img);
insilmaril@119
    40
insilmaril@119
    41
  private slots:
insilmaril@119
    42
    void fetchImage(const QString &img);
insilmaril@366
    43
    void imageDataFetched(const QByteArray &, Q3NetworkOperation *);
insilmaril@366
    44
    void imageDataFinished(Q3NetworkOperation *);
insilmaril@0
    45
insilmaril@0
    46
public:
insilmaril@295
    47
	void toggleHistoryWindow();
insilmaril@0
    48
	bool isDefault();		// false, if map was changed once
insilmaril@0
    49
    bool isUnsaved();		// save necessary
insilmaril@0
    50
    bool hasChanged();		// undo possible
insilmaril@0
    51
	void setChanged();		// called from NoteEditor via LMO
insilmaril@0
    52
	void closeMap();
insilmaril@0
    53
	void setFilePath (QString);	
insilmaril@0
    54
	void setFilePath (QString,QString);	
insilmaril@0
    55
	QString getFilePath ();	// Full path e.g. "/home/tux/map.xml"
insilmaril@0
    56
	QString getFileName ();	// e.g. "map.xml"
insilmaril@0
    57
	QString getMapName ();	// e.g. "map"
insilmaril@0
    58
	QString getDestPath (); // e.g. "/home/tux/map.vym"
insilmaril@205
    59
    ErrorCode load (QString, LoadMode );	// newmap, import/replace selection
insilmaril@163
    60
public:
insilmaril@0
    61
    int save(const SaveMode &);	// Save map 
insilmaril@0
    62
	void setZipped(bool);		// save map zipped
insilmaril@0
    63
	bool saveZipped();			// 1 if file will be saved zipped
insilmaril@0
    64
    void print();				// print canvas
insilmaril@0
    65
private:
insilmaril@0
    66
    QPixmap getPixmap();
insilmaril@260
    67
	void setHideTmpMode (HideTmpMode);	// temporary hide stuff
insilmaril@260
    68
	HideTmpMode getHideTmpMode();		// temporary hide stuff
insilmaril@0
    69
public:
insilmaril@260
    70
	void setExportMode (bool);			// temporary hide stuff during export
insilmaril@366
    71
    void exportImage (QString fn);			// export as PNG	
insilmaril@366
    72
    void exportImage (QString fn, QString);	// export in given format
insilmaril@185
    73
    void exportOOPresentation(const QString &,const QString &);
insilmaril@0
    74
    void exportXML(const QString&);		// export to directory
insilmaril@0
    75
    void clear();		// clear map
insilmaril@106
    76
    void copy();		// copy branch to clipboard
insilmaril@163
    77
    void redo();		// redo last action
insilmaril@390
    78
	bool isRedoAvailable();
insilmaril@0
    79
    void undo();		// undo last action
insilmaril@390
    80
	bool isUndoAvailable();
insilmaril@404
    81
	void gotoHistoryStep (int);// goto a step in history
insilmaril@0
    82
private:	
insilmaril@394
    83
    void addMapReplaceInt(const QString & undoSel, const QString & path);
insilmaril@394
    84
    void addMapInsertInt (const QString & path, int pos);
insilmaril@166
    85
    void pasteNoSave();		// paste clipboard to branch
insilmaril@0
    86
    void cutNoSave();	// cut to clipboard
insilmaril@0
    87
public:	
insilmaril@0
    88
    void paste();		// paste clipboard to branch and backup
insilmaril@0
    89
    void cut();			// cut to clipboard and backup
insilmaril@393
    90
    void move    (const int &x, const int &y);
insilmaril@393
    91
    void moveRel (const int &x, const int &y);
insilmaril@0
    92
    void moveBranchUp();
insilmaril@0
    93
    void moveBranchDown();
insilmaril@393
    94
	QString getHeading (bool &ok,QPoint &p); // Get heading, ok if selection is branch
insilmaril@366
    95
	void setHeading(const QString &);
insilmaril@106
    96
private:
insilmaril@366
    97
	void setHeadingInt(const QString &);
insilmaril@366
    98
	void setURLInt(const QString &);		// Just set the URL for selection
insilmaril@366
    99
	void setVymLinkInt(const QString &);	// Set vymLink for selection
insilmaril@366
   100
    BranchObj* addNewBranchInt(int);		// pos allows to add above/below selection
insilmaril@106
   101
public:	
insilmaril@394
   102
    BranchObj* addNewBranch(int);			// pos allows to add above/below selection
insilmaril@394
   103
    BranchObj* addNewBranchBefore();		// insert and make selection its
insilmaril@0
   104
    void deleteSelection();
insilmaril@0
   105
	LinkableMapObj* getSelection();	// returns selection
insilmaril@0
   106
	void unselect();				// before changing current noteedit
insilmaril@0
   107
	void reselect();				// after  changing current noteedit
insilmaril@366
   108
	bool select(const QString &);	// Select by string
insilmaril@366
   109
	QString getSelectString();
insilmaril@0
   110
private:	
insilmaril@366
   111
	void selectInt(LinkableMapObj*);	
insilmaril@366
   112
	void selectNextBranchInt();		// Increment number of branch
insilmaril@366
   113
	void selectPrevBranchInt();		// Decrement number of branch
insilmaril@0
   114
public:	
insilmaril@0
   115
    void selectUpperBranch();
insilmaril@0
   116
    void selectLowerBranch();
insilmaril@0
   117
    void selectLeftBranch();
insilmaril@0
   118
    void selectRightBranch();
insilmaril@0
   119
    void selectFirstBranch();
insilmaril@0
   120
    void selectLastBranch();
insilmaril@398
   121
    void selectMapBackgroundColor();
insilmaril@398
   122
    void setMapBackgroundColor(QColor);
insilmaril@398
   123
    QColor getMapBackgroundColor();
insilmaril@395
   124
    QColor getCurrentHeadingColor();
insilmaril@395
   125
    void colorItem(QColor);
insilmaril@395
   126
    void colorBranch(QColor);
insilmaril@0
   127
	void toggleStandardFlag(QString);
insilmaril@0
   128
	virtual void setViewCenter();			// needed for zooming
insilmaril@0
   129
    BranchObj* findText(QString,bool);		// Find object
insilmaril@0
   130
    void findReset();						// Reset Find 
insilmaril@395
   131
	void setURL(const QString &);			// set the URL
insilmaril@0
   132
	void editURL();							// edit the URL
insilmaril@266
   133
	QString getURL();						// returns URL of selection or ""
insilmaril@366
   134
	QStringList getURLs();					// returns URLs of subtree
insilmaril@0
   135
	void editHeading2URL();					// copy heading to URL
insilmaril@0
   136
	void editBugzilla2URL();				// create URL to Bugzilla
insilmaril@175
   137
	void editFATE2URL();					// create URL to FATE
insilmaril@0
   138
	void editVymLink();						// edit link to another map
insilmaril@0
   139
	void deleteVymLink();					// delete link to another map
insilmaril@0
   140
	QString getVymLink();					// return path to map
insilmaril@366
   141
	QStringList getVymLinks();				// return paths in subtree
insilmaril@395
   142
	void setHideExport(bool);				// toggle the export flag
insilmaril@243
   143
	void toggleHideExport();				// toggle the export flag
insilmaril@395
   144
	void deleteKeepChilds();				// remove but keep childs
insilmaril@395
   145
	void deleteChilds();					// remove childs
insilmaril@0
   146
	void editMapInfo();						// dialog to enter author, ...
insilmaril@0
   147
	void updateActions();					// update e.g. format buttons
insilmaril@160
   148
	void updateNoteFlag();					// when TextEditor changes
insilmaril@398
   149
	void setMapAuthor (const QString &);
insilmaril@398
   150
	void setMapComment(const QString &);
insilmaril@398
   151
	void setMapLinkStyle (const QString &);	// Set style of link
insilmaril@398
   152
	LinkStyle getMapLinkStyle ();			// requested in LMO
insilmaril@398
   153
	void setMapDefLinkColor(QColor);		// default color of links
insilmaril@398
   154
	void setMapLinkColorHintInt();			// color of links
insilmaril@398
   155
	void setMapLinkColorHint(LinkColorHint);// color of links
insilmaril@398
   156
	LinkColorHint getMapLinkColorHint();
insilmaril@398
   157
	QColor getMapDefLinkColor();
insilmaril@398
   158
	void setMapDefXLinkColor(QColor);
insilmaril@398
   159
	QColor getMapDefXLinkColor();
insilmaril@398
   160
	void setMapDefXLinkWidth (int);
insilmaril@398
   161
	int getMapDefXLinkWidth();
insilmaril@398
   162
	void toggleMapLinkColorHint();			// after changing linkStyles
insilmaril@398
   163
    void selectMapLinkColor();
insilmaril@0
   164
    void toggleScroll();
insilmaril@0
   165
    void unScrollAll();
insilmaril@0
   166
	void loadFloatImage ();
insilmaril@366
   167
	void saveFloatImage ();
insilmaril@0
   168
	void setFrame(const FrameType &);
insilmaril@175
   169
	void setIncludeImagesVer(bool);
insilmaril@175
   170
	void setIncludeImagesHor(bool);
insilmaril@160
   171
	void setHideLinkUnselected (bool);
insilmaril@160
   172
	bool getHideLinkUnselected ();
insilmaril@0
   173
private:	
insilmaril@366
   174
    void importDirInt(BranchObj *,QDir);
insilmaril@0
   175
public:	
insilmaril@0
   176
    void importDir();
insilmaril@95
   177
	void followXLink (int);
insilmaril@95
   178
	void editXLink (int);
insilmaril@366
   179
    void testFunction();					// just testing new stuff
insilmaril@366
   180
											// set /mainwindo/showTestMenu=true...
insilmaril@0
   181
insilmaril@0
   182
protected:
insilmaril@0
   183
	void ensureSelectionVisible();		
insilmaril@0
   184
	virtual void updateViewCenter();	// needed for zooming
insilmaril@0
   185
	virtual void contentsContextMenuEvent ( QContextMenuEvent *e );
insilmaril@398
   186
    virtual void keyPressEvent(QKeyEvent*);
insilmaril@398
   187
    virtual void keyReleaseEvent(QKeyEvent*);
insilmaril@0
   188
    virtual void contentsMousePressEvent(QMouseEvent*);
insilmaril@0
   189
    virtual void contentsMouseReleaseEvent(QMouseEvent*);
insilmaril@0
   190
    virtual void contentsMouseDoubleClickEvent(QMouseEvent*);
insilmaril@0
   191
    virtual void contentsMouseMoveEvent(QMouseEvent*);
insilmaril@0
   192
insilmaril@406
   193
	virtual void contentsDragEnterEvent(QDragEnterEvent *event);
insilmaril@119
   194
    virtual void contentsDropEvent(QDropEvent *event);
insilmaril@0
   195
private:
insilmaril@366
   196
    Q3Canvas* mapCanvas;
insilmaril@0
   197
    MapCenterObj* mapCenter;
insilmaril@0
   198
insilmaril@0
   199
	bool adjustCanvasRequested;	// collect requests until end of user event
insilmaril@0
   200
	BranchObj *editingBO;		// entering Text into BO
insilmaril@0
   201
insilmaril@97
   202
	QColor defLinkColor;		// default color for links
insilmaril@97
   203
	QColor defXLinkColor;		// default color for xlinks
insilmaril@97
   204
	int defXLinkWidth;			// default width for xlinks
insilmaril@0
   205
	LinkColorHint linkcolorhint;// use heading color or own color
insilmaril@0
   206
	LinkStyle linkstyle;		// default style for links
insilmaril@0
   207
insilmaril@398
   208
    QCursor HandOpenCursor;		// cursor while moving canvas view
insilmaril@398
   209
	QCursor PickColorCursor;	// cursor while picking color 
insilmaril@398
   210
	QCursor CopyCursor;			// cursor while picking color 
insilmaril@398
   211
	QCursor XLinkCursor;		// cursor while picking color 
insilmaril@83
   212
	bool pickingColor;
insilmaril@83
   213
	bool drawingLink;			// true while creating a link
insilmaril@93
   214
	bool copyingObj;			// true while creating a link
insilmaril@95
   215
	XLinkObj* tmpXLink;
insilmaril@366
   216
insilmaril@366
   217
	Selection xelection;
insilmaril@0
   218
    LinkableMapObj* selection;		// select a LinkableMapObj
insilmaril@0
   219
    LinkableMapObj* selectionLast;	// last selection 
insilmaril@0
   220
    MapObj* movingObj;				// moving a MapObj
insilmaril@83
   221
	MapObj* linkingObj_src;			// part of a link
insilmaril@129
   222
    QPoint movingObj_orgPos;		// org. pos of mouse before move
insilmaril@366
   223
    QPoint movingObj_orgRelPos;		// org. relative pos of mouse before move
insilmaril@0
   224
    QPoint movingObj_start;			// rel. pos of mouse to absPos 
insilmaril@0
   225
    QPoint movingCont_start;		// inital pos of moving Content or
insilmaril@0
   226
    QPoint movingVec;				// how far has Content moved
insilmaril@0
   227
	QPoint movingCenter;			// used when zooming
insilmaril@0
   228
    QPrinter* printer;				// Printing
insilmaril@0
   229
insilmaril@0
   230
    bool mapDefault;				// Flag if map is untouched
insilmaril@0
   231
    bool mapChanged;				// Flag if undo is possible
insilmaril@0
   232
	bool mapUnsaved;				// Flag if map should be saved
insilmaril@0
   233
insilmaril@0
   234
	bool printFrame;			// Print frame around map
insilmaril@0
   235
	bool printFooter;			// Print footer below map
insilmaril@0
   236
insilmaril@0
   237
	bool zipped;				// should map be zipped
insilmaril@393
   238
	static	int mapNum;			// unique number for Editor
insilmaril@0
   239
	QString fileName;			// short name of file (for tab)
insilmaril@0
   240
	QString filePath;			// path to file which will be saved
insilmaril@0
   241
	QString fileDir;			// dir where file is saved
insilmaril@0
   242
	QString destPath;			// path to .vym file (needed for vymlinks)
insilmaril@0
   243
	QString mapName;			// fileName without ".vym"
insilmaril@0
   244
insilmaril@377
   245
	QString tmpMapDir;			// tmp directory with undo history
insilmaril@366
   246
	QString histPath;			// Path to history file
insilmaril@381
   247
	int stepsTotal;				// total number of steps (undos+redos) 
insilmaril@366
   248
	SimpleSettings undoSet;		// undo/redo commands
insilmaril@139
   249
	bool blockReposition;		// block while load or undo
insilmaril@139
   250
	bool blockSaveState;		// block while load or undo
insilmaril@0
   251
insilmaril@0
   252
	BranchObj* itFind;			// next object in find process
insilmaril@0
   253
	bool EOFind;				// true, if search failed
insilmaril@0
   254
insilmaril@0
   255
	QPoint exportOffset;		// set before export, used in save
insilmaril@260
   256
	HideTmpMode hidemode;			// true while exporting to hide some stuff
insilmaril@260
   257
	
insilmaril@0
   258
    void resizeEvent( QResizeEvent * );
insilmaril@119
   259
insilmaril@381
   260
	Q3UrlOperator *urlOperator;
insilmaril@381
   261
	QDataStream *imageData;
insilmaril@381
   262
	QBuffer *imageBuffer;
insilmaril@0
   263
};
insilmaril@0
   264
#endif
insilmaril@0
   265