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 #include <EIKENV.H>
00030 #include <EIKAPPUI.H>
00031 #include <e32std.h>
00032 #include <APGICNFL.H>
00033 #include <APGCLI.H>
00034
00035 #include "SplashContainer.h"
00036 #include <AknUtils.h>
00037
00038
00039
00040 const TInt KUpdateInterval = 100000;
00041
00042 const TInt KUpdateMaxCount = 20;
00043
00044 _LIT(KTxTitle ,"Images Example");
00045 _LIT(KTxLine1 ,"version 1.00");
00046
00047
00048
00049
00050
00051
00052
00053 CMySplashContainer* CMySplashContainer::NewL(MSplachScreenCallBack& aCallBack)
00054 {
00055 CMySplashContainer* self = new(ELeave)CMySplashContainer(aCallBack);
00056 CleanupStack::PushL(self);
00057 self->ConstructL();
00058 CleanupStack::Pop(self);
00059 return self;
00060 }
00061
00062
00063
00064
00065 CMySplashContainer::~CMySplashContainer()
00066 {
00067 if (iProgressTimer)
00068 {
00069 iProgressTimer->Cancel();
00070 }
00071
00072 delete iProgressTimer;
00073 delete iBgContext;
00074 }
00075
00076
00077
00078
00079
00080 CMySplashContainer::CMySplashContainer(MSplachScreenCallBack& aCallBack)
00081 :iCallBack(aCallBack)
00082 {
00083 }
00084
00085
00086
00087
00088
00089 void CMySplashContainer::ConstructL(void)
00090 {
00091 CreateWindowL();
00092
00093
00094
00095
00096
00097
00098
00099 iBgContext = CAknsBasicBackgroundControlContext::NewL(KAknsIIDQsnBgAreaMain,TRect(0,0,1,1), ETrue);
00100
00101
00102 SetRect(CEikonEnv::Static()->EikAppUi()->ClientRect());
00103
00104 ActivateL();
00105 DrawNow();
00106
00107
00108 iProgressCount = 0;
00109
00110 iProgressTimer = CPeriodic::NewL(CActive::EPriorityStandard);
00111 iProgressTimer->Start(KUpdateInterval, KUpdateInterval, TCallBack(DoProgressL, this));
00112 }
00113
00114
00115
00116
00117
00118
00119 void CMySplashContainer::SizeChanged()
00120 {
00121 if ( iBgContext )
00122 {
00123
00124 iBgContext->SetRect(Rect());
00125
00126 if ( &Window() )
00127 {
00128
00129 iBgContext->SetParentPos( PositionRelativeToScreen() );
00130 }
00131 }
00132
00133 }
00134
00135
00136
00137
00138
00139
00140
00141
00142 void CMySplashContainer::HandleResourceChange(TInt aType)
00143 {
00144 if ( aType==KEikDynamicLayoutVariantSwitch )
00145 {
00146
00147 TRect rect;
00148 AknLayoutUtils::LayoutMetricsRect(AknLayoutUtils::EMainPane, rect);
00149 SetRect(rect);
00150 }
00151
00152
00153 CCoeControl::HandleResourceChange(aType);
00154 }
00155
00156
00157
00158
00159
00160
00161 TTypeUid::Ptr CMySplashContainer::MopSupplyObject(TTypeUid aId)
00162 {
00163 if (iBgContext)
00164 {
00165 return MAknsControlContext::SupplyMopObject(aId, iBgContext );
00166 }
00167
00168 return CCoeControl::MopSupplyObject(aId);
00169 }
00170
00171
00172
00173
00174
00175
00176
00177
00178 TInt CMySplashContainer::DoProgressL(TAny* aPtr)
00179 {
00180 CMySplashContainer* self = static_cast<CMySplashContainer*>(aPtr);
00181
00182
00183 self->iProgressCount++;
00184 self->DrawNow();
00185
00186 if (self->iProgressCount > KUpdateMaxCount)
00187 {
00188 self->iCallBack.SplashTimeIsUpL();
00189 }
00190
00191 return KErrNone;
00192 }
00193
00194
00195
00196
00197
00198 void CMySplashContainer::Draw(const TRect& ) const
00199 {
00200 CWindowGc& gc = SystemGc();
00201
00202
00203
00204 MAknsSkinInstance* skin = AknsUtils::SkinInstance();
00205 AknsDrawUtils::Background( skin, iBgContext, this, gc, Rect() );
00206
00207
00208 TRect myRect(Rect());
00209
00210 TInt totalHNeed = (CEikonEnv::Static()->LegendFont()->HeightInPixels() + (CEikonEnv::Static()->TitleFont()->HeightInPixels() * 2));
00211
00212 TInt gapp = ((myRect.Height() - totalHNeed) / 7);
00213
00214
00215 TRect titleRect(myRect);
00216 TRect lineRect1(myRect);
00217
00218
00219 titleRect.iTl.iY = titleRect.iTl.iY + (2 * gapp);
00220 titleRect.iBr.iY = (titleRect.iTl.iY + CEikonEnv::Static()->TitleFont()->HeightInPixels());
00221
00222
00223 lineRect1.iTl.iY = titleRect.iBr.iY + (2 * gapp);
00224 lineRect1.iBr.iY = (lineRect1.iTl.iY + CEikonEnv::Static()->LegendFont()->HeightInPixels());
00225
00226
00227 gc.UseFont(CEikonEnv::Static()->TitleFont());
00228
00229 gc.DrawText(KTxTitle,titleRect,CEikonEnv::Static()->TitleFont()->AscentInPixels(), CGraphicsContext::ECenter, 0);
00230
00231
00232 gc.UseFont(CEikonEnv::Static()->LegendFont());
00233
00234 gc.DrawText(KTxLine1,lineRect1,CEikonEnv::Static()->LegendFont()->AscentInPixels(), CGraphicsContext::ECenter, 0);
00235
00236
00237 gc.DiscardFont();
00238
00239
00240 TInt wGap = (Rect().Width() / 5);
00241
00242 TRect progressRect((Rect().iTl.iX + wGap),0,(Rect().iBr.iX - wGap),0);
00243
00244 progressRect.iTl.iY = (lineRect1.iBr.iY + (2 * gapp));
00245 progressRect.iBr.iY = (progressRect.iTl.iY + CEikonEnv::Static()->TitleFont()->HeightInPixels());
00246
00247
00248 gc.SetPenColor(KRgbBlack);
00249
00250 gc.SetBrushStyle(CGraphicsContext::ENullBrush);
00251
00252 gc.DrawRect(progressRect);
00253
00254
00255 TInt progressSize = ((progressRect.Width() * iProgressCount) / KUpdateMaxCount);
00256 progressRect.iBr.iX = (progressRect.iTl.iX + progressSize);
00257
00258
00259 gc.SetBrushColor(KRgbGreen);
00260
00261 gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
00262 gc.DrawRect(progressRect);
00263
00264
00265 gc.SetBrushStyle(CGraphicsContext::ENullBrush);
00266 }
00267