diff options
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__*/ |