Don't show rounded corners
[harmattan/cameraplus] / qml / ModeController.qml
index bfa6d2b..b764eec 100644 (file)
@@ -1,4 +1,25 @@
 // -*- qml -*-
+
+/*!
+ * 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
+ */
+
 import QtQuick 1.1
 import com.nokia.meego 1.1
 import QtCamera 1.0
@@ -12,10 +33,10 @@ Item {
 
         SequentialAnimation {
                 id: animation
-                property int mode: 0
+                property int mode: Camera.UnknownMode
 
                 function setMode() {
-                        cam.mode = mode;
+                        root.resetCamera(cam.deviceId, mode);
                 }
 
                 NumberAnimation { target: dimmer; property: "opacity"; from: 0; to: 1; duration: 150; alwaysRunToEnd: true }
@@ -33,15 +54,11 @@ Item {
         }
 
         onModeChanged: {
-                set(mode);
-        }
-
-        function set(newMode) {
-                if (cam.mode == newMode) {
+                if (!cam || cam.mode == mode) {
                         return;
                 }
 
-                animation.mode = newMode;
+                animation.mode = mode;
 
                 animation.start();
         }