os/graphics/graphicsdeviceinterface/directgdi/src/directgdidrawablesource.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 "directgdipaniccodes.h"
sl@0
    18
#include <graphics/directgdidrawablesource.h>
sl@0
    19
#include <graphics/sgimage.h>
sl@0
    20
sl@0
    21
/**
sl@0
    22
Default constructor. 
sl@0
    23
Only for embedding instances of RDirectGdiDrawableSource into other classes as data members. 
sl@0
    24
Before a RDirectGdiDrawableSource can be used the other constructor must be called. 
sl@0
    25
*/
sl@0
    26
EXPORT_C RDirectGdiDrawableSource::RDirectGdiDrawableSource()
sl@0
    27
	: iDriver(NULL), iHandle(KNullHandle)
sl@0
    28
	{
sl@0
    29
	}
sl@0
    30
sl@0
    31
/**
sl@0
    32
Constructor.
sl@0
    33
sl@0
    34
@param 	aDriver The CDirectGdiDriver for this thread.
sl@0
    35
sl@0
    36
@pre 	The CDirectGdiDriver object has been initialised from the calling thread.
sl@0
    37
@post 	This handle has a pointer to the CDirectGdiDriver for this thread. 
sl@0
    38
		This handle is not associated with any DirectGDI adaptation-specific resource.
sl@0
    39
*/
sl@0
    40
EXPORT_C RDirectGdiDrawableSource::RDirectGdiDrawableSource(CDirectGdiDriver& aDriver)
sl@0
    41
	: iDriver(&aDriver), iHandle(KNullHandle)
sl@0
    42
	{
sl@0
    43
	}
sl@0
    44
sl@0
    45
/**
sl@0
    46
Creates a DirectGDI adaptation-specific resource that is bound to the specified
sl@0
    47
drawable resource so it can be drawn using the DirectGDI rendering API.
sl@0
    48
sl@0
    49
@param 	aDrawable The drawable resource.
sl@0
    50
sl@0
    51
@pre 	CDirectGdiDriver object for this handle has been set. The drawable
sl@0
    52
		resource has been fully constructed.
sl@0
    53
@post 	The DirectGDI adaptation-specific resource that is bound to the given
sl@0
    54
		non-pixel resource is created and this handle is now associated with it.
sl@0
    55
		The reference counter on the drawable resource is incremented.
sl@0
    56
sl@0
    57
@return KErrNone if successful, KErrArgument if the drawable resource is not
sl@0
    58
		valid, KErrAlreadyExists if this handle is already associated with a
sl@0
    59
		DirectGDI adaptation-specific resource, otherwise one of the system-wide
sl@0
    60
		error codes.
sl@0
    61
@panic  DGDI 18, if this drawable source has no pointer to its assosicated CDirectGdiDriver.
sl@0
    62
        This may occur if constructed using the default constructor, and has not yet been 
sl@0
    63
        assigned to another drawable source created with the constructor overload.
sl@0
    64
*/
sl@0
    65
EXPORT_C TInt RDirectGdiDrawableSource::Create(const RSgDrawable& aDrawable)
sl@0
    66
	{
sl@0
    67
	GRAPHICS_ASSERT_ALWAYS(iDriver, EDirectGdiPanicDrawableSourceWithoutDriver);
sl@0
    68
	return iDriver->CreateDrawableSource(*this, aDrawable);
sl@0
    69
	}
sl@0
    70
sl@0
    71
/**
sl@0
    72
Destroys the DirectGDI adaptation-specific resource associated with this handle.
sl@0
    73
Calling this method on a handle that is not associated with any DirectGDI 
sl@0
    74
adaptation-specific resource will do nothing. Once Close() is called, this handle can be reused.
sl@0
    75
sl@0
    76
@pre 	The CDirectGdiDriver object for this handle has been set.
sl@0
    77
@post 	The DirectGDI specific resource associated with this handle will be destroyed,
sl@0
    78
		at any time. This handle is no longer associated with a DirectGDI specific
sl@0
    79
		resource. The reference counter of the underlying drawable resource is
sl@0
    80
		decremented.
sl@0
    81
@panic  DGDI 18, if this drawable source has no pointer to its assosicated CDirectGdiDriver.
sl@0
    82
        This may occur if constructed using the default constructor, and has not yet been 
sl@0
    83
        assigned to another drawable source created with the constructor overload.
sl@0
    84
*/
sl@0
    85
EXPORT_C void RDirectGdiDrawableSource::Close()
sl@0
    86
	{
sl@0
    87
	if (iHandle != KNullHandle)
sl@0
    88
		{
sl@0
    89
		GRAPHICS_ASSERT_ALWAYS(iDriver, EDirectGdiPanicDrawableSourceWithoutDriver);
sl@0
    90
		iDriver->CloseDrawableSource(*this);
sl@0
    91
		}
sl@0
    92
	}