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 #include <avkon.hrh>
00031 #include <aknnotewrappers.h>
00032 #include "EComCalculatorAppUi.h"
00033 #include "EComCalculatorAppView.h"
00034 #include "EComCalculator.hrh"
00035 #include "EComInterfaceDefinition.h"
00036
00037
00038
00039
00040
00041
00042 _LIT8(KSumOperationName,"sum");
00043 _LIT8(KMultiplyOperationName,"multiply");
00044 _LIT(KImplNotFound,"Implementation not found: ");
00045 _LIT(KEComErr,"ECOM error: ");
00046 _LIT(KEComErrCont,". Is the Calculation plugin installed?");
00047
00048 const TInt KOpNameLength=32;
00049 const TInt KOpLength = 64;
00050 const TInt KErrMsgLength = 128;
00051
00052
00053
00054 void CEComCalculatorAppUi::ConstructL()
00055 {
00056 BaseConstructL(EAknEnableSkin);
00057
00058
00059
00060 iAppView = CEComCalculatorAppView::NewL(ClientRect());
00061
00062
00063
00064 AddToStackL(iAppView);
00065 }
00066
00067
00068 CEComCalculatorAppUi::CEComCalculatorAppUi()
00069 {
00070
00071 }
00072
00073
00074 CEComCalculatorAppUi::~CEComCalculatorAppUi()
00075 {
00076 if (iAppView)
00077 {
00078
00079 iEikonEnv->RemoveFromStack(iAppView);
00080 }
00081
00082 delete iAppView;
00083 iAppView = NULL;
00084 REComSession::FinalClose();
00085 }
00086
00087
00088 void CEComCalculatorAppUi::HandleCommandL(TInt aCommand)
00089 {
00090 switch(aCommand)
00091 {
00092 case ECalculateSumCmd:
00093 case ECalculateMultiplyCmd:
00094 CalculateL(aCommand);
00095 break;
00096
00097 case EAknSoftkeyExit:
00098 case EEikCmdExit:
00099 Exit();
00100 break;
00101
00102 default:
00103 break;
00104 }
00105 }
00106
00107
00108 void CEComCalculatorAppUi::CalculateL(TInt aCommand)
00109 {
00110 TBuf8<KOpNameLength> operationName;
00111
00112 TReal A, B, calcResult;
00113 _LIT(KFailedA,"Failed. A is not a valid number.");
00114 _LIT(KFailedB,"Failed. B is not a valid number.");
00115
00116
00117 if( iAppView->GetA(A) != KErrNone )
00118 {
00119 ShowNoteL(KFailedA);
00120 return;
00121 }
00122 if( iAppView->GetB(B) != KErrNone )
00123 {
00124 ShowNoteL(KFailedB);
00125 return;
00126 }
00127
00128 if(aCommand == ECalculateSumCmd)
00129 {
00130 operationName.Append(KSumOperationName);
00131 }
00132 else
00133 {
00134 operationName.Append(KMultiplyOperationName);
00135 }
00136
00137 if(DoEComCalculationL(operationName, A, B, calcResult) == KErrNone)
00138 iAppView->ShowResultL(operationName, calcResult);
00139 }
00140
00141
00142 TInt CEComCalculatorAppUi::DoEComCalculationL(const TDesC8& aOperationName,
00143 TReal aA, TReal aB, TReal& aResult)
00144 {
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170 CCalculationInterfaceDefinition* calculateInterface = NULL;
00171 TRAPD(error,
00172 calculateInterface =
00173 CCalculationInterfaceDefinition::NewL(aOperationName);
00174 )
00175 if( error )
00176 {
00177 HandleEComInitializationErrorL(error, aOperationName);
00178 return error;
00179 }
00180 CleanupStack::PushL(calculateInterface);
00181
00182
00183 aResult = calculateInterface->Calculate(aA, aB);
00184
00185 CleanupStack::PopAndDestroy(calculateInterface);
00186 return KErrNone;
00187 }
00188
00189
00190 void CEComCalculatorAppUi::HandleEComInitializationErrorL(TInt aError,
00191 const TDesC8& aOperationName) const
00192 {
00193
00194 TBuf<KOpLength> operationName16bit;
00195 TBuf<KErrMsgLength> errorMsg;
00196 operationName16bit.Copy(aOperationName);
00197
00198 if(aError == KErrNotFound)
00199 {
00200 errorMsg.Append(KImplNotFound);
00201 errorMsg.Append(operationName16bit);
00202 ShowNoteL(errorMsg);
00203 }
00204 else if(aError != KErrNone)
00205 {
00206 errorMsg.Append(KEComErr);
00207 errorMsg.AppendNum(aError);
00208 errorMsg.Append(KEComErrCont);
00209 ShowNoteL(errorMsg);
00210 }
00211 }
00212
00213
00214
00215 void CEComCalculatorAppUi::ShowNoteL(const TDesC& aMessage) const
00216 {
00217
00218 CAknInformationNote* note = new(ELeave)CAknInformationNote;
00219 note->ExecuteLD(aMessage);
00220 }
00221
00222 void CEComCalculatorAppUi::HandleResourceChangeL(TInt aType)
00223 {
00224 CAknAppUi::HandleResourceChangeL(aType);
00225
00226
00227
00228 if ( aType == KEikDynamicLayoutVariantSwitch )
00229 {
00230 iAppView->SetRect( ClientRect() );
00231 }
00232 }