mapeditor.h
author insilmaril
Sat, 19 Feb 2005 17:14:33 +0000
changeset 90 10f3d35dcbad
parent 89 9db3eaa21237
child 93 31c6ce8efbc7
permissions -rw-r--r--
moved translation files to lang, basic link functionality
     1 #ifndef MAPEDITOR_H
     2 #define MAPEDITOR_H
     3 
     4 #include <qcanvas.h>
     5 #include <qlineedit.h>
     6 #include <qcursor.h>
     7 #include <qfiledialog.h>
     8 #include <qevent.h>
     9 #include <qprocess.h>
    10 
    11 #include "mapcenterobj.h"
    12 #include "misc.h"
    13 
    14 class MapEditor : public QCanvasView , public xmlObj {
    15     Q_OBJECT
    16 
    17 public:
    18     MapEditor(QWidget* parent=0, bool interactive=false, const char* name=0, WFlags f=0);
    19 	~MapEditor();
    20     QColor color();
    21     QColor backgroundColor();
    22     MapCenterObj* getMapCenter();
    23 	QCanvas* getCanvas();
    24 	void adjustCanvasSize();// adjust canvas size to map and scrollview
    25 	bool blockReposition(); // block while load or undo
    26 	
    27 private:
    28 	void makeTmpDirs();		// create temporary directories
    29 	void delTmpDirs();		// delete temporary directories
    30 	void makeSubDirs(const QString&);		
    31 							// create subdirs in dir
    32     QString saveToDir(const QString&,const QString &,bool, const QPoint
    33 	&,SaveMode);
    34     void saveState();		// save actual state to backup
    35     void saveState(const SaveMode&, LinkableMapObj *);
    36 
    37 private slots:
    38     void finishedLineEditNoSave();
    39 
    40 public:
    41 	bool isDefault();		// false, if map was changed once
    42     bool isUnsaved();		// save necessary
    43     bool hasChanged();		// undo possible
    44 	void setChanged();		// called from NoteEditor via LMO
    45 	void closeMap();
    46 	void setFilePath (QString);	
    47 	void setFilePath (QString,QString);	
    48 	QString getFilePath ();	// Full path e.g. "/home/tux/map.xml"
    49 	QString getFileName ();	// e.g. "map.xml"
    50 	QString getMapName ();	// e.g. "map"
    51 	QString getDestPath (); // e.g. "/home/tux/map.vym"
    52     int load (QString&, const LoadMode &);	// newmap, import/replace selection
    53     int save(const SaveMode &);	// Save map 
    54 	void setZipped(bool);		// save map zipped
    55 	bool saveZipped();			// 1 if file will be saved zipped
    56     void print();				// print canvas
    57 private:
    58     QPixmap getPixmap();
    59 public:
    60     void exportImage (QString fn);		// export as PNG	
    61     void exportImage (QString fn, int);	// export in given format
    62     void exportASCII();
    63     void exportXML(const QString&);		// export to directory
    64     void clear();		// clear map
    65     void undo();		// undo last action
    66     void copy();		// copy branch to clipboard
    67 private:	
    68     LinkableMapObj* pasteNoSave();		// paste clipboard to branch
    69     void cutNoSave();	// cut to clipboard
    70 public:	
    71     void paste();		// paste clipboard to branch and backup
    72     void cut();			// cut to clipboard and backup
    73     void moveBranchUp();
    74     void moveBranchDown();
    75     void editHeading();
    76     void addNewBranch(int);			// pos allows to add above/below selection
    77     void deleteSelection();
    78 	LinkableMapObj* getSelection();	// returns selection
    79 	LinkableMapObj* findObj (QString);
    80 	bool select(const QString &);	// Select 
    81 	void unselect();				// before changing current noteedit
    82 	void reselect();				// after  changing current noteedit
    83 private:	
    84 	void selectNextBranch();		// Increment number of branch
    85 	void selectPrevBranch();		// Decrement number of branch
    86 public:	
    87     void selectUpperBranch();
    88     void selectLowerBranch();
    89     void selectLeftBranch();
    90     void selectRightBranch();
    91     void selectFirstBranch();
    92     void selectLastBranch();
    93     void setColor(QColor);
    94     void selectBackgroundColor();
    95     void setBackgroundColor(QColor);
    96     QColor pickColor();
    97     void colorItem();
    98     void colorBranch();
    99 	void toggleStandardFlag(QString);
   100 	virtual void setViewCenter();			// needed for zooming
   101     BranchObj* findText(QString,bool);		// Find object
   102     void findReset();						// Reset Find 
   103 	void openURL();							// open URL in external browser
   104 	void editURL();							// edit the URL
   105 	void editHeading2URL();					// copy heading to URL
   106 	void editBugzilla2URL();				// create URL to Bugzilla
   107 	void editVymLink();						// edit link to another map
   108 	void deleteVymLink();					// delete link to another map
   109 	QString getVymLink();					// return path to map
   110 	void editMapInfo();						// dialog to enter author, ...
   111 	void updateActions();					// update e.g. format buttons
   112 	void setLinkStyle (LinkStyle);			// Set style of link
   113 	LinkStyle getLinkStyle ();				// requested in LMO
   114 	void setLinkColor(QColor);				// default color of links
   115 	void setLinkColorHint();				// color of links
   116 	void setLinkColorHint(LinkColorHint);	// color of links
   117 	LinkColorHint getLinkColorHint();
   118 	QColor getDefLinkColor();
   119 	void toggleLinkColorHint();				// after changing linkStyles
   120     void selectLinkColor();
   121     void toggleScroll();
   122     void unScrollAll();
   123 	void loadFloatImage ();
   124 	void saveFloatImage (int);
   125 	void toggleFloatExport();
   126 	void setFrame(const FrameType &);
   127 private:	
   128     void importDir(BranchObj *,QDir);
   129 public:	
   130     void importDir();
   131 	void followLink (int);
   132     void testFunction();				// FIXME just testing
   133 
   134 protected:
   135 	void ensureSelectionVisible();		
   136 	virtual void updateViewCenter();	// needed for zooming
   137 	virtual void contentsContextMenuEvent ( QContextMenuEvent *e );
   138     virtual void contentsMousePressEvent(QMouseEvent*);
   139     virtual void contentsMouseReleaseEvent(QMouseEvent*);
   140     virtual void contentsMouseDoubleClickEvent(QMouseEvent*);
   141     virtual void contentsMouseMoveEvent(QMouseEvent*);
   142 
   143 private:
   144     QCanvas* mapCanvas;
   145     MapCenterObj* mapCenter;
   146 
   147 	bool adjustCanvasRequested;	// collect requests until end of user event
   148 	BranchObj *editingBO;		// entering Text into BO
   149     QLineEdit* lineedit;
   150 
   151     QColor actColor;			// actual color
   152 	QColor deflinkcolor;		// default color for links
   153 	LinkColorHint linkcolorhint;// use heading color or own color
   154 	LinkStyle linkstyle;		// default style for links
   155 
   156     QCursor handOpenCursor;		// cursor while moving canvas view
   157 	QCursor pickColorCursor;	// cursor while picking color 
   158 	bool pickingColor;
   159 	bool drawingLink;			// true while creating a link
   160 	LinkObj* tmpLink;
   161 	
   162     LinkableMapObj* selection;		// select a LinkableMapObj
   163     LinkableMapObj* selectionLast;	// last selection 
   164     MapObj* movingObj;				// moving a MapObj
   165 	MapObj* linkingObj_src;			// part of a link
   166     QPoint movingObj_start;			// rel. pos of mouse to absPos 
   167     QPoint movingCont_start;		// inital pos of moving Content or
   168     QPoint movingVec;				// how far has Content moved
   169 	QPoint movingCenter;			// used when zooming
   170     QPrinter* printer;				// Printing
   171 
   172     bool mapDefault;				// Flag if map is untouched
   173     bool mapChanged;				// Flag if undo is possible
   174 	bool mapUnsaved;				// Flag if map should be saved
   175     QString backupXML;				// backup (XML) for undo
   176 	LinkableMapObj* undoSelection;	// replace this LMO with vympart from backup
   177 									// if != NULL
   178 
   179 	bool printFrame;			// Print frame around map
   180 	bool printFooter;			// Print footer below map
   181 
   182 	bool zipped;				// should map be zipped
   183 	QString fileName;			// short name of file (for tab)
   184 	QString filePath;			// path to file which will be saved
   185 	QString fileDir;			// dir where file is saved
   186 	QString destPath;			// path to .vym file (needed for vymlinks)
   187 	QString mapName;			// fileName without ".vym"
   188 	QString lastImageDir;		// save dir for adding images
   189 
   190 	bool isInteractive;			// non interactive don't need tmpdirs
   191 	QString bakMapDir;			// tmp directory with data for undo
   192 	bool blockreposition;		// block while load or undo
   193 
   194 	BranchObj* itFind;			// next object in find process
   195 	bool EOFind;				// true, if search failed
   196 
   197 	QPoint exportOffset;		// set before export, used in save
   198     void resizeEvent( QResizeEvent * );
   199 };
   200 #endif
   201