First public contribution.
1 // Copyright (c) 2007-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 #include "directgdifont.h"
19 Construct calls the constructor for the base class CFbsFont and sets default
20 value of iCopy as EFalse.
22 EXPORT_C CDirectGdiFont::CDirectGdiFont():
30 EXPORT_C CDirectGdiFont::~CDirectGdiFont()
34 On return contains iAddress pointer for the CBitmapFont.
35 @return A pointer to the font.
36 @see CFbsFont::Address();
38 EXPORT_C CBitmapFont* CDirectGdiFont::Address() const
40 return CFbsFont::Address();
44 Calls reset on the object (sets iHandle to zero) and carries out related
45 messenger housekeeping and then duplicates it using the base class method.
46 @param aHandle The integer handler for the font.
47 @return KErrNone if successful, otherwise a system-wide error code.
48 @see CFbsFont::Duplicate(TInt)
50 EXPORT_C TInt CDirectGdiFont::Duplicate(TInt aHandle)
54 return CFbsFont::Duplicate(aHandle);
58 Resets the font to its default settings.
60 EXPORT_C void CDirectGdiFont::Reset()
68 iAddressPointer = NULL;
76 Defines the meaning of the equals operator when acting on a CDirectGdiFont
77 object. It allows these objects to be set as being equal to one another.
78 @param aFont The font to be copied.
80 EXPORT_C void CDirectGdiFont::operator=(const CDirectGdiFont& aFont)
85 iAddressPointer = aFont.iAddressPointer;
86 iHandle = aFont.iHandle;
87 iServerHandle = aFont.iServerHandle;