Updated copyright year
[harmattan/cameraplus] / lib / qtcamdevice.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_DEVICE_H
24 #define QT_CAM_DEVICE_H
25
26 #include <QObject>
27 #include <QVariant>
28
29 class QtCamDevicePrivate;
30 class QtCamConfig;
31 class QtCamViewfinder;
32 class QtCamVideoMode;
33 class QtCamImageMode;
34 class QtCamMode;
35 class QtCamGStreamerMessageListener;
36 class QtCamMetaData;
37 class QtCamCapability;
38 class QtCamNotifications;
39
40 class QtCamDevice : public QObject {
41   Q_OBJECT
42
43 public:
44   QtCamDevice(QtCamConfig *config, const QString& name, const QVariant& id, QObject *parent = 0);
45   ~QtCamDevice();
46
47   bool setViewfinder(QtCamViewfinder *viewfinder);
48   QtCamViewfinder *viewfinder() const;
49
50   bool start();
51   bool stop(bool force);
52   bool isRunning();
53   bool isIdle();
54
55   QtCamImageMode *imageMode() const;
56   QtCamVideoMode *videoMode() const;
57
58   QtCamMode *activeMode() const;
59
60   QString name() const;
61   QVariant id() const;
62
63   QtCamConfig *config() const;
64   QtCamGStreamerMessageListener *listener() const;
65
66   QtCamNotifications *notifications() const;
67
68 signals:
69   void error(const QString& message, int code, const QString& debug);
70   void started();
71   void stopping();
72   void stopped();
73   void idleStateChanged(bool isIdle);
74   void modeChanged();
75   void runningStateChanged(bool running);
76
77 private:
78   Q_PRIVATE_SLOT(d_ptr, void _d_error(const QString&, int, const QString&))
79   Q_PRIVATE_SLOT(d_ptr, void _d_started())
80   Q_PRIVATE_SLOT(d_ptr, void _d_stopped())
81   Q_PRIVATE_SLOT(d_ptr, void _d_stopping())
82
83   friend class QtCamMetaData;
84   friend class QtCamCapability;
85   friend class QtCamVideoTorch;
86   friend class QtCamVideoMute;
87   friend class QtCamAutoFocusPrivate;
88   friend class QtCamRoiPrivate;
89
90   QtCamDevicePrivate *d_ptr;
91 };
92
93 #endif /* QT_CAM_DEVICE_H */