Update contrib.
2 * Copyright (c) 2009 Symbian Foundation Ltd
3 * This component and the accompanying materials are made available
4 * under the terms of the License "Eclipse Public License v1.0"
5 * which accompanies this distribution, and is available
6 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 * Initial Contributors:
9 * Symbian Foundation Ltd - initial contribution.
14 * Implementation of CTigerContainer class
19 #include "TigerContainer.h"
21 // ================= MEMBER FUNCTIONS =======================
23 // ---------------------------------------------------------
24 // CTigerContainer::ConstructL(const TRect& aRect)
25 // EPOC two phased constructor
26 // ---------------------------------------------------------
28 void CTigerContainer::ConstructL(const TRect& /*aRect*/)
30 // iOpenGlInitialized = EFalse;
33 SetExtentToWholeScreen(); // Take the whole screen into use
39 iTiger = CTiger::NewL(size.iWidth, size.iHeight ); // Create an instance of Tiger
41 iTiger->AppInit(Window());
47 CTigerContainer::~CTigerContainer()
49 /* AppExit call is made to release
50 any allocations made in AppInit. */
58 // ---------------------------------------------------------
59 // CTigerContainer::SizeChanged()
60 // Called by framework when the view size is changed
61 // ---------------------------------------------------------
63 void CTigerContainer::SizeChanged()
69 iTiger->SetScreenSize( size.iWidth, size.iHeight );
74 // ---------------------------------------------------------
75 // CTigerContainer::HandleResourceChange(
77 // Dynamic screen resize changes by calling the
78 // SetExtentToWholeScreen() method again.
79 // ---------------------------------------------------------
81 void CTigerContainer::HandleResourceChange(TInt aType)
85 case KEikDynamicLayoutVariantSwitch:
86 SetExtentToWholeScreen();
91 // ---------------------------------------------------------
92 // CTigerContainer::CountComponentControls() const
93 // ---------------------------------------------------------
95 TInt CTigerContainer::CountComponentControls() const
100 // ---------------------------------------------------------
101 // CTigerContainer::ComponentControl(TInt aIndex) const
102 // ---------------------------------------------------------
104 CCoeControl* CTigerContainer::ComponentControl(TInt /*aIndex*/ ) const
109 // ---------------------------------------------------------
110 // CTigerContainer::Draw(const TRect& aRect) const
111 // ---------------------------------------------------------
113 void CTigerContainer::Draw(const TRect& aRect ) const
116 CWindowGc& gc = SystemGc();
118 gc.SetBrushColor(color);
119 gc.SetPenStyle(CGraphicsContext::ENullPen);
120 gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
123 //set up destination CFbsBitmap object
124 CFbsBitmap* bitmap=NULL;
125 TRAPD(err, bitmap = new(ELeave)CFbsBitmap;);
128 const TDisplayMode dispMode = Window().DisplayMode();
129 //copy from source (EGL) to target(CFbsBitmap) buffer
130 iTiger->AppRender(aRect, bitmap);
131 RenderBitmap(gc, bitmap);
136 void CTigerContainer::RenderBitmap(CWindowGc& aGc, CFbsBitmap* aBitmap) const
139 // calculate position for top left of bitmap so it is centered
140 TSize bmpSizeInPixels=aBitmap->SizeInPixels();
141 TRect rect=Rect(); // a centered rectangle of the default size
142 TInt xDelta=(rect.Width()-bmpSizeInPixels.iWidth)/2;
143 TInt yDelta=(rect.Height()-bmpSizeInPixels.iHeight)/2;
144 TPoint pos=TPoint(xDelta,yDelta); // displacement vector
145 pos+=rect.iTl; // bitmap top left corner position
146 aGc.BitBlt(pos, aBitmap); // CWindowGc member function
151 // ---------------------------------------------------------
152 // CTigerContainer::HandleControlEventL(
153 // CCoeControl* aControl,TCoeEvent aEventType)
154 // ---------------------------------------------------------
156 void CTigerContainer::HandleControlEventL(
157 CCoeControl* /*aControl*/,TCoeEvent /*aEventType*/)