First public contribution.
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 "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef BITGCEXTRADATA_H
17 #define BITGCEXTRADATA_H
20 Class used to extend the CFbsBitGc class to avoid BC break. Any data member which needs
21 to be added in CFbsBitGc should be added to this class.
25 class CFbsBitGcExtraData:public CBase
29 ~CFbsBitGcExtraData();
31 inline TInt* PenArray(){return iPenArray;};
32 inline TRgb ShadowColor(){return iShadowColor;}
33 inline void SetPenArray(TInt* aPenArray);
34 inline void SetShadowColor(const TRgb& aShadowColor);
35 inline void ResetPenArray();
41 inline void CFbsBitGcExtraData::SetPenArray(TInt* aPenArray)
44 iPenArray = aPenArray;
47 inline void CFbsBitGcExtraData::SetShadowColor(const TRgb& aShadowColor)
49 iShadowColor = aShadowColor;
52 inline void CFbsBitGcExtraData::ResetPenArray()
58 #endif // BITGCEXTRADATA_H