diff options
| author | deva <deva> | 2006-03-16 16:31:09 +0000 | 
|---|---|---|
| committer | deva <deva> | 2006-03-16 16:31:09 +0000 | 
| commit | 9553f7078a275b7c9aa1c9b7a8a0f1f4d38eea9d (patch) | |
| tree | 25a572f4c6ba62eebf81c7ba633a7ef6e1ce74a5 /client/mainwindow.h | |
| parent | e8be1dfe0b9eb6fd69431184b94f82fc605388e4 (diff) | |
*** empty log message ***
Diffstat (limited to 'client/mainwindow.h')
| -rw-r--r-- | client/mainwindow.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/client/mainwindow.h b/client/mainwindow.h index b4ce7e1..9332b0d 100644 --- a/client/mainwindow.h +++ b/client/mainwindow.h @@ -28,7 +28,10 @@  #define __MIAV_MAINWINDOW_H__  #include <QWidget> + +#include <QPushButton>  #include "historyframe.h" +#include "videowidget.h"  /**    * Images @@ -56,6 +59,8 @@ public:    MainWindow();    ~MainWindow(); +  VideoWidget *getVideo() { return video; } +  public slots:    void cpr_clicked();    void clear_clicked(); @@ -67,6 +72,9 @@ public slots:  private:    HistoryFrame *history; +  VideoWidget *video; + +  QPushButton *createButton(char* icon);  };  #endif/*__MIAV_MAINWINDOW_H__*/ | 
