mainwindow.h
changeset 725 7ea31701156e
parent 723 11f9124c1cca
child 726 7f43b93242aa
     1.1 --- a/mainwindow.h	Mon Aug 04 13:35:54 2008 +0000
     1.2 +++ b/mainwindow.h	Tue Aug 05 07:36:53 2008 +0000
     1.3 @@ -12,6 +12,9 @@
     1.4  #include "simplescripteditor.h"
     1.5  #include "texteditor.h"
     1.6  
     1.7 +class VymView : public QSplitter 
     1.8 +{
     1.9 +};
    1.10  
    1.11  class Main : public QMainWindow 
    1.12  {
    1.13 @@ -31,6 +34,9 @@
    1.14  	void loadCmdLine();
    1.15  	void statusMessage (const QString &);
    1.16  
    1.17 +private:
    1.18 +	VymView* createView (VymModel*);
    1.19 +
    1.20  public slots:
    1.21      void fileNew();
    1.22      void fileNewCopy();
    1.23 @@ -232,9 +238,8 @@
    1.24  
    1.25  	QStringList imageTypes;
    1.26  
    1.27 -	QList <VymModel*> models;
    1.28 +	QList <VymModel*> tabModel;		//!< the corresponding model to a tab
    1.29  
    1.30 -	QLineEdit *lineedit;	// to enter headings of branches
    1.31  	QString prevSelection;
    1.32  
    1.33  	HistoryWindow *historyWindow;