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
00032 #include "ControlsContainer.h"
00033 #include "ImageContainer.h"
00034 #include "AnimationContainer.h"
00035 #include "BitmapContainer.h"
00036 #include "AboutContainer.h"
00037
00038 #include "GraphicsMainView.h"
00039 #include "GraphicsExternalInterface.h"
00040 #include <GraphicsImages.rsg>
00041 #include "Graphics.hrh"
00042
00043
00044
00045
00046
00047
00048
00049
00050 CGraphicsMainView* CGraphicsMainView::NewLC(CGraphicsAppUi& aAppUi)
00051 {
00052 CGraphicsMainView* self = new (ELeave) CGraphicsMainView(aAppUi);
00053 CleanupStack::PushL(self);
00054 self->ConstructL();
00055 return self;
00056 }
00057
00058
00059
00060
00061 CGraphicsMainView* CGraphicsMainView::NewL(CGraphicsAppUi& aAppUi)
00062 {
00063 CGraphicsMainView* self = CGraphicsMainView::NewLC(aAppUi);
00064 CleanupStack::Pop();
00065 return self;
00066 }
00067
00068
00069
00070 CGraphicsMainView::CGraphicsMainView(CGraphicsAppUi& aAppUi)
00071 {
00072 }
00073
00074
00075
00076
00077 CGraphicsMainView::~CGraphicsMainView()
00078 {
00079 delete iAppContainer;
00080 delete iMySplashContainer;
00081 }
00082
00083
00084
00085
00086 void CGraphicsMainView::ConstructL()
00087 {
00088 CreateWindowL();
00089
00090 TRect rect;
00091 AknLayoutUtils::LayoutMetricsRect(AknLayoutUtils::EMainPane, rect);
00092 SetRect(rect);
00093
00094 ActivateL();
00095
00096 iMySplashContainer = CMySplashContainer::NewL(*this);
00097
00098 DrawNow();
00099 }
00100
00101
00102
00103
00104
00105
00106 void CGraphicsMainView::HandleResourceChange(TInt aType)
00107 {
00108 if ( aType==KEikDynamicLayoutVariantSwitch )
00109 {
00110 TRect rect;
00111 AknLayoutUtils::LayoutMetricsRect(AknLayoutUtils::EMainPane, rect);
00112 SetRect(rect);
00113
00114 if(iAppContainer)
00115 {
00116 iAppContainer->SetRect(rect);
00117 }
00118 }
00119
00120 CCoeControl::HandleResourceChange(aType);
00121 }
00122
00123
00124
00125
00126
00127
00128 void CGraphicsMainView::SplashTimeIsUpL(void)
00129 {
00130 ChangeViewL(EImagesexampleBitmap);
00131
00132
00133 delete iMySplashContainer;
00134 iMySplashContainer = NULL;
00135 }
00136
00137
00138
00139 void CGraphicsMainView::ChangeViewL(TInt aView )
00140 {
00141 TRect clientR(CEikonEnv::Static()->EikAppUi()->ClientRect());
00142
00143 CCoeControl* newContainer(NULL);
00144 TInt err(KErrNone);
00145
00146
00147
00148
00149 switch ( aView )
00150 {
00151 case EImagesexampleImage:
00152 {
00153 TFindFile imageFile(CCoeEnv::Static()->FsSession());
00154 if(KErrNone == imageFile.FindByDir(KTxImage1, KNullDesC))
00155 {
00156
00157 newContainer = CImageContainer::NewL(clientR,imageFile.File());
00158 }
00159 }
00160 break;
00161 case EImagesexampleAnimation:
00162 {
00163 TFindFile aniFile(CCoeEnv::Static()->FsSession());
00164 if(KErrNone == aniFile.FindByDir(KTxAnimation1, KNullDesC))
00165 {
00166
00167 newContainer = CAnimationContainer::NewL(clientR,aniFile.File());
00168 }
00169 }
00170 break;
00171 case EImagesexampleControls:
00172 newContainer = CControlsContainer::NewL(clientR);
00173 break;
00174 case EImagesexampleBitmap:
00175 newContainer = CBitmapContainer::NewL(clientR);
00176 break;
00177 case EImagesexampleAbout:
00178 newContainer = CAboutContainer::NewL(clientR);
00179 break;
00180 }
00181
00182
00183 if(err != KErrNone)
00184 {
00185 delete newContainer;
00186 newContainer = NULL;
00187 }
00188
00189 if(newContainer)
00190 {
00191
00192 delete iAppContainer;
00193 iAppContainer = newContainer;
00194 }
00195
00196 DrawNow();
00197 }
00198
00199
00200
00201
00202
00203
00204
00205 void CGraphicsMainView::Draw( const TRect& ) const
00206 {
00207 CWindowGc& gc = SystemGc();
00208 gc.Clear();
00209 }
00210
00211
00212
00213
00214
00215
00216
00217
00218 TKeyResponse CGraphicsMainView::OfferKeyEventL(const TKeyEvent &aKeyEvent, TEventCode aType)
00219 {
00220 TKeyResponse myRet = EKeyWasNotConsumed;
00221
00222 if(iAppContainer)
00223 {
00224 iAppContainer->OfferKeyEventL(aKeyEvent,aType);
00225 }
00226
00227 return myRet;
00228 }
00229
00230
00231
00232
00233
00234 TInt CGraphicsMainView::CountComponentControls() const
00235 {
00236 if(iAppContainer)
00237 {
00238 return 1;
00239 }
00240 else
00241 {
00242 return 0;
00243 }
00244 }
00245
00246
00247
00248
00249
00250 CCoeControl* CGraphicsMainView::ComponentControl( TInt ) const
00251 {
00252 return iAppContainer;
00253 }
00254
00255