Added copyright headers and COPYING file.
[harmattan/cameraplus] / imports / mode.cpp
index 8f3ae7a..4d62458 100644 (file)
@@ -1,3 +1,23 @@
+/*!
+ * This file is part of CameraPlus.
+ *
+ * Copyright (C) 2012 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
+ */
+
 #include "mode.h"
 #include "qtcammode.h"
 #include "camera.h"
@@ -66,7 +86,6 @@ void Mode::deviceChanged() {
                        this, SIGNAL(canCaptureChanged()));
     QObject::disconnect(m_cam->device(), SIGNAL(runningStateChanged(bool)),
                        this, SIGNAL(canCaptureChanged()));
-    QObject::disconnect(m_mode, SIGNAL(nightModeChanged()), this, SIGNAL(nightModeChanged()));
 
     preChangeMode();
   }
@@ -88,7 +107,6 @@ void Mode::deviceChanged() {
                     this, SIGNAL(canCaptureChanged()));
     QObject::connect(m_cam->device(), SIGNAL(runningStateChanged(bool)),
                     this, SIGNAL(canCaptureChanged()));
-    QObject::connect(m_mode, SIGNAL(nightModeChanged()), this, SIGNAL(nightModeChanged()));
 
     postChangeMode();
   }
@@ -107,16 +125,6 @@ void Mode::gotPreview(const QImage& image, const QString& fileName) {
   emit previewAvailable(url, fileName);
 }
 
-void Mode::setNightMode(bool night) {
-  if (m_mode) {
-    m_mode->setNightMode(night);
-  }
-}
-
-bool Mode::inNightMode() const {
-  return m_mode ? m_mode->inNightMode() : false;
-}
-
 bool Mode::isReady() const {
   return m_mode;
 }