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 <eiklabel.h>
00030 #include <eikenv.h>
00031 #include <eikrted.h>
00032
00033 #include <aknutils.h>
00034
00035
00036 #include "AboutContainer.h"
00037
00038 #include "TextControl.h"
00039
00040
00041 _LIT(KTxLongText ,"This is could be very long text for copyright notices,it does not need to fit the screen since it is made scrolling with a timer.");
00042
00043 _LIT(KTxTitle ,"Images Example");
00044 _LIT(KTxLine1 ,"version 1.00");
00045 _LIT(KTxLine2 ,"Copyright 2007");
00046 _LIT(KTxLine3 ,"no rights reserved");
00047
00048
00049
00050
00051
00052 CAboutContainer* CAboutContainer::NewL( const TRect& aRect )
00053 {
00054 CAboutContainer* self = CAboutContainer::NewLC( aRect );
00055 CleanupStack::Pop( self );
00056 return self;
00057 }
00058
00059
00060
00061
00062 CAboutContainer* CAboutContainer::NewLC( const TRect& aRect )
00063 {
00064 CAboutContainer* self = new ( ELeave ) CAboutContainer;
00065 CleanupStack::PushL( self );
00066 self->ConstructL( aRect );
00067 return self;
00068 }
00069
00070
00071
00072
00073 CAboutContainer::~CAboutContainer()
00074 {
00075 delete iTextControl;
00076 }
00077
00078
00079
00080
00081 void CAboutContainer::ConstructL( const TRect& aRect )
00082 {
00083 CreateWindowL();
00084 SetRect( aRect );
00085
00086
00087 iTextControl = CTextControl::NewL(KTxLongText);
00088
00089
00090
00091 iTextControl->SetContainerWindowL(*this);
00092
00093 TRect smallerRect(iTextRect);
00094 smallerRect.Shrink(4,4);
00095
00096 iTextControl->SetRect(smallerRect);
00097
00098 ActivateL();
00099 }
00100
00101
00102
00103
00104
00105
00106
00107 TInt CAboutContainer::CountComponentControls() const
00108 {
00109 if(iTextControl)
00110 {
00111 return 1;
00112 }
00113 else
00114 {
00115 return 0;
00116 }
00117 }
00118
00119
00120
00121
00122
00123
00124
00125 CCoeControl* CAboutContainer::ComponentControl( TInt ) const
00126 {
00127 return iTextControl;
00128 }
00129
00130
00131
00132
00133
00134 void CAboutContainer::Draw( const TRect& ) const
00135 {
00136 CWindowGc& gc = SystemGc();
00137
00138 TRect myRect(Rect());
00139
00140
00141 gc.Clear(myRect);
00142
00143
00144 myRect.Shrink(2,2);
00145 gc.DrawRect(myRect);
00146
00147
00148 myRect.iBr.iY = iTextRect.iTl.iY;
00149
00150 TInt totalHNeed = (CEikonEnv::Static()->TitleFont()->HeightInPixels() + (CEikonEnv::Static()->LegendFont()->HeightInPixels() * 3));
00151
00152 TInt gapp = ((myRect.Height() - totalHNeed) / 7);
00153
00154
00155 TRect titleRect(myRect);
00156 TRect lineRect1(myRect);
00157 TRect lineRect2(myRect);
00158 TRect lineRect3(myRect);
00159
00160
00161 titleRect.iTl.iY = titleRect.iTl.iY + (2 * gapp);
00162 titleRect.iBr.iY = (titleRect.iTl.iY + CEikonEnv::Static()->TitleFont()->HeightInPixels());
00163
00164
00165 lineRect1.iTl.iY = titleRect.iBr.iY + (2 * gapp);
00166 lineRect1.iBr.iY = (lineRect1.iTl.iY + CEikonEnv::Static()->LegendFont()->HeightInPixels());
00167
00168
00169 lineRect2.iTl.iY = lineRect1.iBr.iY + gapp;
00170 lineRect2.iBr.iY = (lineRect2.iTl.iY + CEikonEnv::Static()->LegendFont()->HeightInPixels());
00171
00172 lineRect3.iTl.iY = lineRect2.iBr.iY + gapp;
00173 lineRect3.iBr.iY = (lineRect3.iTl.iY + CEikonEnv::Static()->LegendFont()->HeightInPixels());
00174
00175
00176 gc.UseFont(CEikonEnv::Static()->TitleFont());
00177
00178 gc.DrawText(KTxTitle,titleRect,CEikonEnv::Static()->TitleFont()->AscentInPixels(), CGraphicsContext::ECenter, 0);
00179
00180
00181 gc.UseFont(CEikonEnv::Static()->LegendFont());
00182
00183 gc.DrawText(KTxLine1,lineRect1,CEikonEnv::Static()->LegendFont()->AscentInPixels(), CGraphicsContext::ECenter, 0);
00184 gc.DrawText(KTxLine2,lineRect2,CEikonEnv::Static()->LegendFont()->AscentInPixels(), CGraphicsContext::ECenter, 0);
00185 gc.DrawText(KTxLine3,lineRect3,CEikonEnv::Static()->LegendFont()->AscentInPixels(), CGraphicsContext::ECenter, 0);
00186
00187
00188 gc.DiscardFont();
00189 }
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199 void CAboutContainer::HandleResourceChange(TInt aType)
00200 {
00201 TRect rect;
00202
00203 if ( aType==KEikDynamicLayoutVariantSwitch )
00204 {
00205 AknLayoutUtils::LayoutMetricsRect(AknLayoutUtils::EMainPane, rect);
00206 SetRect(rect);
00207 }
00208
00209
00210 CCoeControl::HandleResourceChange(aType);
00211 }
00212
00213
00214
00215
00216
00217
00218 void CAboutContainer::SizeChanged()
00219 {
00220
00221 TInt fHight = AknLayoutUtils::FontFromId(EAknLogicalFontSecondaryFont)->HeightInPixels();
00222
00223
00224
00225 TInt textHeight = (fHight * 2);
00226
00227
00228 iTextRect = Rect();
00229
00230
00231 iTextRect.iTl.iY = (iTextRect.iBr.iY - textHeight);
00232
00233 if(iTextControl)
00234 {
00235
00236 TRect smallerRect(iTextRect);
00237 smallerRect.Shrink(4,4);
00238 iTextControl->SetRect(smallerRect);
00239 }
00240 }
00241
00242
00243
00244