mainwindow.h
author insilmaril
Thu, 23 Mar 2006 12:38:54 +0000
changeset 257 199f2626fe70
parent 250 0e994bf2346b
child 266 7d91b35c1b6f
permissions -rw-r--r--
Version 1.7.12
     1 #ifndef MAINWINDOW_H 
     2 #define MAINWINDOW_H
     3 
     4 #include <qpopupmenu.h>
     5 #include <qmainwindow.h>
     6 #include <qtextedit.h>
     7 #include <qintdict.h>
     8 #include <qcanvas.h>
     9 #include <qlineedit.h>
    10 #include <qaction.h>
    11 #include <qcursor.h>
    12 #include <qtabwidget.h>
    13 #include <qmap.h>
    14 
    15 #include "file.h"
    16 #include "findwindow.h"
    17 #include "mapeditor.h"
    18 #include "texteditor.h"
    19 #include "xml.h"
    20 
    21 class Main : public QMainWindow 
    22 {
    23     Q_OBJECT
    24 
    25 public:
    26     Main(QWidget* parent=0, const char* name=0, WFlags f=0);
    27     ~Main();
    28 	void loadCmdLine();
    29 	void statusMessage (const QString &);
    30 
    31 public slots:
    32     void fileNew();
    33 
    34 protected:
    35 	void closeEvent( QCloseEvent* );
    36 
    37 private:
    38     void setupFileActions();
    39     void setupEditActions();
    40     void setupFormatActions();
    41     void setupViewActions();
    42     void setupModeActions();
    43     void setupWindowActions();
    44     void setupFlagActions();
    45     void setupSettingsActions();
    46     void setupTestActions();
    47     void setupHelpActions();
    48     void setupContextMenus();
    49 	void setupLastMapsMenu();
    50 	void hideEvent (QHideEvent * );
    51 	void showEvent (QShowEvent * );
    52 	bool reallyWriteDirectory(const QString&);
    53 	QString browseDirectory(const QString&);
    54 	MapEditor* currentMapEditor() const;
    55     
    56 private slots:
    57     void newView();
    58 	void editorChanged(QWidget*);
    59 
    60     ErrorCode fileLoad(QString ,const LoadMode &);
    61     void fileLoad(const LoadMode &);
    62     void fileLoad();
    63 	void fileLoadLast(int);
    64     void fileSave(const SaveMode & );
    65     void fileSave();
    66     void fileSaveAs(const SaveMode &);
    67     void fileSaveAs();
    68     void fileImportKDEBookmarks();
    69     void fileImportMM();
    70     void fileImportDir();
    71     void fileExportXML();
    72     void fileExportHTML();
    73     void fileExportXHTML();
    74     void fileExportImage(int);
    75     void fileExportASCII();
    76     void fileExportLaTeX();
    77     void fileExportKDEBookmarks();
    78     void fileExportTaskjuggler();
    79     void fileExportOOPresentation();
    80     void fileCloseMap();
    81     void filePrint();
    82     void fileExitVYM();
    83 
    84     void editUndo();	
    85     void editRedo();	
    86     void editCopy();	
    87     void editPaste();	
    88     void editCut();	
    89     void editOpenFindWindow();
    90 	void editFind(QString);
    91 	void editFindChanged();
    92 public slots:
    93 	void editOpenURL();
    94 private slots:
    95 	void editURL();
    96 	void editHeading2URL();
    97 	void editBugzilla2URL();
    98 	void editFATE2URL();
    99 	void editVymLink();
   100 public slots:
   101 	void editOpenVymLink();
   102 private slots:
   103 	void editDeleteVymLink();
   104 	void editToggleHideExport();
   105 	void editMapInfo();
   106     void editMoveUp();	
   107     void editMoveDown();	
   108     void editToggleScroll();
   109     void editUnScrollAll();
   110     void editHeading();
   111     void editNewBranch();
   112     void editNewBranchHere();
   113     void editNewBranchAbove();
   114     void editNewBranchBelow();
   115     void editImportAdd();
   116     void editImportReplace();
   117     void editSaveBranch();
   118     void editRemoveBranchHere();
   119     void editRemoveChilds();
   120     void editDeleteSelection();
   121     void editUpperBranch();
   122     void editLowerBranch();
   123     void editLeftBranch();
   124     void editRightBranch();
   125     void editFirstBranch();
   126     void editLastBranch();
   127     void editLoadImage();
   128     void editSaveImage(int);
   129     void editFollowXLink (int);
   130     void editEditXLink (int);
   131 
   132     void formatSelectColor();
   133     void formatPickColor();
   134     void colorChanged(QColor);
   135     void formatColorItem();
   136     void formatColorBranch();
   137 	void formatLinkStyleLine();
   138 	void formatLinkStyleParabel();
   139 	void formatLinkStylePolyLine();
   140 	void formatLinkStylePolyParabel();
   141     void formatSelectBackColor();
   142     void formatSelectLinkColor();
   143     void formatToggleLinkColorHint();
   144 	void formatFrameNone();
   145 	void formatFrameRectangle();
   146 	void formatIncludeImagesVer();
   147 	void formatIncludeImagesHor();
   148 	void formatHideLinkUnselected();
   149 
   150     void viewZoomReset();
   151     void viewZoomIn();
   152     void viewZoomOut();
   153 
   154 	void modModeColor();
   155 	void modModeLink();
   156 
   157 public slots:
   158 	bool settingsPDF();
   159 	bool settingsURL();
   160 
   161 	void windowToggleNoteEditor();
   162 	void updateNoteFlag();
   163 
   164 private slots:
   165 	void windowNextEditor();
   166 	void windowPreviousEditor();
   167 	void windowShowNoteEditor();
   168 	void windowHideNoteEditor();
   169 
   170 	void standardFlagChanged();
   171 
   172     void testFunction();
   173 
   174     void helpDoc();
   175     void helpAbout();
   176     void helpAboutQT();
   177 
   178 private:
   179     QCanvas* canvas;
   180 	QTabWidget *tabWidget;
   181 	FindWindow *findWindow;
   182 	QStringList lastMaps;
   183 	int maxLastMaps;
   184 	QString lastFileDir;
   185 };
   186 
   187 
   188 #endif
   189