bluetoothengine/bthid/layouts/inc/danish.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 18 Jan 2010 20:28:57 +0200
changeset 0 f63038272f30
permissions -rw-r--r--
Revision: 201001 Kit: 201003

/*
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  This is the implementation of application class
*
*/


#ifndef DANISH_H
#define DANISH_H

// INCLUDES
#include <e32std.h>
#include <e32svr.h>
#include "layout.h"
#include "modifier.h"

// CLASS DECLARATION

class CDanishLayout : public CDeadKeyLayout
    {
    public:

        static CKeyboardLayout* NewL();

        // Layout has additional Caps Lock keys:
        virtual TBool ChangesWithCapsLock(TInt aHidKey,
                                          THidModifier aModifiers) const;

        // Report what layouts are supported:
        virtual TInt LayoutId() const;


    private:

        /* C++ constructor */
        CDanishLayout();

        // Standard look-up table:
        static const TInt KColumnMap[];
        static const TUint16 KKeyCodes[];

        // Special cases:
        static const TSpecialKey KSpecialCases[];

        // Dead key tables:
        static const TIndexPair KDeadKeyIndex[];
        static const TKeyPair KDeadKeyAcute[];
        static const TKeyPair KDeadKeyGrave[];
        static const TKeyPair KDeadKeyDiaeresis[];
        static const TKeyPair KDeadKeyCircumflex[];
        static const TKeyPair KDeadKeyTilde[];
    };

#endif  //DANISH_H

//End of file