Cleaned up PKGCONFIG packages
[harmattan/cameraplus] / declarative / imagesettings.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 IMAGE_SETTINGS_H
24 #define IMAGE_SETTINGS_H
25
26 #include <QObject>
27 #include <QStringList>
28
29 class Camera;
30 class QtCamImageSettings;
31 class ImageResolutionModel;
32
33 class ImageSettings : 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(ImageResolutionModel *resolutions READ resolutions NOTIFY resolutionsChanged);
40   Q_PROPERTY(bool ready READ isReady NOTIFY readyChanged);
41
42 public:
43   ImageSettings(QObject *parent = 0);
44   ~ImageSettings();
45
46   QString suffix() const;
47   QStringList aspectRatios() const;
48
49   Camera *camera();
50   void setCamera(Camera *camera);
51
52   ImageResolutionModel *resolutions();
53
54   bool isReady() const;
55
56   Q_INVOKABLE bool setResolution(const QString& aspectRatio, const QString& resolution);
57
58 signals:
59   void settingsChanged();
60   void cameraChanged();
61   void resolutionsChanged();
62   void readyChanged();
63
64 private slots:
65   void deviceChanged();
66
67 private:
68   Camera *m_cam;
69   QtCamImageSettings *m_settings;
70   ImageResolutionModel *m_resolutions;
71 };
72
73 #endif /* IMAGE_SETTINGS_H */