os/graphics/graphicsdeviceinterface/directgdi/src/directgdiimagetarget.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 "directgdidriver.h"
sl@0
    17
#include <graphics/directgdiimagetarget.h>
sl@0
    18
#include "directgdipaniccodes.h"
sl@0
    19
sl@0
    20
/**
sl@0
    21
Default constructor. 
sl@0
    22
Only for embedding instances of RDirectGdiImageTarget into other classes as data members. 
sl@0
    23
Before a RDirectGdiImageTarget can be used the other constructor must be called. 
sl@0
    24
*/
sl@0
    25
EXPORT_C RDirectGdiImageTarget::RDirectGdiImageTarget()
sl@0
    26
	: iDriver(NULL), iHandle(KNullHandle)
sl@0
    27
	{
sl@0
    28
	}
sl@0
    29
sl@0
    30
/**
sl@0
    31
Constructor.
sl@0
    32
sl@0
    33
@param 	aDriver The CDirectGdiDriver for this thread.
sl@0
    34
sl@0
    35
@pre 	CDirectGdiDriver object has been initialised from the calling thread.
sl@0
    36
@post 	This handle class has a pointer to the CDirectGdiDriver object for this
sl@0
    37
		thread, and is not associated with any DirectGDI adaptation specific resource.
sl@0
    38
*/
sl@0
    39
EXPORT_C RDirectGdiImageTarget::RDirectGdiImageTarget(CDirectGdiDriver& aDriver)
sl@0
    40
	: iDriver(&aDriver), iHandle(KNullHandle)
sl@0
    41
	{
sl@0
    42
	}
sl@0
    43
sl@0
    44
/**
sl@0
    45
Creates a DirectGDI adaptation-specific resource from the given image resource
sl@0
    46
so it can be used as a target of DirectGDI rendering.
sl@0
    47
sl@0
    48
@param 	aImage The image resource.
sl@0
    49
sl@0
    50
@pre 	The CDirectGdiDriver object has been set. The image resource has been
sl@0
    51
		fully constructed and created with the correct usage that allows it to
sl@0
    52
		be used as a DirectGDI target.
sl@0
    53
@post 	The DirectGDI adaptation-specific resource that is bound to the given
sl@0
    54
		image resource is created and this handle is now associated with it.
sl@0
    55
		The reference counter on the image resource is incremented.
sl@0
    56
sl@0
    57
@return KErrNone if successful, KErrArgument if the image resource is not valid,
sl@0
    58
		KErrAlreadyExists if this handle is already associated with a DirectGDI
sl@0
    59
		specific resource,  KErrNotSupported if the image resource is not created
sl@0
    60
		with the correct usage, otherwise one of the system-wide error codes.
sl@0
    61
*/
sl@0
    62
EXPORT_C TInt RDirectGdiImageTarget::Create(const RSgImage& aImage)
sl@0
    63
	{
sl@0
    64
	GRAPHICS_ASSERT_ALWAYS(iDriver, EDirectGdiPanicImageTargetWithoutDriver);
sl@0
    65
	return iDriver->CreateImageTarget(*this, aImage);
sl@0
    66
	}
sl@0
    67
sl@0
    68
/**
sl@0
    69
Destroys the DirectGDI adaptation-specific resource associated with this handle. 
sl@0
    70
Calling this method on a handle that is not associated with any DirectGDI 
sl@0
    71
adaptation-specific resource will do nothing. Once Close() is called, this handle can be reused.
sl@0
    72
sl@0
    73
@pre	The CDirectGdiDriver object for this handle has been set.
sl@0
    74
@post	The DirectGDI specific resource associated with this handle will be destroyed
sl@0
    75
		(at any time preferred by the adaptation). This handle is no longer associated
sl@0
    76
		with a DirectGDI specific resource. The reference counter of the underlying
sl@0
    77
		image resource is decremented. 
sl@0
    78
*/
sl@0
    79
EXPORT_C void RDirectGdiImageTarget::Close()
sl@0
    80
	{
sl@0
    81
	if (iHandle != KNullHandle)
sl@0
    82
		{
sl@0
    83
		GRAPHICS_ASSERT_ALWAYS(iDriver, EDirectGdiPanicImageTargetWithoutDriver);
sl@0
    84
		iDriver->CloseImageTarget(*this);
sl@0
    85
		}
sl@0
    86
	}