📄 brctlsampleappstatechangeobserver.cpp
字号:
/*
* ============================================================================
* Name : BrCtlSampleAppStateChangeObserver.cpp
* Part of : BrCtlSampleApp
* Interface :
* Description : Handle state changed events
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ============================================================================
*/
// INCLUDE FILES
#include "BrCtlSampleAppContainer.h"
#include "BrCtlSampleAppStateChangeObserver.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CBrCtlSampleAppStateChangeObserver::StateChanged
// ---------------------------------------------------------
//
void
CBrCtlSampleAppStateChangeObserver::StateChanged(TBrCtlDefs::TBrCtlState aState,
TInt aValue)
{
// Here we are creating a string to be displayed on the screen, but you would
// implement this method to have code that would be executed when the observer
// receives state changed events.
TBuf16<256> tgt;
TPoint point(0, 120);
_LIT(KHandleBrowserStateChange, "State Change event = %d, value = %d");
tgt.AppendFormat(KHandleBrowserStateChange, aState, aValue);
iContainer->SetPoint(point);
iContainer->SetText(tgt);
iContainer->DrawNow();
}
// ---------------------------------------------------------
// CBrCtlSampleAppStateChangeObserver::ConstructL
// ---------------------------------------------------------
//
void
CBrCtlSampleAppStateChangeObserver::ConstructL(CBrCtlSampleAppContainer* aContainer)
{
iContainer = aContainer;
}
// ---------------------------------------------------------
// CBrCtlSampleAppStateChangeObserver::~CBrCtlSampleAppStateChangeObserver
// ---------------------------------------------------------
//
CBrCtlSampleAppStateChangeObserver::~CBrCtlSampleAppStateChangeObserver()
{
}
// ---------------------------------------------------------
// CBrCtlSampleAppStateChangeObserver::NewL
// ---------------------------------------------------------
//
CBrCtlSampleAppStateChangeObserver*
CBrCtlSampleAppStateChangeObserver::NewL(CBrCtlSampleAppContainer* aContainer)
{
CBrCtlSampleAppStateChangeObserver* self = new(ELeave)CBrCtlSampleAppStateChangeObserver;
CleanupStack::PushL(self);
self->ConstructL(aContainer);
CleanupStack::Pop();
return self;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -