Multiple fixes:
[harmattan/cameraplus] / declarative / mode.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 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 #include <QPointer>
28
29 class Camera;
30 class QImage;
31 class QtCamMode;
32
33 class Mode : public QObject {
34   Q_OBJECT
35
36   Q_PROPERTY(Camera* camera READ camera WRITE setCamera NOTIFY cameraChanged);
37   Q_PROPERTY(bool canCapture READ canCapture NOTIFY canCaptureChanged);
38   Q_PROPERTY(bool active READ isActive NOTIFY activeChanged);
39   Q_PROPERTY(bool ready READ isReady NOTIFY isReadyChanged);
40
41 public:
42   Mode(QObject *parent = 0);
43   virtual ~Mode();
44
45   Camera *camera();
46   virtual void setCamera(Camera *camera);
47
48   bool isActive();
49
50   bool canCapture();
51
52   bool isReady() const;
53
54 signals:
55   void cameraChanged();
56   void canCaptureChanged();
57   void activeChanged();
58   void previewAvailable(const QString& preview, const QString& fileName);
59   void saved(const QString& fileName);
60   void isReadyChanged();
61
62 private slots:
63   void gotPreview(const QImage& image, const QString& fileName);
64   void deviceChanged();
65
66 protected:
67   virtual void preChangeMode() = 0;
68   virtual void postChangeMode() = 0;
69   virtual void changeMode() = 0;
70
71   Camera *m_cam;
72   QPointer<QtCamMode> m_mode;
73
74 private:
75   unsigned long long m_seq;
76 };
77
78 #endif /* MODE_H */