Archived:Applying actions on list box items using Symbian C++
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot change of template (Template:KnowledgeBase) - now using Template:ArticleMetaData) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Update code block to use correct block markup) |
||
| Line 1: | Line 1: | ||
| + | [[Category:Technical Solution]][[Category:Symbian C++]][[Category:UI]][[Category:S60 1st Edition]][[Category:S60 2nd Edition]][[Category:S60 3rd Edition]][[Category:S60 3rd Edition, Feature Pack 1]] | ||
{{KBTS}} | {{KBTS}} | ||
__NOTOC__ | __NOTOC__ | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
| − | + | ||
{{ArticleMetaData | {{ArticleMetaData | ||
| Line 9: | Line 10: | ||
|platform=S60 1st Edition<br>S60 2nd Edition and FP1, FP2, FP3<br>S60 3rd Edition and FP1 | |platform=S60 1st Edition<br>S60 2nd Edition and FP1, FP2, FP3<br>S60 3rd Edition and FP1 | ||
|devices= | |devices= | ||
| − | + | |creationdate=20070510 | |
| − | + | ||
| − | |creationdate= | + | |
|keywords= | |keywords= | ||
| Line 30: | Line 29: | ||
== Solution == | == Solution == | ||
| − | + | <code cpp> | |
| + | TKeyResponse CMyExampleAppView::OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType) | ||
| + | { | ||
| + | if(aType != EEventKey) | ||
| + | { | ||
| + | return EKeyWasNotConsumed; | ||
| + | } | ||
| + | switch(aKeyEvent.iCode) | ||
| + | { | ||
| + | case EKeyUpArrow: | ||
| + | case EKeyDownArrow: | ||
| + | { | ||
| + | // Forward up and down key press events to the list box | ||
| + | return iListBox->OfferKeyEventL( aKeyEvent, aType ); | ||
| + | } | ||
| + | case EKeyOK: // display an information note when item is selected | ||
| + | { | ||
| + | _LIT(KFormatMessage, "Selected item: %d"); | ||
| + | TInt idx = iListBox->CurrentItemIndex(); | ||
| + | TBuf<32> message; | ||
| + | message.Format(KFormatMessage, idx); | ||
| + | CAknInformationNote* Note = new (ELeave) CAknInformationNote; | ||
| + | Note->ExecuteLD(message); | ||
| + | return EKeyWasConsumed; | ||
| + | } | ||
| + | default: | ||
| + | break; | ||
| + | } | ||
| + | return EKeyWasNotConsumed; | ||
| + | } | ||
| + | </code> | ||
| − | + | Also make sure to add this line | |
| + | <code cpp>AddToStackL( iAppView );</code> | ||
| + | in AppUi's {{Icode|ConstructL()}} to add the view/container to the control stack and receive {{Icode|OfferKeyEventL()}} calls. | ||
Revision as of 08:48, 21 December 2011
Article Metadata
Compatibility
Platform(s): S60 1st Edition
S60 2nd Edition and FP1, FP2, FP3
S60 3rd Edition and FP1
S60 2nd Edition and FP1, FP2, FP3
S60 3rd Edition and FP1
Article
Created: User:Technical writer 2
(10 May 2007)
Last edited: hamishwillee
(21 Dec 2011)
Overview
Applying actions on list box items
Description
Below is a code snippet demonstrating how to apply actions on a list box item selected by the user.
The code to create a simple list box can be obtained from the link below:
[[How to create a simple listbox
It]] is possible to apply any actions (e.g., displaying a popup or a dialog) by catching key events for a list box that currently has keyboard focus. This is done in the OfferKeyEventL() function of the container class that owns the list box.
Solution
TKeyResponse CMyExampleAppView::OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType)
{
if(aType != EEventKey)
{
return EKeyWasNotConsumed;
}
switch(aKeyEvent.iCode)
{
case EKeyUpArrow:
case EKeyDownArrow:
{
// Forward up and down key press events to the list box
return iListBox->OfferKeyEventL( aKeyEvent, aType );
}
case EKeyOK: // display an information note when item is selected
{
_LIT(KFormatMessage, "Selected item: %d");
TInt idx = iListBox->CurrentItemIndex();
TBuf<32> message;
message.Format(KFormatMessage, idx);
CAknInformationNote* Note = new (ELeave) CAknInformationNote;
Note->ExecuteLD(message);
return EKeyWasConsumed;
}
default:
break;
}
return EKeyWasNotConsumed;
}
Also make sure to add this line
AddToStackL( iAppView );
in AppUi's ConstructL() to add the view/container to the control stack and receive OfferKeyEventL() calls.

