|
1 /* |
|
2 * Copyright (c) 2002-2005 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: common layout config inline functions |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // ----------------------------------------------------------------------------- |
|
20 // CPeninputLayoutConfig::Language |
|
21 // (other items were commented in a header) |
|
22 // ----------------------------------------------------------------------------- |
|
23 // |
|
24 inline TInt CPeninputLayoutConfig::Language() |
|
25 { |
|
26 return iLanguage; |
|
27 } |
|
28 |
|
29 // ----------------------------------------------------------------------------- |
|
30 // CPeninputLayoutConfig::LanguageString |
|
31 // (other items were commented in a header) |
|
32 // ----------------------------------------------------------------------------- |
|
33 // |
|
34 inline HBufC* CPeninputLayoutConfig::LanguageString() |
|
35 { |
|
36 return iLanguageString; |
|
37 } |
|
38 |
|
39 // ----------------------------------------------------------------------------- |
|
40 // CPeninputLayoutConfig::CaseSensitive |
|
41 // (other items were commented in a header) |
|
42 // ----------------------------------------------------------------------------- |
|
43 // |
|
44 inline TBool CPeninputLayoutConfig::CaseSensitive() |
|
45 { |
|
46 return iCaseSensitive; |
|
47 } |
|
48 |
|
49 // ----------------------------------------------------------------------------- |
|
50 // CPeninputLayoutConfig::GuideLine |
|
51 // (other items were commented in a header) |
|
52 // ----------------------------------------------------------------------------- |
|
53 // |
|
54 inline TInt CPeninputLayoutConfig::GuideLine() |
|
55 { |
|
56 return iGuideLine; |
|
57 } |
|
58 |
|
59 // ----------------------------------------------------------------------------- |
|
60 // CPeninputLayoutConfig::PositionTopLine |
|
61 // (other items were commented in a header) |
|
62 // ----------------------------------------------------------------------------- |
|
63 // |
|
64 inline TInt CPeninputLayoutConfig::PositionTopLine() |
|
65 { |
|
66 return iPositionTopLine; |
|
67 } |
|
68 |
|
69 // ----------------------------------------------------------------------------- |
|
70 // CPeninputLayoutConfig::PositionBottomLine |
|
71 // (other items were commented in a header) |
|
72 // ----------------------------------------------------------------------------- |
|
73 // |
|
74 inline TInt CPeninputLayoutConfig::PositionBottomLine() |
|
75 { |
|
76 return iPositionBottomLine; |
|
77 } |
|
78 |
|
79 // ----------------------------------------------------------------------------- |
|
80 // CPeninputLayoutConfig::ClientLayoutInfoList |
|
81 // (other items were commented in a header) |
|
82 // ----------------------------------------------------------------------------- |
|
83 // |
|
84 inline RPointerArray<CPeninputClientLayoutInfo>& |
|
85 CPeninputLayoutConfig::ClientLayoutInfoList() |
|
86 { |
|
87 return iClientLayoutInfoList; |
|
88 } |
|
89 |
|
90 // ----------------------------------------------------------------------------- |
|
91 // CPeninputLayoutConfig::VkbLayoutInfoList |
|
92 // (other items were commented in a header) |
|
93 // ----------------------------------------------------------------------------- |
|
94 // |
|
95 inline RPointerArray<CPeninputVkbLayoutInfo>& |
|
96 CPeninputLayoutConfig::VkbLayoutInfoList() |
|
97 { |
|
98 return iVkbLayoutInfoList; |
|
99 } |
|
100 |
|
101 // ----------------------------------------------------------------------------- |
|
102 // CPeninputLayoutConfig::ShiftCapsInfoList |
|
103 // (other items were commented in a header) |
|
104 // ----------------------------------------------------------------------------- |
|
105 // |
|
106 inline RPointerArray<CPeninputShiftCapsInfo>& |
|
107 CPeninputLayoutConfig::ShiftCapsInfoList() |
|
108 { |
|
109 return iShiftCapsInfoList; |
|
110 } |
|
111 |
|
112 // ----------------------------------------------------------------------------- |
|
113 // CPeninputLayoutConfig::RangeBarInfo |
|
114 // (other items were commented in a header) |
|
115 // ----------------------------------------------------------------------------- |
|
116 // |
|
117 inline CPeninputRangeBarInfo* |
|
118 CPeninputLayoutConfig::RangeBarInfo() |
|
119 { |
|
120 return iRangeBarInfo; |
|
121 } |
|
122 |
|
123 inline TInt CPeninputLayoutConfig::RangebarResId() |
|
124 { |
|
125 return iRangeBarResId; |
|
126 } |
|
127 |