sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "graphicscontextstate.h"
|
sl@0
|
17 |
#include "cliwin.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
/*------------------------------------------------------------------------------
|
sl@0
|
20 |
Description: Resets internal status of the graphics context to pre-defined values.
|
sl@0
|
21 |
-----------------------------------------------------------------------------*/
|
sl@0
|
22 |
void TInternalGcStatus::ResetInternalStatus(CWsClientWindow* aWin)
|
sl@0
|
23 |
{
|
sl@0
|
24 |
iDrawMode = CGraphicsContext::EDrawModePEN;
|
sl@0
|
25 |
iPenColor = KRgbBlack;
|
sl@0
|
26 |
iBrushColor = aWin ? aWin->BackColor() : KRgbWhite;
|
sl@0
|
27 |
iPenStyle = CGraphicsContext::ESolidPen;
|
sl@0
|
28 |
iBrushStyle = CGraphicsContext::ENullBrush;
|
sl@0
|
29 |
iPenSize = TSize(1,1);
|
sl@0
|
30 |
iFontHandle = NULL;
|
sl@0
|
31 |
iUnderline = EUnderlineOff;
|
sl@0
|
32 |
iStrikethrough = EStrikethroughOff;
|
sl@0
|
33 |
iBrushPatternHandle = NULL;
|
sl@0
|
34 |
iBrushOrigin = TPoint(0,0);
|
sl@0
|
35 |
iCharExcessWidth = 0;
|
sl@0
|
36 |
iCharNumChars = 0;
|
sl@0
|
37 |
iWordExcessWidth = 0;
|
sl@0
|
38 |
iWordNumChars = 0;
|
sl@0
|
39 |
iOrigin = TPoint(0,0);
|
sl@0
|
40 |
iShadowColor = KRgbGray;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
/*------------------------------------------------------------------------------
|
sl@0
|
44 |
Description: Helper function to retrieve current data from the given buffer and
|
sl@0
|
45 |
set graphics context.
|
sl@0
|
46 |
-----------------------------------------------------------------------------*/
|
sl@0
|
47 |
void TInternalGcStatus::InternalizeGcAttributesL(MWsGraphicsContext* aGc, RReadStream& aReadStream)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
aGc->SetDrawMode((MWsGraphicsContext::TDrawMode)(aReadStream.ReadUint8L()));
|
sl@0
|
50 |
|
sl@0
|
51 |
MWsGraphicsContext::TBrushStyle brushStyle = (MWsGraphicsContext::TBrushStyle) (aReadStream.ReadUint8L());
|
sl@0
|
52 |
aGc->SetPenStyle((MWsGraphicsContext::TPenStyle) (aReadStream.ReadUint8L()));
|
sl@0
|
53 |
|
sl@0
|
54 |
TRgb penColor;
|
sl@0
|
55 |
penColor.InternalizeL(aReadStream);
|
sl@0
|
56 |
aGc->SetPenColor(penColor);
|
sl@0
|
57 |
|
sl@0
|
58 |
TRgb brushColor;
|
sl@0
|
59 |
brushColor.InternalizeL(aReadStream);
|
sl@0
|
60 |
aGc->SetBrushColor(brushColor);
|
sl@0
|
61 |
|
sl@0
|
62 |
TSize size;
|
sl@0
|
63 |
aReadStream >> size;
|
sl@0
|
64 |
aGc->SetPenSize(size);
|
sl@0
|
65 |
|
sl@0
|
66 |
aGc->ResetBrushPattern();
|
sl@0
|
67 |
TInt brushHandle = aReadStream.ReadInt32L();
|
sl@0
|
68 |
if(brushHandle)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
aGc->SetBrushPattern(brushHandle);
|
sl@0
|
71 |
if (!aGc->HasBrushPattern() && brushStyle == MWsGraphicsContext::EPatternedBrush)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
// Panic may occur if trying to set EPatternedBrush when a bitmap has not been
|
sl@0
|
74 |
// successfully set, so revert to null brush.
|
sl@0
|
75 |
brushStyle = MWsGraphicsContext::ENullBrush;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
}
|
sl@0
|
78 |
// Wait until any brush pattern has been set before setting the brush style.
|
sl@0
|
79 |
aGc->SetBrushStyle(brushStyle);
|
sl@0
|
80 |
|
sl@0
|
81 |
TInt wordExcessWidth = aReadStream.ReadUint32L();
|
sl@0
|
82 |
TInt wordNumChars = aReadStream.ReadUint32L();
|
sl@0
|
83 |
aGc->SetWordJustification(wordExcessWidth, wordNumChars);
|
sl@0
|
84 |
|
sl@0
|
85 |
TInt charExcessWidth = aReadStream.ReadUint32L();
|
sl@0
|
86 |
TInt charNumChars = aReadStream.ReadUint32L();
|
sl@0
|
87 |
aGc->SetCharJustification(charExcessWidth, charNumChars);
|
sl@0
|
88 |
|
sl@0
|
89 |
TRgb shadowColor;
|
sl@0
|
90 |
shadowColor.InternalizeL(aReadStream);
|
sl@0
|
91 |
aGc->SetTextShadowColor(shadowColor);
|
sl@0
|
92 |
|
sl@0
|
93 |
TPoint origin;
|
sl@0
|
94 |
aReadStream >> origin;
|
sl@0
|
95 |
aGc->SetOrigin(origin);
|
sl@0
|
96 |
|
sl@0
|
97 |
TPoint brushOrigin;
|
sl@0
|
98 |
aReadStream >> brushOrigin;
|
sl@0
|
99 |
aGc->SetBrushOrigin(brushOrigin);
|
sl@0
|
100 |
|
sl@0
|
101 |
aGc->SetUnderlineStyle((MWsGraphicsContext::TFontUnderline) (aReadStream.ReadUint8L()));
|
sl@0
|
102 |
aGc->SetStrikethroughStyle((MWsGraphicsContext::TFontStrikethrough) (aReadStream.ReadUint8L()));
|
sl@0
|
103 |
|
sl@0
|
104 |
aGc->ResetFont();
|
sl@0
|
105 |
TInt fontHandle = aReadStream.ReadInt32L();
|
sl@0
|
106 |
if(fontHandle)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
CFbsBitGcFont font;
|
sl@0
|
109 |
TInt res = font.Duplicate(fontHandle);
|
sl@0
|
110 |
if(res == KErrNone)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
aGc->SetFont(&font);
|
sl@0
|
113 |
font.Reset();
|
sl@0
|
114 |
}
|
sl@0
|
115 |
}
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
/*------------------------------------------------------------------------------
|
sl@0
|
119 |
Description: Helper function to save graphics context information into a given buffer.
|
sl@0
|
120 |
-----------------------------------------------------------------------------*/
|
sl@0
|
121 |
void TInternalGcStatus::ExternalizeGcAttributesL(RWriteStream& aWriteStream)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
aWriteStream.WriteUint8L(iDrawMode);
|
sl@0
|
124 |
aWriteStream.WriteUint8L(iBrushStyle);
|
sl@0
|
125 |
aWriteStream.WriteUint8L(iPenStyle);
|
sl@0
|
126 |
iPenColor.ExternalizeL(aWriteStream);
|
sl@0
|
127 |
iBrushColor.ExternalizeL(aWriteStream);
|
sl@0
|
128 |
aWriteStream << iPenSize;
|
sl@0
|
129 |
aWriteStream.WriteInt32L(iBrushPatternHandle);
|
sl@0
|
130 |
aWriteStream.WriteUint32L(iWordExcessWidth);
|
sl@0
|
131 |
aWriteStream.WriteUint32L(iWordNumChars);
|
sl@0
|
132 |
aWriteStream.WriteUint32L(iCharExcessWidth);
|
sl@0
|
133 |
aWriteStream.WriteUint32L(iCharNumChars);
|
sl@0
|
134 |
iShadowColor.ExternalizeL(aWriteStream);
|
sl@0
|
135 |
aWriteStream << iOrigin;
|
sl@0
|
136 |
aWriteStream << iBrushOrigin;
|
sl@0
|
137 |
aWriteStream.WriteUint8L(iUnderline);
|
sl@0
|
138 |
aWriteStream.WriteUint8L(iStrikethrough);
|
sl@0
|
139 |
aWriteStream.WriteInt32L(iFontHandle);
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|