mainwindow.h
changeset 742 54d44ecd6097
parent 732 b77b56f707f1
child 746 ee6b0f3a4c2f
     1.1 --- a/mainwindow.h	Fri Mar 06 15:02:58 2009 +0000
     1.2 +++ b/mainwindow.h	Thu Mar 19 11:45:28 2009 +0000
     1.3 @@ -29,7 +29,17 @@
     1.4      Main(QWidget* parent=0, const char* name=0, Qt::WFlags f=0);
     1.5      ~Main();
     1.6  	void loadCmdLine();
     1.7 +
     1.8 +private:
     1.9 +	QProgressBar *progressBar;
    1.10 +	int progressMax;
    1.11 +	int progressMin;
    1.12 +public:	
    1.13  	void statusMessage (const QString &);
    1.14 +	void setProgressMinimum (int min);
    1.15 +	void setProgressMaximum (int max);
    1.16 +	void setProgressValue (int v);
    1.17 +	void removeProgressBar();
    1.18  
    1.19  private:
    1.20  	VymView* createView (VymModel*);
    1.21 @@ -77,7 +87,8 @@
    1.22  private slots:	
    1.23      void fileSaveAs(const SaveMode &);
    1.24      void fileSaveAs();
    1.25 -    void fileImportKDEBookmarks();
    1.26 +    void fileImportKDE3Bookmarks();
    1.27 +    void fileImportKDE4Bookmarks();
    1.28      void fileImportFirefoxBookmarks();
    1.29      void fileImportFreemind();
    1.30      void fileImportMM();
    1.31 @@ -88,7 +99,8 @@
    1.32      void fileExportASCII();
    1.33      void fileExportCSV();
    1.34      void fileExportLaTeX();
    1.35 -    void fileExportKDEBookmarks();
    1.36 +    void fileExportKDE3Bookmarks();
    1.37 +    void fileExportKDE4Bookmarks();
    1.38      void fileExportTaskjuggler();
    1.39      void fileExportOOPresentation();
    1.40      void fileCloseMap();