os/graphics/openvg/openvgrefimplementation/sfopenvg/test/src/tigerContainer.cpp
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
* Implementation of CTigerContainer class
sl@0
    15
*/
sl@0
    16
sl@0
    17
sl@0
    18
// INCLUDE FILES
sl@0
    19
#include "TigerContainer.h"
sl@0
    20
sl@0
    21
// ================= MEMBER FUNCTIONS =======================
sl@0
    22
sl@0
    23
// ---------------------------------------------------------
sl@0
    24
// CTigerContainer::ConstructL(const TRect& aRect)
sl@0
    25
// EPOC two phased constructor
sl@0
    26
// ---------------------------------------------------------
sl@0
    27
//
sl@0
    28
void CTigerContainer::ConstructL(const TRect& /*aRect*/)
sl@0
    29
    {
sl@0
    30
//    iOpenGlInitialized = EFalse;
sl@0
    31
    CreateWindowL();
sl@0
    32
sl@0
    33
    SetExtentToWholeScreen();                // Take the whole screen into use
sl@0
    34
    ActivateL();
sl@0
    35
            
sl@0
    36
    TSize size;
sl@0
    37
    size = this->Size();
sl@0
    38
sl@0
    39
    iTiger = CTiger::NewL(size.iWidth, size.iHeight ); // Create an instance of Tiger
sl@0
    40
    
sl@0
    41
    iTiger->AppInit(Window());
sl@0
    42
    
sl@0
    43
    return;
sl@0
    44
    }
sl@0
    45
sl@0
    46
// Destructor
sl@0
    47
CTigerContainer::~CTigerContainer()
sl@0
    48
    {
sl@0
    49
    /* AppExit call is made to release
sl@0
    50
       any allocations made in AppInit. */
sl@0
    51
    if ( iTiger )
sl@0
    52
        {
sl@0
    53
        iTiger->AppExit();
sl@0
    54
        delete iTiger;
sl@0
    55
        }
sl@0
    56
    }
sl@0
    57
sl@0
    58
// ---------------------------------------------------------
sl@0
    59
// CTigerContainer::SizeChanged()
sl@0
    60
// Called by framework when the view size is changed
sl@0
    61
// ---------------------------------------------------------
sl@0
    62
//
sl@0
    63
void CTigerContainer::SizeChanged()
sl@0
    64
    {
sl@0
    65
    if( iTiger )
sl@0
    66
        {
sl@0
    67
        TSize size;
sl@0
    68
        size = this->Size();
sl@0
    69
        iTiger->SetScreenSize( size.iWidth, size.iHeight );
sl@0
    70
        }
sl@0
    71
    }
sl@0
    72
sl@0
    73
sl@0
    74
// ---------------------------------------------------------
sl@0
    75
// CTigerContainer::HandleResourceChange(
sl@0
    76
//     TInt aType)
sl@0
    77
// Dynamic screen resize changes by calling the
sl@0
    78
// SetExtentToWholeScreen() method again.
sl@0
    79
// ---------------------------------------------------------
sl@0
    80
//
sl@0
    81
 void CTigerContainer::HandleResourceChange(TInt aType)
sl@0
    82
    {
sl@0
    83
	switch( aType )
sl@0
    84
    	{
sl@0
    85
	    case KEikDynamicLayoutVariantSwitch:
sl@0
    86
		    SetExtentToWholeScreen();
sl@0
    87
		    break;
sl@0
    88
	    }
sl@0
    89
    }
sl@0
    90
sl@0
    91
// ---------------------------------------------------------
sl@0
    92
// CTigerContainer::CountComponentControls() const
sl@0
    93
// ---------------------------------------------------------
sl@0
    94
//
sl@0
    95
TInt CTigerContainer::CountComponentControls() const
sl@0
    96
    {
sl@0
    97
    return 0;
sl@0
    98
    }
sl@0
    99
sl@0
   100
// ---------------------------------------------------------
sl@0
   101
// CTigerContainer::ComponentControl(TInt aIndex) const
sl@0
   102
// ---------------------------------------------------------
sl@0
   103
//
sl@0
   104
CCoeControl* CTigerContainer::ComponentControl(TInt /*aIndex*/ ) const
sl@0
   105
    {
sl@0
   106
    return NULL;
sl@0
   107
    }
sl@0
   108
sl@0
   109
// ---------------------------------------------------------
sl@0
   110
// CTigerContainer::Draw(const TRect& aRect) const
sl@0
   111
// ---------------------------------------------------------
sl@0
   112
//
sl@0
   113
void CTigerContainer::Draw(const TRect& aRect ) const
sl@0
   114
    {
sl@0
   115
    
sl@0
   116
    CWindowGc& gc = SystemGc();
sl@0
   117
    TRgb color(KRgbRed);
sl@0
   118
    gc.SetBrushColor(color);
sl@0
   119
	gc.SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   120
	gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   121
	gc.DrawRect(Rect());
sl@0
   122
	
sl@0
   123
	//set up destination CFbsBitmap object
sl@0
   124
	CFbsBitmap* bitmap=NULL;
sl@0
   125
	TRAPD(err, bitmap = new(ELeave)CFbsBitmap;);
sl@0
   126
	if(bitmap)
sl@0
   127
		{
sl@0
   128
		const TDisplayMode dispMode = Window().DisplayMode();
sl@0
   129
			//copy from source (EGL) to target(CFbsBitmap) buffer
sl@0
   130
		iTiger->AppRender(aRect, bitmap);		
sl@0
   131
		RenderBitmap(gc, bitmap);
sl@0
   132
		delete bitmap;
sl@0
   133
		}
sl@0
   134
	}
sl@0
   135
sl@0
   136
void  CTigerContainer::RenderBitmap(CWindowGc& aGc, CFbsBitmap* aBitmap) const
sl@0
   137
	{
sl@0
   138
	//draw bitmap
sl@0
   139
	// calculate position for top left of bitmap so it is centered
sl@0
   140
	TSize bmpSizeInPixels=aBitmap->SizeInPixels();
sl@0
   141
	TRect rect=Rect(); // a centered rectangle of the default size
sl@0
   142
	TInt xDelta=(rect.Width()-bmpSizeInPixels.iWidth)/2;
sl@0
   143
	TInt yDelta=(rect.Height()-bmpSizeInPixels.iHeight)/2;
sl@0
   144
	TPoint pos=TPoint(xDelta,yDelta); // displacement vector
sl@0
   145
	pos+=rect.iTl; // bitmap top left corner position
sl@0
   146
	aGc.BitBlt(pos, aBitmap); // CWindowGc member function	
sl@0
   147
	}
sl@0
   148
sl@0
   149
sl@0
   150
sl@0
   151
// ---------------------------------------------------------
sl@0
   152
// CTigerContainer::HandleControlEventL(
sl@0
   153
//     CCoeControl* aControl,TCoeEvent aEventType)
sl@0
   154
// ---------------------------------------------------------
sl@0
   155
//
sl@0
   156
void CTigerContainer::HandleControlEventL(
sl@0
   157
    CCoeControl* /*aControl*/,TCoeEvent /*aEventType*/)
sl@0
   158
    {
sl@0
   159
    }
sl@0
   160
sl@0
   161
// End of File