Added currentResolutionMegapixel property to ImageSettings
[harmattan/cameraplus] / declarative / imagesettings.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 IMAGE_SETTINGS_H
24 #define IMAGE_SETTINGS_H
25
26 #include <QObject>
27 #include <QStringList>
28
29 class Camera;
30 class QtCamImageSettings;
31 class ImageResolutionModel;
32
33 class ImageSettings : public QObject {
34   Q_OBJECT
35
36   Q_PROPERTY(Camera* camera READ camera WRITE setCamera NOTIFY cameraChanged);
37   Q_PROPERTY(QString suffix READ suffix NOTIFY settingsChanged);
38   Q_PROPERTY(QStringList aspectRatios READ aspectRatios NOTIFY settingsChanged);
39   Q_PROPERTY(int aspectRatioCount READ aspectRatioCount NOTIFY aspectRatioCountChanged);
40   Q_PROPERTY(ImageResolutionModel *resolutions READ resolutions NOTIFY resolutionsChanged);
41   Q_PROPERTY(bool ready READ isReady NOTIFY readyChanged);
42   Q_PROPERTY(QString currentResolutionMegapixel READ currentResolutionMegapixel NOTIFY currentResolutionMegapixelChanged);
43
44 public:
45   ImageSettings(QObject *parent = 0);
46   ~ImageSettings();
47
48   QString suffix() const;
49   QStringList aspectRatios() const;
50
51   Camera *camera();
52   void setCamera(Camera *camera);
53
54   ImageResolutionModel *resolutions();
55
56   bool isReady() const;
57
58   Q_INVOKABLE bool setResolution(const QString& aspectRatio, const QString& resolution);
59
60   int aspectRatioCount() const;
61
62   QString currentResolutionMegapixel() const;
63
64 signals:
65   void settingsChanged();
66   void cameraChanged();
67   void resolutionsChanged();
68   void readyChanged();
69   void aspectRatioCountChanged();
70   void currentResolutionMegapixelChanged();
71
72 private slots:
73   void deviceChanged();
74
75 private:
76   Camera *m_cam;
77   QtCamImageSettings *m_settings;
78   ImageResolutionModel *m_resolutions;
79 };
80
81 #endif /* IMAGE_SETTINGS_H */