diff -r 45e72b57a2fd -r e3cecb93e76a videoplayback/videoplaybackviewplugin/inc/videoplaybackviewplugin.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videoplayback/videoplaybackviewplugin/inc/videoplaybackviewplugin.h Wed Aug 18 09:50:14 2010 +0300 @@ -0,0 +1,78 @@ +/* +* 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: VideoPlaybackViewPlugin +* +*/ + +// Version : %version: 7 % + + +#ifndef VIDEOPLAYBACKVIEWPLUGIN_H +#define VIDEOPLAYBACKVIEWPLUGIN_H + +#include +#include + + +// FORWARD DECLARATION +class VideoPlaybackView; + +/** + * MPX playback view plugin definition. + * + */ +class VideoPlaybackViewPlugin : public MpxViewPlugin +{ + Q_OBJECT + + public: + + /** + * C++ default constructor. + */ + VideoPlaybackViewPlugin(); + + /** + * Destructor. + * + */ + virtual ~VideoPlaybackViewPlugin(); + + // from QViewPlugin + void createView(); + + void destroyView(); + + void activateView(); + + void deactivateView(); + + QGraphicsWidget* getView(); + + signals: + void command( int aCommand ); + + public slots: + void orientationChange(Qt::Orientation orientation); + void back(); + + public: + VideoPlaybackView* mView; + bool mViewActivated; +}; + +#endif //VIDEOPLAYBACKVIEWPLUGIN_H + +// End of file +