Reset pipeline manager error and try to start camera device when device gets changed
[harmattan/cameraplus] / lib / qtcamimagesettings.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 QT_CAM_IMAGE_SETTINGS_H
24 #define QT_CAM_IMAGE_SETTINGS_H
25
26 #include <QSize>
27 #include <QPair>
28 #include <QString>
29 #include <QSharedDataPointer>
30 #include <QStringList>
31
32 class QtCamImageSettingsPrivate;
33 class QtCamImageResolutionPrivate;
34
35 class QtCamImageResolution {
36 public:
37   QtCamImageResolution(const QString& id, const QString& name, const QSize& capture,
38                        const QSize& preview, const QSize& viewfinder,
39                        int fps, int nightFps, int megaPixels, QString aspectRatio);
40   QtCamImageResolution(const QtCamImageResolution& other);
41
42   QtCamImageResolution& operator=(const QtCamImageResolution& other);
43
44   ~QtCamImageResolution();
45
46   QString id() const;
47   QString name() const;
48   QSize captureResolution() const;
49   QSize viewfinderResolution() const;
50   QSize previewResolution() const;
51   int frameRate() const;
52   int nightFrameRate() const;
53   int megaPixels() const;
54   QString aspectRatio() const;
55
56 private:
57   QSharedDataPointer<QtCamImageResolutionPrivate> d_ptr;
58 };
59
60 class QtCamImageSettings {
61 public:
62   QtCamImageSettings(const QString& id, const QString& suffix, const QString& profileName,
63                      const QString& profilePath, const QList<QtCamImageResolution>& resolutions);
64   QtCamImageSettings(const QtCamImageSettings& other);
65
66   QtCamImageSettings& operator=(const QtCamImageSettings& other);
67
68   ~QtCamImageSettings();
69
70   QString id() const;
71   QString suffix() const;
72   QString profileName() const;
73   QString profilePath() const;
74
75   QtCamImageResolution defaultResolution(const QString& aspectRatio = QString()) const;
76   QList<QtCamImageResolution> resolutions(const QString& aspectRatio = QString()) const;
77   QStringList aspectRatios() const;
78
79 private:
80   QSharedDataPointer<QtCamImageSettingsPrivate> d_ptr;
81 };
82
83 #endif /* QT_CAM_IMAGE_SETTINGS_H */