equal
deleted
inserted
replaced
|
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: image layout inline function |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 inline const TInt CAknFepControlInfo::ControlID() const |
|
20 { |
|
21 return iControlID; |
|
22 } |
|
23 |
|
24 inline const TInt CAknFepControlInfo::BeginRow() const |
|
25 { |
|
26 return iBeginRow; |
|
27 } |
|
28 |
|
29 inline const TInt CAknFepControlInfo::EndRow() const |
|
30 { |
|
31 return iEndRow; |
|
32 } |
|
33 |
|
34 inline const TInt CAknFepControlInfo::BeginColumn() const |
|
35 { |
|
36 return iBeginColumn; |
|
37 } |
|
38 |
|
39 inline const TInt CAknFepControlInfo::EndColumn() const |
|
40 { |
|
41 return iEndColumn; |
|
42 } |
|
43 |
|
44 inline TInt CAknFepVkbImLayout::LayoutID() const |
|
45 { |
|
46 return iLayoutID; |
|
47 } |
|
48 |
|
49 inline TInt CAknFepVkbImLayout::Columns() const |
|
50 { |
|
51 return iColumns; |
|
52 } |
|
53 |
|
54 inline TInt CAknFepVkbImLayout::Rows() const |
|
55 { |
|
56 return iRows; |
|
57 } |
|
58 |
|
59 inline RPointerArray<CAknFepControlInfo>& CAknFepVkbImLayout::ControlInfoList() |
|
60 { |
|
61 return iControlInfoList; |
|
62 } |
|
63 |
|
64 // End Of File |