videocollection/tsrc/simplevideoplayback/inc/svpbview.h
changeset 50 21fe8338c6bf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videocollection/tsrc/simplevideoplayback/inc/svpbview.h	Fri Aug 06 09:43:48 2010 +0300
@@ -0,0 +1,55 @@
+/*
+* Copyright (c) 2010 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:  Main view of the SimpleVideoPlayback MPX view plugin.
+*
+*/
+
+#ifndef SVPBVIEW_H_
+#define SVPBVIEW_H_
+
+#include <hbview.h>
+
+class CSvpbNativeWindow;
+class SvpbSurfaceContainer;
+
+class SvpbView : public HbView
+{
+	Q_OBJECT
+
+public:
+	SvpbView(QGraphicsItem *parent=0);
+	virtual ~SvpbView();
+
+public:
+    void activate();
+    void deactivate();
+
+    SvpbSurfaceContainer *surfaceContainer() const;
+
+signals:
+    void finished();
+    void tapped();
+    void longTapped();
+
+private:
+    void mousePressEvent(QGraphicsSceneMouseEvent *event);
+    void gestureEvent(QGestureEvent *event);
+    bool handleTap(Qt::GestureState state);
+    bool handleLongTap(Qt::GestureState state);
+
+private:
+    CSvpbNativeWindow *mNativeWindow;
+};
+
+#endif /* SVPBVIEW_H_ */