kshetrapal's blog

observing the flip open and flip close event in case of N93

Hi,

I wanted to observe the flip open and flip close event in case of N93.

I have tried with handling EEventCaseClosed, EEventCaseOpen events in HandleWsEventL().

Also i have tried by registering with EnableScreenChangeEvents().

iam handling flip evnets in Active object RunL().

if(iStatus == KErrNone)
{

TWsEvent e;

ws.GetEvent(e);

switch(e.Type())
{
case EEventCaseClosed:

case EEventCaseOpen:

}

and iam issueing the reqest like this.

ws.EventReady(&iStatus);
iMmcActive = observer;
SetActive();

My RunL() is getting called..

Syndicate content