diff -r 3320e4e6e8bb -r 558113899881 uifw/AvKon/tsrc/bc/bctestdom3.2/bctestdominputmethods/src/bctestdompeninputclient.cpp --- a/uifw/AvKon/tsrc/bc/bctestdom3.2/bctestdominputmethods/src/bctestdompeninputclient.cpp Fri Apr 16 15:13:44 2010 +0300 +++ b/uifw/AvKon/tsrc/bc/bctestdom3.2/bctestdominputmethods/src/bctestdompeninputclient.cpp Mon May 03 12:45:33 2010 +0300 @@ -17,11 +17,77 @@ // INCLUDE FILES -#include -#include +#include "peninputclient.h" #include "bctestdompeninputclient.h" +// --------------------------------------------------------------------------- +// CMPenUiA::CMPenUiA +// --------------------------------------------------------------------------- +// +CMPenUiA::CMPenUiA() + { + } + +// --------------------------------------------------------------------------- +// CMPenUiA::OnPeninputUiDeactivated +// --------------------------------------------------------------------------- +// +void CMPenUiA::OnPeninputUiDeactivated() + { + } + +// --------------------------------------------------------------------------- +// CMPenUiA::OnPeninputUiActivated +// --------------------------------------------------------------------------- +// +void CMPenUiA::OnPeninputUiActivated() + { + } + +// --------------------------------------------------------------------------- +// CPenUiNotificationHandler::NewL +// --------------------------------------------------------------------------- +// +CPenUiNotificationHandler* CPenUiNotificationHandler::NewL( + MPenUiActivationHandler* aHandler, + RPeninputServer* aClient ) + { + CPenUiNotificationHandler* self = new ( ELeave ) + CPenUiNotificationHandler( aHandler, aClient ); + CleanupStack::PushL( self ); + self->ConstructL(); + CleanupStack::Pop( self ); + return self; + } + +// --------------------------------------------------------------------------- +// CPenUiNotificationHandler::CPenUiNotificationHandler +// --------------------------------------------------------------------------- +// +CPenUiNotificationHandler::CPenUiNotificationHandler( + MPenUiActivationHandler* aHandler,RPeninputServer* aClient) + : iHandler( aHandler ), iClient( aClient ) + { + } + +// --------------------------------------------------------------------------- +// CPenUiNotificationHandler::ConstructL +// --------------------------------------------------------------------------- +// +void CPenUiNotificationHandler::ConstructL() + { + } + + +// --------------------------------------------------------------------------- +// CPenUiNotificationHandler::HandleServerEventL +// --------------------------------------------------------------------------- +// +TBool CPenUiNotificationHandler::HandleServerEventL( TInt /*aEventId*/ ) + { + return ETrue; + } // --------------------------------------------------------------------------- // CBCTestHwrRecognizer::NewL @@ -89,15 +155,4 @@ aHelpLine, aBaseLine ); } - -// --------------------------------------------------------------------------- -// From class CPtiCore. -// Bceause the api is not IMPORT_C, implemented for get iDtorKeyId. -// --------------------------------------------------------------------------- -// -TInt CPtiCore::DestructorKeyId() const - { - return iDtorKeyId; - } - // End of File