sl@0
|
1 |
Contents
|
sl@0
|
2 |
--------
|
sl@0
|
3 |
|
sl@0
|
4 |
1. How do I internationalize a Word template?
|
sl@0
|
5 |
1.1 For Word with a single "normal" template?
|
sl@0
|
6 |
1.2 For Word with multiple templates?
|
sl@0
|
7 |
|
sl@0
|
8 |
------------------------------------------------------------------------
|
sl@0
|
9 |
|
sl@0
|
10 |
1. How do I internationalize a Word template?
|
sl@0
|
11 |
1.1 For Word with a single "normal" template?
|
sl@0
|
12 |
|
sl@0
|
13 |
It depends on the version of Word, if it's word with templates
|
sl@0
|
14 |
|
sl@0
|
15 |
You write a tool to do this (please!):
|
sl@0
|
16 |
|
sl@0
|
17 |
Get WORD and WPENG, and associated components.
|
sl@0
|
18 |
|
sl@0
|
19 |
WPENG:
|
sl@0
|
20 |
|
sl@0
|
21 |
Remove the comments from CWordModel::ConstructL() around this code:
|
sl@0
|
22 |
iStyleList=NULL;
|
sl@0
|
23 |
iStyleShortCutList=NULL;
|
sl@0
|
24 |
iStyleList=CStyleList::NewL();
|
sl@0
|
25 |
iStyleShortCutList=new(ELeave) CStyleShortCutList(3);
|
sl@0
|
26 |
for (TInt ii=0;ii<3;ii++)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
CParagraphStyle* style=CParagraphStyle::NewL(*iParaFormatLayer,*iCharFormatLayer);
|
sl@0
|
29 |
RParagraphStyleInfo info(style);
|
sl@0
|
30 |
iStyleList->AppendL(&info);
|
sl@0
|
31 |
}
|
sl@0
|
32 |
iStyleList->At(0).iStyle->SetType(KSystemParagraphStyleUid);
|
sl@0
|
33 |
iStyleList->At(0).iStyle->iName=_L("Heading 1");
|
sl@0
|
34 |
iStyleList->At(1).iStyle->SetType(KSystemParagraphStyleUid);
|
sl@0
|
35 |
iStyleList->At(1).iStyle->iName=_L("Heading 2");
|
sl@0
|
36 |
iStyleList->At(2).iStyle->SetType(KSystemParagraphStyleUid);
|
sl@0
|
37 |
iStyleList->At(2).iStyle->iName=_L("Heading 3");
|
sl@0
|
38 |
iStyleShortCutList->AppendL('1');
|
sl@0
|
39 |
iStyleShortCutList->AppendL('2');
|
sl@0
|
40 |
iStyleShortCutList->AppendL('3');
|
sl@0
|
41 |
iNormalStyleShortCut='N';
|
sl@0
|
42 |
|
sl@0
|
43 |
Rename "Heading" and shortcuts above to your desired heading and
|
sl@0
|
44 |
shortcut text.
|
sl@0
|
45 |
|
sl@0
|
46 |
WORD:
|
sl@0
|
47 |
|
sl@0
|
48 |
In CWordDocument::NewDocumentL()
|
sl@0
|
49 |
|
sl@0
|
50 |
comment out these two lines:
|
sl@0
|
51 |
|
sl@0
|
52 |
LocateTemplateL(templateFileName);
|
sl@0
|
53 |
//
|
sl@0
|
54 |
DoNewDocumentL(templateFileName);
|
sl@0
|
55 |
|
sl@0
|
56 |
Start Word in the emulator. When Word has opened, close it straight
|
sl@0
|
57 |
away. Open the document created (probably C:\Documents\Word) in word.
|
sl@0
|
58 |
You are now fine to edit the style information, the text should be
|
sl@0
|
59 |
OK.
|
sl@0
|
60 |
|
sl@0
|
61 |
Don't forget all the other Word settings, such as Object view (set to
|
sl@0
|
62 |
ICONIC by default - should be glass door) and printer settings (set to
|
sl@0
|
63 |
Printer via PC for normal font information)
|
sl@0
|
64 |
|
sl@0
|
65 |
------------------------------------------------------------------------
|
sl@0
|
66 |
|
sl@0
|
67 |
1.2 For Word with a single "normal" template?
|
sl@0
|
68 |
|
sl@0
|
69 |
This hasn't been documented yet, though it shouldn't be radically
|
sl@0
|
70 |
different from the above. Use your initiative.
|
sl@0
|
71 |
|