mainwindow.h
author insilmaril
Mon, 15 Mar 2010 11:49:42 +0000
changeset 835 31841b366d5e
parent 832 6a6018ba4cc7
child 837 5ecd0462f76b
permissions -rw-r--r--
Fixes for autoLayout (later)
     1 #ifndef MAINWINDOW_H 
     2 #define MAINWINDOW_H
     3 
     4 #include <QMainWindow>
     5 #include <QtDBus>
     6 
     7 
     8 #include "branchpropwindow.h"
     9 #include "extrainfodialog.h"
    10 #include "flag.h"
    11 #include "file.h"
    12 #include "historywindow.h"
    13 #include "mapeditor.h"
    14 #include "shortcuts.h"
    15 #include "simplescripteditor.h"
    16 #include "texteditor.h"
    17 #include "vymview.h"
    18 
    19 class Main : public QMainWindow 
    20 {
    21     Q_OBJECT
    22 
    23 public:
    24 	/*! Modifier modes are used when CTRL together with a mouse button is pressed */
    25 	enum ModMode {
    26 		ModModeNone,	//!< Unused
    27 		ModModeColor,	//!< Pick color from object
    28 		ModModeCopy,	//!< Copy object
    29 		ModModeXLink	//!< Create a XLink (XLinkObj) from selected object
    30 		};
    31 
    32     Main(QWidget* parent=0, const char* name=0, Qt::WFlags f=0);
    33     ~Main();
    34 	void loadCmdLine();
    35 
    36 private:
    37 	QProgressDialog progressDialog;
    38 	int progressMax;
    39 	int progressMin;
    40 	int progressCounter;
    41 	int progressCounterTotal;
    42 public:	
    43 	void statusMessage (const QString &);
    44 	void setProgressMaximum (int max);
    45 	void addProgressValue (float v);
    46 	void setProgressCounter (int v);
    47 	void removeProgressCounter();
    48 
    49 public slots:
    50     void fileNew();
    51     void fileNewCopy();
    52 
    53 protected:
    54 	void closeEvent( QCloseEvent* );
    55 
    56 private:
    57     void setupFileActions();
    58     void setupEditActions();
    59     void setupFormatActions();
    60     void setupViewActions();
    61     void setupModeActions();
    62     void setupWindowActions();
    63     void setupFlag(Flag *flag, QToolBar *tb, const QString &name, const QString &tooltip);
    64     void setupFlagActions();
    65     void setupNetworkActions();
    66     void setupSettingsActions();
    67     void setupTestActions();
    68     void setupHelpActions();
    69     void setupContextMenus();
    70 	void setupRecentMapsMenu();
    71     void setupMacros();
    72 	void hideEvent (QHideEvent * );
    73 	void showEvent (QShowEvent * );
    74 	MapEditor* currentMapEditor() const;
    75 	VymModel* currentModel() const;
    76 public:	
    77 	uint currentModelID() const;
    78 	VymModel* getModel(uint) const;
    79     
    80 private slots:
    81 	void editorChanged(QWidget*);
    82 
    83     ErrorCode fileLoad(QString ,const LoadMode &, const FileType & ftype=VymMap);
    84     void fileLoad(const LoadMode &);
    85     void fileLoad();
    86 	void fileLoadRecent();
    87 	void addRecentMap (const QString &);
    88     void fileSave(VymModel*, const SaveMode & );
    89     void fileSave();
    90 public slots:	
    91     void fileSave(VymModel*);	// autosave from MapEditor
    92 private slots:	
    93     void fileSaveAs(const SaveMode &);
    94     void fileSaveAs();
    95     void fileImportKDE3Bookmarks();
    96     void fileImportKDE4Bookmarks();
    97     void fileImportFirefoxBookmarks();
    98     void fileImportFreemind();
    99     void fileImportMM();
   100     void fileImportDir();
   101     void fileExportXML();
   102     void fileExportHTML();
   103     void fileExportXHTML();
   104     void fileExportImage();
   105     void fileExportAO();
   106     void fileExportASCII();
   107     void fileExportCSV();
   108     void fileExportLaTeX();
   109     void fileExportKDE3Bookmarks();
   110     void fileExportKDE4Bookmarks();
   111     void fileExportTaskjuggler();
   112     void fileExportOOPresentation();
   113     void fileCloseMap();
   114     void filePrint();
   115     void fileExitVYM();
   116 
   117 public slots:
   118     void editUndo();	
   119     void editRedo();	
   120 	void gotoHistoryStep (int);
   121 private slots:	
   122     void editCopy();	
   123     void editPaste();	
   124     void editCut();	
   125     void editOpenFindWidget();
   126     void editHideFindWidget();
   127 	void editFindNext(QString s);
   128     void editFindDuplicateURLs();
   129 private:
   130 	void openTabs(QStringList);
   131 public slots:
   132 	void editOpenURL();
   133 	void editOpenURLTab();
   134 private slots:
   135 	void editOpenMultipleVisURLTabs(bool ignoreScrolled=true);
   136 	void editOpenMultipleURLTabs();
   137 	void editURL();
   138 	void editLocalURL();
   139 	void editHeading2URL();
   140 	void editBugzilla2URL();
   141 	void getBugzillaData();
   142 	void editFATE2URL();
   143 	void openVymLinks(const QStringList &);
   144 	void editVymLink();
   145 	void editOpenMultipleVymLinks();
   146 public slots:
   147     void editHeadingFinished(VymModel *m);
   148 //    void editHeading();
   149 	void editOpenVymLink();
   150 private slots:
   151 	void editDeleteVymLink();
   152 	void editToggleHideExport();
   153 	void editAddTimestamp();
   154 	void editMapInfo();
   155     void editMoveUp();	
   156     void editMoveDown();	
   157     void editDetach();	
   158 	void editSortChildren();
   159 	void editSortBackChildren();
   160     void editToggleScroll();
   161     void editExpandAll();
   162     void editExpandOneLevel();
   163     void editCollapseOneLevel();
   164     void editUnscrollChildren();
   165     void editAddAttribute();
   166     void editAddMapCenter();
   167     void editNewBranch();
   168     void editNewBranchBefore();
   169     void editNewBranchAbove();
   170     void editNewBranchBelow();
   171     void editImportAdd();
   172     void editImportReplace();
   173     void editSaveBranch();
   174     void editDeleteKeepChildren();
   175     void editDeleteChildren();
   176     void editDeleteSelection();
   177     void editLoadImage();
   178     void editSaveImage();
   179     void editEditXLink (QAction *);
   180 
   181     void formatSelectColor();
   182     void formatPickColor();
   183     void colorChanged(QColor);
   184     void formatColorBranch();
   185     void formatColorSubtree();
   186 	void formatLinkStyleLine();
   187 	void formatLinkStyleParabel();
   188 	void formatLinkStylePolyLine();
   189 	void formatLinkStylePolyParabel();
   190     void formatSelectBackColor();
   191     void formatSelectBackImage();
   192     void formatSelectLinkColor();
   193     void formatSelectSelectionColor();
   194     void formatToggleLinkColorHint();
   195 	void formatHideLinkUnselected();
   196 
   197 public slots:
   198     void viewZoomReset();
   199     void viewZoomIn();
   200     void viewZoomOut();
   201     void viewCenter();
   202 
   203 public slots:
   204 	void networkStartServer();
   205 	void networkConnect();
   206 	bool settingsPDF();
   207 	bool settingsURL();
   208 	void settingsMacroDir();
   209 	void settingsToggleDelKey();
   210 	void settingsUndoLevels();
   211 	void settingsAutosaveToggle();
   212 	void settingsAutosaveTime();
   213 	void settingsWriteBackupFileToggle();
   214 	void settingsToggleAnimation();
   215 
   216 	void windowToggleNoteEditor();
   217 	void windowToggleTreeEditor();
   218 	void windowToggleHistory();
   219 	void windowToggleProperty();
   220 	void updateHistory(SimpleSettings &);
   221 	void windowToggleAntiAlias();
   222 public:
   223 	bool isAliased();
   224 	bool hasSmoothPixmapTransform();
   225 public slots:
   226 	void windowToggleSmoothPixmap();
   227 	void updateNoteFlag();
   228 	void updateNoteEditor (QModelIndex index);
   229 	void changeSelection (VymModel *model,const QItemSelection &newSel, const QItemSelection &delSel);
   230 
   231 	void updateActions();
   232 	ModMode getModMode();
   233 	bool autoEditNewBranch();
   234 	bool autoSelectNewBranch();
   235 	void setScript(const QString &);
   236 	void runScript(const QString &);
   237 	void runScriptEverywhere (const QString &);
   238 
   239 private slots:
   240 	void windowNextEditor();
   241 	void windowPreviousEditor();
   242 	void windowShowNoteEditor();
   243 	void windowHideNoteEditor();
   244 
   245 	void standardFlagChanged();
   246 
   247     void testFunction1();
   248     void testFunction2();
   249     void testCommand();
   250 
   251     void helpDoc();
   252     void helpDemo();
   253     void helpAbout();
   254     void helpAboutQT();
   255 
   256 	void callMacro ();
   257 
   258 private:
   259 	QTabWidget *tabWidget;
   260 	QProcess *procBrowser;		//FIXME-2 remove this...
   261 	qint64 *browserPID;
   262 
   263 	QStringList imageTypes;
   264 
   265 	QList <VymView*> vymViews;		//! Keeps track of models and views related to a tab 
   266 	QString prevSelection;
   267 
   268 	HistoryWindow *historyWindow;
   269 
   270 	BranchPropertyWindow *branchPropertyWindow;
   271 	SimpleScriptEditor *scriptEditor;
   272 
   273 	QList <QAction*> actionListBranches;
   274 
   275 	QColor currentColor;
   276 
   277 	int xLinkMenuWidth;
   278 
   279 	QMenu *recentFilesMenu;
   280 	enum { MaxRecentFiles = 9 };
   281     QAction *recentFileActions[MaxRecentFiles];
   282 
   283     QAction *macroActions[12];
   284 	QStringList macro;
   285 
   286 	Switchboard switchboard;
   287 
   288 	QAction* actionFileNewCopy;
   289 	QAction* actionFileSave;
   290 	QAction* actionFilePrint;
   291 	QAction* actionUndo;
   292 	QAction* actionRedo;
   293 	QAction *actionCopy;
   294 	QAction *actionCut;
   295 	QAction *actionPaste;
   296 	QAction *actionMoveUp;
   297 	QAction *actionMoveDown;
   298 	QAction *actionDetach;
   299 	QAction *actionSortChildren;
   300 	QAction *actionSortBackChildren;
   301 	QAction *actionToggleScroll;
   302 	QAction *actionExpandAll;
   303 	QAction *actionExpandOneLevel;
   304 	QAction *actionCollapseOneLevel;
   305 	QAction* actionOpenURL;
   306 	QAction* actionOpenURLTab;
   307 	QAction* actionOpenMultipleVisURLTabs;
   308 	QAction* actionOpenMultipleURLTabs;
   309 	QAction* actionURL;
   310 	QAction* actionLocalURL;
   311 	QAction* actionHeading2URL;
   312 	QAction* actionBugzilla2URL;
   313 	QAction* actionGetBugzillaData;
   314 	QAction* actionFATE2URL;
   315 	QAction *actionOpenVymLink;
   316 	QAction *actionOpenMultipleVymLinks;
   317 	QAction *actionVymLink;
   318 	QAction *actionDeleteVymLink;
   319 	QAction *actionAddTimestamp;
   320 	QAction *actionToggleHideExport;
   321 	QAction *actionMapInfo;
   322 	QAction *actionHeading;
   323 	QAction *actionDelete;
   324 	QAction *actionAddAttribute;
   325 public:
   326 	QAction *actionAddMapCenter;
   327 
   328 private:	
   329 	QAction *actionAddBranch;
   330 	QAction *actionAddBranchBefore;
   331 	QAction *actionAddBranchAbove;
   332 	QAction *actionAddBranchBelow;
   333 	QAction *actionDeleteKeepChildren;
   334 	QAction *actionDeleteChildren;
   335 	QAction *actionImportAdd;
   336 	QAction *actionImportReplace;
   337 	QAction *actionSaveBranch;
   338 	QAction *actionLoadImage;
   339 
   340 	QAction* actionFormatColor;
   341 	QAction* actionFormatPickColor;
   342 	QAction* actionFormatColorBranch;
   343 	QAction* actionFormatColorSubtree;
   344 	QAction* actionFormatLinkColorHint;
   345 	QAction* actionFormatBackColor;
   346 	QAction* actionFormatBackImage;
   347 	QAction* actionFormatLinkColor;
   348 	QAction* actionFormatSelectionColor;
   349 
   350 	QActionGroup* actionGroupModModes;
   351 	QAction* actionModModeColor;
   352 	QAction* actionModModeXLink;
   353 	QAction* actionModModeCopy;
   354 
   355 	QActionGroup *actionGroupFormatFrameTypes;
   356 
   357 
   358 	QActionGroup *actionGroupFormatLinkStyles;
   359 	QAction *actionFormatLinkStyleLine;
   360 	QAction *actionFormatLinkStyleParabel;
   361 	QAction *actionFormatLinkStylePolyLine;
   362 	QAction *actionFormatLinkStylePolyParabel;
   363 	QAction *actionFormatHideLinkUnselected;
   364 
   365 	QAction *actionViewToggleNoteEditor;
   366 	QAction *actionViewToggleTreeEditor;
   367 	QAction *actionViewToggleHistoryWindow;
   368 	QAction *actionViewTogglePropertyWindow;
   369 	QAction *actionViewToggleAntiAlias;
   370 	QAction *actionViewToggleSmoothPixmapTransform;
   371 	QAction* actionViewCenter;
   372 
   373 	QAction* actionSettingsAutoEditNewBranch;
   374 	QAction* actionSettingsAutoSelectNewBranch;
   375 	QAction* actionSettingsAutoSelectText;
   376 	QAction* actionSettingsUseDelKey;
   377 	QAction* actionSettingsUseFlagGroups;
   378 	QAction* actionSettingsUseHideExport;
   379 	QAction* actionSettingsAutosaveToggle;
   380 	QAction* actionSettingsAutosaveTime;
   381 	QAction* actionSettingsWriteBackupFile;
   382 	QAction* actionSettingsUseAnimation;
   383 };
   384 
   385 
   386 #endif
   387