meetingrequest/mrcommon/inc/nmrglobalfeaturesettings.h
branchRCL_3
changeset 12 4ce476e64c59
equal deleted inserted replaced
11:0396474f30f5 12:4ce476e64c59
       
     1 /*
       
     2 * Copyright (c) 2007-2009 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: Color manager for MRGUI usage.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef NMRGLOBALFEATURESETTINGS_H
       
    19 #define NMRGLOBALFEATURESETTINGS_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <e32base.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 
       
    26 // CLASS DECLARATIONS
       
    27 
       
    28 // NAMESPACE DECLARATIONS
       
    29 namespace NMRGlobalFeatureSettings
       
    30     {
       
    31     enum TKeyboardLayout
       
    32         {
       
    33         // Values taken from
       
    34         // http://developer.symbian.org/main/documentation/reference/s%5E2/
       
    35         //  doc_source/reference/9.4-PP/AVKON_Settings_API/
       
    36         //  AvkonInternalCRKeys.hGlobals.html
       
    37         EUninitialized = -1,
       
    38         ENoKeyboard = 0,
       
    39         EKeyboardW12Keys = 1,
       
    40         EQwerty4x12 = 2,
       
    41         EQwerty4x10 = 3,
       
    42         EQwerty3x11 = 4,
       
    43         EHalfQwerty = 5,
       
    44         ECustomQwerty = 6
       
    45         };
       
    46 
       
    47     /**
       
    48      * Checks the device's keyboard layout
       
    49      *
       
    50      * @return The keyboard layout, ENoKeyboard returned from the touch
       
    51      *          only devices.
       
    52      */
       
    53     IMPORT_C TKeyboardLayout KeyboardType();
       
    54     }
       
    55 
       
    56 #endif // NMRGLOBALFEATURESETTINGS_H
       
    57 // End of file