webengine/osswebengine/WebKit/s60/plugins/PluginPlayer.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 24 Sep 2009 12:53:48 +0300
changeset 17 c8a366e56285
parent 0 dd21522fd290
permissions -rw-r--r--
Revision: 200937 Kit: 200939

/*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:  Page overview control
*
*/
#ifndef __PLUGINCONTENTPLAYER_H__
#define __PLUGINCONTENTPLAYER_H__

// INCLUDES
#include <e32base.h>
#include <coecntrl.h>

// FORWARD DECLARATIONS
class CBrCtl;
class PluginWin;

// CLASS
class PluginPlayer : public CCoeControl
    {
    public:
        // two phase contructor
        static PluginPlayer* NewL( CBrCtl& parent, PluginWin* plugin );

        virtual ~PluginPlayer();

        //from CCoeControl
        TInt CountComponentControls() const;
        CCoeControl *ComponentControl(TInt index) const;
        TKeyResponse OfferKeyEventL(const TKeyEvent keyEvent, TEventCode type);
        void Draw(const TRect& rect) const;

        // playing control
        void start();
        void stop();
        void HandlePointerEventL(const TPointerEvent& aPointerEvent);

    private:
        void ConstructL();
        PluginPlayer( CBrCtl& parent, PluginWin* plugin );

        CBrCtl&         m_brctl;             // the parent control
        PluginWin*     m_plugin;            // not owned, the plugin
        TRect           m_orgrect;           // plugin rect in original parent
        CCoeControl*    m_orgparent;         // plugin parent
    };

#endif // !__PLUGINCONTENTPLAYER_H__