Implemented video resolution setting
[harmattan/cameraplus] / src / settings.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 SETTINGS_H
24 #define SETTINGS_H
25
26 #include <QObject>
27
28 class QSettings;
29
30 class Settings : public QObject {
31   Q_OBJECT
32
33   Q_PROPERTY(int mode READ mode WRITE setMode NOTIFY modeChanged);
34   Q_PROPERTY(QString creatorName READ creatorName WRITE setCreatorName NOTIFY creatorNameChanged);
35   Q_PROPERTY(int postCaptureTimeout READ postCaptureTimeout WRITE setPostCaptureTimeout NOTIFY postCaptureTimeoutChanged);
36   Q_PROPERTY(bool useGps READ useGps WRITE setUseGps NOTIFY useGpsChanged);
37   Q_PROPERTY(bool useGeotags READ useGeotags WRITE setUseGeotags NOTIFY useGeotagsChanged);
38   Q_PROPERTY(int imageSceneMode READ imageSceneMode WRITE setImageSceneMode NOTIFY imageSceneModeChanged);
39   Q_PROPERTY(int imageColorFilter READ imageColorFilter WRITE setImageColorFilter NOTIFY imageColorFilterChanged);
40   Q_PROPERTY(int imageWhiteBalance READ imageWhiteBalance WRITE setImageWhiteBalance NOTIFY imageWhiteBalanceChanged);
41   Q_PROPERTY(qreal imageEvComp READ imageEvComp WRITE setImageEvComp NOTIFY imageEvCompChanged);
42
43   Q_PROPERTY(int videoSceneMode READ videoSceneMode WRITE setVideoSceneMode NOTIFY videoSceneModeChanged);
44   Q_PROPERTY(int videoColorFilter READ videoColorFilter WRITE setVideoColorFilter NOTIFY videoColorFilterChanged);
45   Q_PROPERTY(int videoWhiteBalance READ videoWhiteBalance WRITE setVideoWhiteBalance NOTIFY videoWhiteBalanceChanged);
46   Q_PROPERTY(qreal videoEvComp READ videoEvComp WRITE setVideoEvComp NOTIFY videoEvCompChanged);
47
48   Q_PROPERTY(int imageFlashMode READ imageFlashMode WRITE setImageFlashMode NOTIFY imageFlashModeChanged);
49   Q_PROPERTY(int imageIso READ imageIso WRITE setImageIso NOTIFY imageIsoChanged);
50
51   Q_PROPERTY(QString imageAspectRatio READ imageAspectRatio WRITE setImageAspectRatio NOTIFY imageAspectRatioChanged);
52   Q_PROPERTY(QString imageResolution READ imageResolution WRITE setImageResolution NOTIFY imageResolutionChanged);
53
54   Q_PROPERTY(QString videoAspectRatio READ videoAspectRatio WRITE setVideoAspectRatio NOTIFY videoAspectRatioChanged);
55   Q_PROPERTY(QString videoResolution READ videoResolution WRITE setVideoResolution NOTIFY videoResolutionChanged);
56
57 public:
58   Settings(QObject *parent = 0);
59   ~Settings();
60
61   int mode() const;
62   void setMode(int mode);
63
64   QString creatorName() const;
65   void setCreatorName(const QString& name);
66
67   int postCaptureTimeout() const;
68   void setPostCaptureTimeout(int timeout);
69
70   bool useGps() const;
71   void setUseGps(bool enable);
72
73   bool useGeotags() const;
74   void setUseGeotags(bool enable);
75
76   int imageSceneMode() const;
77   void setImageSceneMode(int mode);
78
79   int imageColorFilter() const;
80   void setImageColorFilter(int filter);
81
82   int imageWhiteBalance() const;
83   void setImageWhiteBalance(int wb);
84
85   qreal imageEvComp() const;
86   void setImageEvComp(qreal ev);
87
88   int videoSceneMode() const;
89   void setVideoSceneMode(int mode);
90
91   int videoColorFilter() const;
92   void setVideoColorFilter(int filter);
93
94   int videoWhiteBalance() const;
95   void setVideoWhiteBalance(int wb);
96
97   qreal videoEvComp() const;
98   void setVideoEvComp(qreal ev);
99
100   int imageFlashMode() const;
101   void setImageFlashMode(int mode);
102
103   int imageIso() const;
104   void setImageIso(int iso);
105
106   QString imageAspectRatio() const;
107   void setImageAspectRatio(const QString& aspectRatio);
108
109   QString imageResolution() const;
110   void setImageResolution(const QString& resolution);
111
112   QString videoAspectRatio() const;
113   void setVideoAspectRatio(const QString& aspectRatio);
114
115   QString videoResolution() const;
116   void setVideoResolution(const QString& resolution);
117
118 signals:
119   void modeChanged();
120   void creatorNameChanged();
121   void postCaptureTimeoutChanged();
122   void useGpsChanged();
123   void useGeotagsChanged();
124   void imageSceneModeChanged();
125   void imageColorFilterChanged();
126   void imageWhiteBalanceChanged();
127   void imageEvCompChanged();
128   void videoSceneModeChanged();
129   void videoColorFilterChanged();
130   void videoWhiteBalanceChanged();
131   void videoEvCompChanged();
132   void imageFlashModeChanged();
133   void imageIsoChanged();
134   void imageAspectRatioChanged();
135   void imageResolutionChanged();
136   void videoAspectRatioChanged();
137   void videoResolutionChanged();
138
139 private:
140   QSettings *m_settings;
141 };
142
143 #endif /* SETTINGS_H */