Added methods to find VideoResolution 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 class VideoResolution;
33 class QtCamVideoResolution;
34
35 class VideoSettings : public QObject {
36   Q_OBJECT
37
38   Q_PROPERTY(Camera* camera READ camera WRITE setCamera NOTIFY cameraChanged);
39   Q_PROPERTY(QString suffix READ suffix NOTIFY settingsChanged);
40   Q_PROPERTY(QStringList aspectRatios READ aspectRatios NOTIFY settingsChanged);
41   Q_PROPERTY(int aspectRatioCount READ aspectRatioCount NOTIFY aspectRatioCountChanged);
42   Q_PROPERTY(VideoResolutionModel *resolutions READ resolutions NOTIFY resolutionsChanged);
43   Q_PROPERTY(bool ready READ isReady NOTIFY readyChanged);
44   Q_PROPERTY(VideoResolution *currentResolution READ currentResolution NOTIFY currentResolutionChanged);
45
46 public:
47   VideoSettings(QObject *parent = 0);
48   ~VideoSettings();
49
50   QString suffix() const;
51   QStringList aspectRatios() const;
52
53   Camera *camera();
54   void setCamera(Camera *camera);
55
56   VideoResolutionModel *resolutions();
57
58   bool isReady() const;
59
60   VideoResolution *currentResolution();
61
62   Q_INVOKABLE VideoResolution *findResolution(const QString& aspectRatio,
63                                               const QString& name);
64   Q_INVOKABLE bool setResolution(VideoResolution *resolution);
65
66   Q_INVOKABLE bool setResolution(const QString& aspectRatio, const QString& resolution);
67
68   int aspectRatioCount() const;
69
70 signals:
71   void settingsChanged();
72   void cameraChanged();
73   void resolutionsChanged();
74   void readyChanged();
75   void aspectRatioCountChanged();
76   void currentResolutionChanged();
77
78 private slots:
79   void deviceChanged();
80
81 private:
82   bool setResolution(const QtCamVideoResolution& resolution);
83
84   Camera *m_cam;
85   QtCamVideoSettings *m_settings;
86   VideoResolutionModel *m_resolutions;
87   VideoResolution *m_currentResolution;
88 };
89
90 #endif /* VIDEO_SETTINGS_H */