equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: This is the implementation of application class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef DUTCH_H |
|
20 #define DUTCH_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32std.h> |
|
24 #include <e32svr.h> |
|
25 #include "layout.h" |
|
26 #include "modifier.h" |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 class CDutchLayout : public CDeadKeyLayout |
|
31 { |
|
32 public: |
|
33 |
|
34 static CKeyboardLayout* NewL(); |
|
35 |
|
36 // Report what layouts are supported: |
|
37 virtual TInt LayoutId() const; |
|
38 |
|
39 private: |
|
40 |
|
41 /* C++ constructor */ |
|
42 CDutchLayout(); |
|
43 |
|
44 // Standard look-up table: |
|
45 static const TInt KColumnMap[]; |
|
46 static const TUint16 KKeyCodes[]; |
|
47 |
|
48 // Special cases: |
|
49 static const TSpecialKey KSpecialCases[]; |
|
50 |
|
51 // Dead key tables: |
|
52 static const TIndexPair KDeadKeyIndex[]; |
|
53 static const TKeyPair KDeadKeyTilde[]; |
|
54 static const TKeyPair KDeadKeyCedilla[]; |
|
55 static const TKeyPair KDeadKeyDiaeresis[]; |
|
56 static const TKeyPair KDeadKeyCircumflex[]; |
|
57 static const TKeyPair KDeadKeyAcute[]; |
|
58 static const TKeyPair KDeadKeyGrave[]; |
|
59 }; |
|
60 |
|
61 #endif //DUTCH_H |
|
62 |
|
63 //End of file |