Reworked preview animation
[harmattan/cameraplus] / src / devicesettings.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 DEVICE_SETTINGS_H
24 #define DEVICE_SETTINGS_H
25
26 #include <QString>
27 #include <QVariant>
28 #include <QHash>
29
30 class DeviceSettings {
31 public:
32   virtual ~DeviceSettings();
33
34   virtual QString id() const = 0;
35
36   QVariant defaultImageResolution() const;
37   QVariant defaultVideoResolution() const;
38   QVariant defaultImageAspectRatio() const;
39   QVariant defaultVideoAspectRatio() const;
40   QVariant defaultImageSceneMode() const;
41   QVariant defaultVideoSceneMode() const;
42   QVariant defaultImageColorFilter() const;
43   QVariant defaultVideoColorFilter() const;
44   QVariant defaultImageWhiteBalance() const;
45   QVariant defaultVideoWhiteBalance() const;
46   QVariant defaultImageEvComp() const;
47   QVariant defaultVideoEvComp() const;
48   QVariant defaultImageFlashMode() const;
49   QVariant defaultImageIso() const;
50   QVariant defaultVideoTorchOn() const;
51
52 protected:
53   DeviceSettings(const QHash<QString, QVariant>& defaultSettings);
54
55 private:
56   QVariant value(const QString& key) const;
57
58   const QHash<QString, QVariant> m_settings;
59 };
60
61 class PrimaryDeviceSettings : public DeviceSettings {
62 public:
63   PrimaryDeviceSettings();
64
65   QString id() const;
66
67 private:
68   QHash<QString, QVariant> settings() const;
69 };
70
71 class SecondaryDeviceSettings : public DeviceSettings {
72 public:
73   SecondaryDeviceSettings();
74
75   QString id() const;
76
77 private:
78   QHash<QString, QVariant> settings() const;
79 };
80
81 #endif /* DEVICE_SETTINGS_H */