os/graphics/graphicsdeviceinterface/directgdi/src/directgdifont.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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 "directgdifont.h"
sl@0
    17
sl@0
    18
/**
sl@0
    19
Construct calls the constructor for the base class CFbsFont and sets default
sl@0
    20
value of iCopy as EFalse.
sl@0
    21
*/
sl@0
    22
EXPORT_C CDirectGdiFont::CDirectGdiFont():
sl@0
    23
	CFbsFont(),
sl@0
    24
	iCopy(EFalse)
sl@0
    25
	{}
sl@0
    26
sl@0
    27
/**
sl@0
    28
Default destructor. 
sl@0
    29
*/
sl@0
    30
EXPORT_C CDirectGdiFont::~CDirectGdiFont()
sl@0
    31
	{}
sl@0
    32
sl@0
    33
/**
sl@0
    34
On return contains iAddress pointer for the CBitmapFont.
sl@0
    35
@return	A pointer to the font.
sl@0
    36
@see	CFbsFont::Address();
sl@0
    37
*/
sl@0
    38
EXPORT_C CBitmapFont* CDirectGdiFont::Address() const
sl@0
    39
	{
sl@0
    40
	return CFbsFont::Address();
sl@0
    41
	}
sl@0
    42
sl@0
    43
/**
sl@0
    44
Calls reset on the object (sets iHandle to zero) and carries out related 
sl@0
    45
messenger housekeeping and then duplicates it using the base class method.
sl@0
    46
@param	aHandle The integer handler for the font.
sl@0
    47
@return	KErrNone if successful, otherwise a system-wide error code.
sl@0
    48
@see	CFbsFont::Duplicate(TInt)
sl@0
    49
*/
sl@0
    50
EXPORT_C TInt CDirectGdiFont::Duplicate(TInt aHandle)
sl@0
    51
	{
sl@0
    52
	Reset();
sl@0
    53
sl@0
    54
	return CFbsFont::Duplicate(aHandle);
sl@0
    55
	}
sl@0
    56
sl@0
    57
/**
sl@0
    58
Resets the font to its default settings.
sl@0
    59
*/
sl@0
    60
EXPORT_C void CDirectGdiFont::Reset()
sl@0
    61
	{
sl@0
    62
	if (!iCopy)
sl@0
    63
		{
sl@0
    64
		CFbsFont::Reset();
sl@0
    65
		}
sl@0
    66
	else
sl@0
    67
		{
sl@0
    68
		iAddressPointer = NULL;
sl@0
    69
		iHandle = 0;
sl@0
    70
		iServerHandle = 0;
sl@0
    71
		iCopy = EFalse;
sl@0
    72
		}
sl@0
    73
	}
sl@0
    74
sl@0
    75
/**
sl@0
    76
Defines the meaning of the equals operator when acting on a CDirectGdiFont
sl@0
    77
object. It allows these objects to be set as being equal to one another.
sl@0
    78
@param	aFont The font to be copied.
sl@0
    79
*/
sl@0
    80
EXPORT_C void CDirectGdiFont::operator=(const CDirectGdiFont& aFont)
sl@0
    81
	{
sl@0
    82
	if (this != &aFont)
sl@0
    83
		{
sl@0
    84
		Reset();
sl@0
    85
		iAddressPointer = aFont.iAddressPointer;
sl@0
    86
		iHandle = aFont.iHandle;
sl@0
    87
		iServerHandle = aFont.iServerHandle;
sl@0
    88
		iCopy = ETrue;
sl@0
    89
		}
sl@0
    90
	}
sl@0
    91