VideoTorch and VideoMute are now properties of Camera
[harmattan/cameraplus] / lib / qtcamdevice.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 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   bool start();
49   bool stop(bool force);
50   bool isRunning();
51   bool isIdle();
52
53   QtCamImageMode *imageMode() const;
54   QtCamVideoMode *videoMode() const;
55
56   QtCamMode *activeMode() const;
57
58   QString name() const;
59   QVariant id() const;
60
61   QtCamConfig *config() const;
62   QtCamGStreamerMessageListener *listener() const;
63
64   QtCamNotifications *notifications() const;
65
66 signals:
67   void error(const QString& message, int code, const QString& debug);
68   void started();
69   void stopping();
70   void stopped();
71   void idleStateChanged(bool isIdle);
72   void modeChanged();
73   void runningStateChanged(bool running);
74
75 private:
76   Q_PRIVATE_SLOT(d_ptr, void _d_error(const QString&, int, const QString&))
77   Q_PRIVATE_SLOT(d_ptr, void _d_started())
78   Q_PRIVATE_SLOT(d_ptr, void _d_stopped())
79   Q_PRIVATE_SLOT(d_ptr, void _d_stopping())
80
81   friend class QtCamMetaData;
82   friend class QtCamCapability;
83   friend class QtCamVideoTorch;
84   friend class QtCamVideoMute;
85   friend class QtCamAutoFocusPrivate;
86
87   QtCamDevicePrivate *d_ptr;
88 };
89
90 #endif /* QT_CAM_DEVICE_H */