00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "BitmapsGraphicsControl.h"
00032
00033 #include <coemain.h>
00034 #include <coeaui.h>
00035
00036 _LIT(KtxtSwiss,"Swiss");
00037
00038 void CGraphicExampleControl::ConstructL(const TRect& aRect, MGraphicsExampleObserver* aGraphObserver, const CCoeControl& aParent)
00039 {
00040
00041 iGraphObserver=aGraphObserver;
00042
00043 CreateWindowL(&aParent);
00044
00045 TFontSpec spec(KtxtSwiss,213);
00046 iMessageFont=iCoeEnv->CreateScreenFontL(spec);
00047
00048 SetRect(aRect);
00049
00050 ActivateL();
00051 UpdateModelL();
00052 }
00053
00054 CGraphicExampleControl::~CGraphicExampleControl()
00055 {
00056 iCoeEnv->ReleaseScreenFont(iMessageFont);
00057 }
00058
00059 void CGraphicExampleControl::Quit()
00060 {
00061 iGraphObserver->NotifyGraphicExampleFinished();
00062 }
00063
00064 void CGraphicExampleControl::NextPhaseL()
00065 {
00066 if (++iPhase >= iMaxPhases)
00067 Quit();
00068 else
00069 {
00070 UpdateModelL();
00071 DrawNow();
00072 }
00073 }
00074
00075 void CGraphicExampleControl::HandlePointerEventL(const TPointerEvent& aPointerEvent)
00076 {
00077 if (aPointerEvent.iType==TPointerEvent::EButton1Down) NextPhaseL();
00078 }
00079
00080 TKeyResponse CGraphicExampleControl::OfferKeyEventL(
00081 const TKeyEvent& aKeyEvent,TEventCode aType
00082 )
00083 {
00084 if (aType!=EEventKey) return EKeyWasNotConsumed;
00085 TInt code=aKeyEvent.iCode;
00086 switch (code)
00087 {
00088 case ' ':
00089 NextPhaseL();
00090 break;
00091 default:
00092 return EKeyWasNotConsumed;
00093 }
00094 return EKeyWasConsumed;
00095 }
00096