mainwindow.h
changeset 28 c55e1f2a4db4
parent 27 dfefb6003498
child 30 00268973aae0
equal deleted inserted replaced
27:dfefb6003498 28:c55e1f2a4db4
    10 namespace Ui { class MainWindow; }
    10 namespace Ui { class MainWindow; }
    11 
    11 
    12 class MainWindow : public QMainWindow
    12 class MainWindow : public QMainWindow
    13 {
    13 {
    14   Q_OBJECT
    14   Q_OBJECT
       
    15 
    15   public:
    16   public:
    16    MainWindow(QWidget *parent = 0);
    17    MainWindow(QWidget *parent = 0);
    17    ~MainWindow();
    18    ~MainWindow();
       
    19 
    18   public slots:
    20   public slots:
    19    void open(const QString& = "");
    21    void open(const QString& = "");
       
    22 
    20   private:
    23   private:
       
    24 
    21    void showProfile();
    25    void showProfile();
       
    26    void showInfo();
    22 
    27 
    23    Ui::MainWindow *ui_; 
    28    Ui::MainWindow *ui_; 
       
    29 
    24    QFile currentFile_;
    30    QFile currentFile_;
    25    QTextStream input_;
    31    QTextStream input_;
    26 
    32 
    27    IGC	    igc_;
    33    IGC	    *igc_;
    28 #ifdef MYPLOT
       
    29    Plot	    *myplot_;
       
    30 #endif
       
    31    QwtPlot  *plot_;
    34    QwtPlot  *plot_;
       
    35    
    32 
    36 
    33 };
    37 };
    34 
    38 
    35 #endif
    39 #endif