camerauis/activepalette/Src/ActivePalette2NavigationKeys.cpp
branchRCL_3
changeset 24 bac7acad7cb3
parent 0 1ddebce53859
equal deleted inserted replaced
23:61bc0f252b2b 24:bac7acad7cb3
       
     1 /*
       
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Contains the key definitions used for navigation in AP*
       
    15 */
       
    16 
       
    17 
       
    18 /**
       
    19  * @file ActivePalette2NavigationKeys.cpp
       
    20  * Contains the key definitions used for navigation in AP
       
    21  */
       
    22 
       
    23 
       
    24 #include <e32keys.h>
       
    25 #include <activepalette2navigationkeys.h>
       
    26 
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 // CActivePaletteUI::TNavigationKeys::TNavigationKeys()
       
    30 // -----------------------------------------------------------------------------
       
    31 //
       
    32 EXPORT_C TActivePalette2NavigationKeys::TActivePalette2NavigationKeys(void)
       
    33 :	iNaviPrev(EStdKeyUpArrow),
       
    34 	iNaviNext(EStdKeyDownArrow),
       
    35 	iNaviSelect(EStdKeyDevice3)
       
    36     {
       
    37     // No implementation required
       
    38     }
       
    39 
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // CActivePaletteUI::TNavigationKeys::TNavigationKeys()
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 EXPORT_C TActivePalette2NavigationKeys::TActivePalette2NavigationKeys(
       
    46     TInt aNaviPrev,
       
    47     TInt aNaviNext,
       
    48     TInt aNaviSelect )
       
    49 :	iNaviPrev( aNaviPrev ),
       
    50 	iNaviNext( aNaviNext ),
       
    51 	iNaviSelect( aNaviSelect )
       
    52     {
       
    53     // No implementation required
       
    54     }
       
    55 
       
    56