1 wngmodel.inl |
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 CRichText* CWordModel::Text() |
|
17 /** Gets the engine's rich text object. |
|
18 |
|
19 @return Engine's rich text object */ |
|
20 {return iText;} |
|
21 |
|
22 CStyleList* CWordModel::StyleList() |
|
23 /** Gets the engine's style list object. |
|
24 |
|
25 @return Engine's style list object */ |
|
26 {return iStyleList;} |
|
27 |
|
28 CPrintSetup* CWordModel::PrintSetup() |
|
29 /** Gets the engine's print setup object. |
|
30 |
|
31 @return Engine's print setup object */ |
|
32 {return iPrintSetup;} |
|
33 |
|
34 CArrayFix<TInt>* CWordModel::PageTable() |
|
35 /** Gets the engine's page table array. |
|
36 |
|
37 A page table is an array of integers; each integer represents the number of |
|
38 characters on a page. It is required for pagination. |
|
39 |
|
40 @return Page table array */ |
|
41 {return iPageTable;} |
|
42 |
|
43 CStyleShortCutList* CWordModel::StyleShortCutList() |
|
44 /** Gets the engine's style short cuts array. |
|
45 |
|
46 This object stores a list of keyboard shortcuts to the styles (as returned |
|
47 by StyleList()). The array is in the same order as the style list array. |
|
48 |
|
49 @return Engine's style short cuts array */ |
|
50 {return iStyleShortCutList;} |
|
51 |
|
52 TChar& CWordModel::NormalStyleShortCut() |
|
53 /** Gets the keybord short cut for the normal style. |
|
54 |
|
55 @return Keybord short cut for the normal style */ |
|
56 {return iNormalStyleShortCut;} |