Added mute/unmute video recording sound
[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   Q_PROPERTY(bool soundEnabled READ isSoundEnabled WRITE setSoundEnabled NOTIFY soundEnabledChanged);
58   Q_PROPERTY(bool videoTorchOn READ isVideoTorchOn WRITE setVideoTorchOn NOTIFY videoTorchOnChanged);
59
60   Q_PROPERTY(bool showToolBar READ isToolBarShown WRITE setToolBarShown NOTIFY toolBarShownChanged);
61   Q_PROPERTY(bool videoMuted READ isVideoMuted WRITE setVideoMuted NOTIFY videoMutedChanged);
62
63 public:
64   Settings(QObject *parent = 0);
65   ~Settings();
66
67   int mode() const;
68   void setMode(int mode);
69
70   QString creatorName() const;
71   void setCreatorName(const QString& name);
72
73   int postCaptureTimeout() const;
74   void setPostCaptureTimeout(int timeout);
75
76   bool useGps() const;
77   void setUseGps(bool enable);
78
79   bool useGeotags() const;
80   void setUseGeotags(bool enable);
81
82   int imageSceneMode() const;
83   void setImageSceneMode(int mode);
84
85   int imageColorFilter() const;
86   void setImageColorFilter(int filter);
87
88   int imageWhiteBalance() const;
89   void setImageWhiteBalance(int wb);
90
91   qreal imageEvComp() const;
92   void setImageEvComp(qreal ev);
93
94   int videoSceneMode() const;
95   void setVideoSceneMode(int mode);
96
97   int videoColorFilter() const;
98   void setVideoColorFilter(int filter);
99
100   int videoWhiteBalance() const;
101   void setVideoWhiteBalance(int wb);
102
103   qreal videoEvComp() const;
104   void setVideoEvComp(qreal ev);
105
106   int imageFlashMode() const;
107   void setImageFlashMode(int mode);
108
109   int imageIso() const;
110   void setImageIso(int iso);
111
112   QString imageAspectRatio() const;
113   void setImageAspectRatio(const QString& aspectRatio);
114
115   QString imageResolution() const;
116   void setImageResolution(const QString& resolution);
117
118   QString videoAspectRatio() const;
119   void setVideoAspectRatio(const QString& aspectRatio);
120
121   QString videoResolution() const;
122   void setVideoResolution(const QString& resolution);
123
124   bool isSoundEnabled() const;
125   void setSoundEnabled(bool enabled);
126
127   bool isVideoTorchOn() const;
128   void setVideoTorchOn(bool on);
129
130   bool isToolBarShown() const;
131   void setToolBarShown(bool shown);
132
133   bool isVideoMuted() const;
134   void setVideoMuted(bool muted);
135
136 signals:
137   void modeChanged();
138   void creatorNameChanged();
139   void postCaptureTimeoutChanged();
140   void useGpsChanged();
141   void useGeotagsChanged();
142   void imageSceneModeChanged();
143   void imageColorFilterChanged();
144   void imageWhiteBalanceChanged();
145   void imageEvCompChanged();
146   void videoSceneModeChanged();
147   void videoColorFilterChanged();
148   void videoWhiteBalanceChanged();
149   void videoEvCompChanged();
150   void imageFlashModeChanged();
151   void imageIsoChanged();
152   void imageAspectRatioChanged();
153   void imageResolutionChanged();
154   void videoAspectRatioChanged();
155   void videoResolutionChanged();
156   void soundEnabledChanged();
157   void videoTorchOnChanged();
158   void toolBarShownChanged();
159   void videoMutedChanged();
160
161 private:
162   QSettings *m_settings;
163 };
164
165 #endif /* SETTINGS_H */