Month: April 2007

  • Simulare eventi dell’interfaccia

    void CMyAppView::SignalImageStored() { TKeyEvent aKeyEvent; TEventCode aType; aKeyEvent.iCode = EKeyMenu; aKeyEvent.iScanCode = EStdKeyMenu; aType = EEventKey; iCoeEnv->SimulateKeyEventL(aKeyEvent, aType); } iCoeEnv is a member of CAknView class, this is useful to open menu automatically, maybe after a laps of time. … and this cause only menu event, not the corresponding key be pressed when menu is…