Set media.name to '*'.
[harmattan/cameraplus] / lib / qtcamdevice.h
index 64702ac..5a73842 100644 (file)
@@ -1,5 +1,25 @@
 // -*- c++ -*-
 
 // -*- c++ -*-
 
+/*!
+ * This file is part of CameraPlus.
+ *
+ * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
 #ifndef QT_CAM_DEVICE_H
 #define QT_CAM_DEVICE_H
 
 #ifndef QT_CAM_DEVICE_H
 #define QT_CAM_DEVICE_H
 
@@ -15,6 +35,7 @@ class QtCamMode;
 class QtCamGStreamerMessageListener;
 class QtCamMetaData;
 class QtCamCapability;
 class QtCamGStreamerMessageListener;
 class QtCamMetaData;
 class QtCamCapability;
+class QtCamNotifications;
 
 class QtCamDevice : public QObject {
   Q_OBJECT
 
 class QtCamDevice : public QObject {
   Q_OBJECT
@@ -24,8 +45,10 @@ public:
   ~QtCamDevice();
 
   bool setViewfinder(QtCamViewfinder *viewfinder);
   ~QtCamDevice();
 
   bool setViewfinder(QtCamViewfinder *viewfinder);
+  QtCamViewfinder *viewfinder() const;
+
   bool start();
   bool start();
-  bool stop();
+  bool stop(bool force);
   bool isRunning();
   bool isIdle();
 
   bool isRunning();
   bool isIdle();
 
@@ -40,6 +63,8 @@ public:
   QtCamConfig *config() const;
   QtCamGStreamerMessageListener *listener() const;
 
   QtCamConfig *config() const;
   QtCamGStreamerMessageListener *listener() const;
 
+  QtCamNotifications *notifications() const;
+
 signals:
   void error(const QString& message, int code, const QString& debug);
   void started();
 signals:
   void error(const QString& message, int code, const QString& debug);
   void started();
@@ -55,9 +80,13 @@ private:
   Q_PRIVATE_SLOT(d_ptr, void _d_stopped())
   Q_PRIVATE_SLOT(d_ptr, void _d_stopping())
 
   Q_PRIVATE_SLOT(d_ptr, void _d_stopped())
   Q_PRIVATE_SLOT(d_ptr, void _d_stopping())
 
-  friend class QtCamMetaData;
+  friend class QtCamMetaDataPrivate;
   friend class QtCamCapability;
   friend class QtCamVideoTorch;
   friend class QtCamCapability;
   friend class QtCamVideoTorch;
+  friend class QtCamVideoMute;
+  friend class QtCamAutoFocusPrivate;
+  friend class QtCamRoiPrivate;
+  friend class QtCamNotifications;
 
   QtCamDevicePrivate *d_ptr;
 };
 
   QtCamDevicePrivate *d_ptr;
 };