Added ImageSettings::currentResolution and methods to find ImageResolution and set it
[harmattan/cameraplus] / declarative / videosettings.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 VIDEO_SETTINGS_H
24 #define VIDEO_SETTINGS_H
25
26 #include <QObject>
27 #include <QStringList>
28
29 class Camera;
30 class QtCamVideoSettings;
31 class VideoResolutionModel;
32
33 class VideoSettings : 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(VideoResolutionModel *resolutions READ resolutions NOTIFY resolutionsChanged);
41   Q_PROPERTY(bool ready READ isReady NOTIFY readyChanged);
42
43 public:
44   VideoSettings(QObject *parent = 0);
45   ~VideoSettings();
46
47   QString suffix() const;
48   QStringList aspectRatios() const;
49
50   Camera *camera();
51   void setCamera(Camera *camera);
52
53   VideoResolutionModel *resolutions();
54
55   bool isReady() const;
56
57   Q_INVOKABLE bool setResolution(const QString& aspectRatio, const QString& resolution);
58
59   int aspectRatioCount() const;
60
61 signals:
62   void settingsChanged();
63   void cameraChanged();
64   void resolutionsChanged();
65   void readyChanged();
66   void aspectRatioCountChanged();
67
68 private slots:
69   void deviceChanged();
70
71 private:
72   Camera *m_cam;
73   QtCamVideoSettings *m_settings;
74   VideoResolutionModel *m_resolutions;
75 };
76
77 #endif /* VIDEO_SETTINGS_H */