how we can add custom buttons to global note
| Wed, 2008-05-07 07:28 | |
|
i created a custom softkey R_SOFTKEYS_OPTIONS_HI i tried this: but it's not working and how can i handle this events |
|
| Wed, 2008-05-07 07:28 | |
|
i created a custom softkey R_SOFTKEYS_OPTIONS_HI i tried this: but it's not working and how can i handle this events |
|
Forum posts: 15
Hi arumilli,
have a look here, what u want to achieve is explained here with sample code....
http://www.forum.nokia.com/document/Cpp_Developers_Library/GUID-96C272CA-2BED-4352-AE7C-E692B193EC06/html/Notes_API4.html#topic3.6
Br,
Pankaj
Pankaj Dubey
Forum posts: 24
how can i handle predefined softkey events
CAknGlobalNote* globalNote = CAknGlobalNote::NewLC();
globalNote->SetSoftkeys(R_AVKON_SOFTKEYS_CALL_CANCEL);
globalNote->ShowNoteL( EAknGlobalTextNote, _L("InitiaLizing") );
how can i handle call and cancel events
thank u