os/graphics/openvg/openvgrefimplementation/sfopenvg/test/inc/tigerContainer.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Symbian Foundation Ltd
sl@0
     3
* This component and the accompanying materials are made available
sl@0
     4
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
* which accompanies this distribution, and is available
sl@0
     6
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
*
sl@0
     8
* Initial Contributors:
sl@0
     9
* Symbian Foundation Ltd - initial contribution.
sl@0
    10
* 
sl@0
    11
* Contributors:
sl@0
    12
*
sl@0
    13
* Description:
sl@0
    14
* Tiger app container class
sl@0
    15
*/
sl@0
    16
#ifndef TIGERCONTAINER_H
sl@0
    17
#define TIGERCONTAINER_H
sl@0
    18
sl@0
    19
// INCLUDES
sl@0
    20
#include <coecntrl.h>
sl@0
    21
#include "tiger.h"
sl@0
    22
#include <akndef.h>
sl@0
    23
sl@0
    24
#include <eglosnativewindowtype.h>
sl@0
    25
sl@0
    26
// CLASS DECLARATION
sl@0
    27
sl@0
    28
/**
sl@0
    29
 * Container control class that handles the OpenGL ES initialization and deinitializations.
sl@0
    30
 * Also uses the CTiger class to do the actual OpenGL ES rendering.
sl@0
    31
 */
sl@0
    32
class CTicker;
sl@0
    33
class CTigerContainer : public CCoeControl, MCoeControlObserver
sl@0
    34
    {
sl@0
    35
    public: // Constructors and destructor
sl@0
    36
sl@0
    37
        /**
sl@0
    38
         * EPOC default constructor. Initializes the OpenGL ES for rendering to the window surface.
sl@0
    39
         * @param aRect Screen rectangle for container.
sl@0
    40
         */
sl@0
    41
        void ConstructL(const TRect& aRect);
sl@0
    42
sl@0
    43
        /**
sl@0
    44
         * Destructor. Destroys the CPeriodic, CTiger and uninitializes OpenGL ES.
sl@0
    45
         */
sl@0
    46
        virtual ~CTigerContainer();
sl@0
    47
sl@0
    48
    private: // Functions from base classes
sl@0
    49
sl@0
    50
        /**
sl@0
    51
         * Method from CoeControl that gets called when the display size changes.
sl@0
    52
         * If OpenGL has been initialized, notifies the renderer class that the screen
sl@0
    53
         * size has changed.
sl@0
    54
         */
sl@0
    55
        void SizeChanged();
sl@0
    56
sl@0
    57
        /**
sl@0
    58
         * Handles a change to the control's resources. This method
sl@0
    59
         * reacts to the KEikDynamicLayoutVariantSwitch event (that notifies of
sl@0
    60
         * screen size change) by calling the SetExtentToWholeScreen() again so that
sl@0
    61
         * this control fills the new screen size. This will then trigger a call to the
sl@0
    62
         * SizeChanged() method.
sl@0
    63
         * @param aType Message UID value, only KEikDynamicLayoutVariantSwitch is handled by this method.
sl@0
    64
         */
sl@0
    65
        void HandleResourceChange(TInt aType);
sl@0
    66
sl@0
    67
        /**
sl@0
    68
         * Method from CoeControl. Does nothing in this implementation.
sl@0
    69
         */
sl@0
    70
        TInt CountComponentControls() const;
sl@0
    71
sl@0
    72
        /**
sl@0
    73
         * Method from CCoeControl. Does nothing in this implementation.
sl@0
    74
         */
sl@0
    75
        CCoeControl* ComponentControl(TInt aIndex) const;
sl@0
    76
sl@0
    77
        /**
sl@0
    78
         * Method from CCoeControl. Does nothing in this implementation.
sl@0
    79
         * All rendering is done in the DrawCallBack() method.
sl@0
    80
         */
sl@0
    81
        void Draw(const TRect& aRect) const;
sl@0
    82
sl@0
    83
        /**
sl@0
    84
         * Method from MCoeControlObserver that handles an event from the observed control.
sl@0
    85
         * Does nothing in this implementation.
sl@0
    86
		 * @param aControl   Control changing its state.
sl@0
    87
		 * @param aEventType Type of the control event.
sl@0
    88
         */
sl@0
    89
        void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType);
sl@0
    90
        
sl@0
    91
        void  RenderBitmap(CWindowGc& aGc, CFbsBitmap* aBitmap) const;
sl@0
    92
        void  CopyAndRender(CWindowGc& aGc) const;
sl@0
    93
        TInt FlipVertical(CFbsBitmap& aBitmap) const;
sl@0
    94
sl@0
    95
    private:  //data
sl@0
    96
sl@0
    97
        CTiger* iTiger;
sl@0
    98
    };
sl@0
    99
sl@0
   100
#endif
sl@0
   101
sl@0
   102
// End of File