qmldir file for declarative library
[harmattan/cameraplus] / declarative / mode.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef MODE_H
24 #define MODE_H
25
26 #include <QObject>
27
28 class Camera;
29 class QImage;
30 class QtCamMode;
31
32 class Mode : public QObject {
33   Q_OBJECT
34
35   Q_PROPERTY(Camera* camera READ camera WRITE setCamera NOTIFY cameraChanged);
36   Q_PROPERTY(bool canCapture READ canCapture NOTIFY canCaptureChanged);
37   Q_PROPERTY(bool active READ isActive NOTIFY activeChanged);
38   Q_PROPERTY(bool ready READ isReady NOTIFY isReadyChanged);
39
40 public:
41   Mode(QObject *parent = 0);
42   virtual ~Mode();
43
44   Camera *camera();
45   virtual void setCamera(Camera *camera);
46
47   bool isActive();
48
49   bool canCapture();
50
51   bool isReady() const;
52
53 signals:
54   void cameraChanged();
55   void canCaptureChanged();
56   void activeChanged();
57   void previewAvailable(const QString& preview, const QString& fileName);
58   void saved(const QString& fileName);
59   void isReadyChanged();
60
61 private slots:
62   void gotPreview(const QImage& image, const QString& fileName);
63   void deviceChanged();
64
65 protected:
66   virtual void preChangeMode() = 0;
67   virtual void postChangeMode() = 0;
68   virtual void changeMode() = 0;
69
70   Camera *m_cam;
71   QtCamMode *m_mode;
72
73 private:
74   unsigned long long m_seq;
75 };
76
77 #endif /* MODE_H */