summaryrefslogtreecommitdiff
path: root/noncore/multimedia/camera/mainwindow.h
Unidiff
Diffstat (limited to 'noncore/multimedia/camera/mainwindow.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/camera/mainwindow.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/noncore/multimedia/camera/mainwindow.h b/noncore/multimedia/camera/mainwindow.h
index 521107b..7ccdcf8 100644
--- a/noncore/multimedia/camera/mainwindow.h
+++ b/noncore/multimedia/camera/mainwindow.h
@@ -8,35 +8,39 @@
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14**********************************************************************/ 14**********************************************************************/
15 15
16#ifndef MAINWINDOW_H 16#ifndef MAINWINDOW_H
17#define MAINWINDOW_H 17#define MAINWINDOW_H
18 18
19#include <qmainwindow.h> 19#include <qmainwindow.h>
20#include <qdatetime.h>
21#include <qimage.h>
22#include <qpixmap.h>
20 23
21class QIconSet; 24class QIconSet;
22class QToolButton; 25class QToolButton;
23class QLabel; 26class QLabel;
27class MainWindowBase;
24 28
25class CameraMainWindow: public QMainWindow 29class CameraMainWindow: public QMainWindow
26{ 30{
27 Q_OBJECT 31 Q_OBJECT
28 32
29 public: 33 public:
30 CameraMainWindow( QWidget * parent = 0, const char * name = "mainwindow", WFlags f = 0 ); 34 CameraMainWindow( QWidget * parent = 0, const char * name = "mainwindow", WFlags f = 0 );
31 virtual ~CameraMainWindow(); 35 virtual ~CameraMainWindow();
32 36
33 protected:
34
35 public slots: 37 public slots:
36 void clickedSnapShot(); 38 void changeZoom( int );
39
40 protected:
37 41
38 private: 42 private:
39 QLabel* l; 43 MainWindowBase* mw;
40}; 44};
41 45
42#endif 46#endif