--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/camerauis/cameraxui/cxui/src/cxuizoomslider.cpp Thu May 13 21:30:19 2010 +0300
@@ -0,0 +1,57 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+#include <QGraphicsSceneMouseEvent>
+#include "cxuizoomslider.h"
+
+/*!
+ \class CxuiZoomSlider
+ \brief CxuiZoomSlider is a camera specific slider that is derived from HbSlider
+
+ CxuiZoomslider has been created so that we are able to control and filter user
+ mouse press events. All mouse press events that happen in slider rect are
+ accepted in this class so that they won't be given any other components.
+ This has to be done to prevent the slider to dismiss when accidentally
+ missing e.g.slider thumb touch area (camera view underneath will get the
+ event and hide the slider).
+
+*/
+
+CxuiZoomSlider::CxuiZoomSlider(QGraphicsItem *parentItem)
+: HbSlider(parentItem)
+{
+
+}
+
+
+CxuiZoomSlider::~CxuiZoomSlider()
+{
+
+}
+
+
+/*
+* CxuiZoomSlider::mousePressEvent()
+*/
+void CxuiZoomSlider::mousePressEvent(QGraphicsSceneMouseEvent *event)
+{
+ HbSlider::mousePressEvent(event);
+
+ // accept event so that it will not be given to the components
+ // underneath this slider
+ event->accept();
+}