os/graphics/windowing/windowserver/nga/CLIENT/RBITMAP.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) 1996-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
// Shells for window server bitmap class
sl@0
    15
// Note: Note: A pointer to CWsBitmap must have the same pointer value as a pointer
sl@0
    16
// to the associated CFbsBitmap, otherwise code in BitGdi component will be
sl@0
    17
// Broken.
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
#include <e32std.h>
sl@0
    22
#include "../SERVER/w32cmd.h"
sl@0
    23
#include "CLIENT.H"
sl@0
    24
sl@0
    25
sl@0
    26
EXPORT_C CWsBitmap::CWsBitmap()
sl@0
    27
/** Default constructor. Developers should use the other constructor overload. */
sl@0
    28
	{
sl@0
    29
	}
sl@0
    30
sl@0
    31
EXPORT_C CWsBitmap::CWsBitmap(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
sl@0
    32
/** Constructor which takes a window server session as an argument.
sl@0
    33
sl@0
    34
@param aWs Handle to window server session. */
sl@0
    35
	{
sl@0
    36
	}
sl@0
    37
sl@0
    38
EXPORT_C CWsBitmap::~CWsBitmap()
sl@0
    39
/** Destructor. */
sl@0
    40
	{
sl@0
    41
	Reset();
sl@0
    42
	}
sl@0
    43
sl@0
    44
EXPORT_C void CWsBitmap::Reset()
sl@0
    45
/** Releases the bitmap's handle from the font and bitmap server.
sl@0
    46
sl@0
    47
The function also decrements the bitmap's access count in the font and bitmap 
sl@0
    48
server. The server-side bitmap is deleted only if the access count for the 
sl@0
    49
bitmap decrements to zero. */
sl@0
    50
	{
sl@0
    51
	if (iBuffer && iWsHandle)
sl@0
    52
		Write(EWsBitmapOpFree);
sl@0
    53
	iWsHandle=NULL;
sl@0
    54
	CFbsBitmap::Reset();
sl@0
    55
	}
sl@0
    56
sl@0
    57
TInt CWsBitmap::createWsBitmap(TInt aErr)
sl@0
    58
	{
sl@0
    59
	if (aErr==KErrNone)
sl@0
    60
		{
sl@0
    61
		TWsClCmdCreateBitmap createBitmap;
sl@0
    62
		createBitmap.handle=Handle();
sl@0
    63
		TInt ret;
sl@0
    64
		if ((ret=iBuffer->WriteReplyWs(&createBitmap,sizeof(createBitmap),EWsClOpCreateBitmap))<0)
sl@0
    65
			{
sl@0
    66
			CFbsBitmap::Reset();
sl@0
    67
			aErr=ret;
sl@0
    68
			}
sl@0
    69
		else
sl@0
    70
			iWsHandle=ret;
sl@0
    71
		}
sl@0
    72
	return(aErr);
sl@0
    73
	}
sl@0
    74
sl@0
    75
EXPORT_C TInt CWsBitmap::Create(const TSize& aSizeInPixels,TDisplayMode aDispMode)
sl@0
    76
/** Creates a bitmap, specifying the size and display mode.
sl@0
    77
sl@0
    78
This function, if successful, always causes a flush of the window server buffer.
sl@0
    79
sl@0
    80
@param aSizeInPixels The size of the bitmap to be created. 
sl@0
    81
@param aDispMode The display-mode of the bitmap to be created. 
sl@0
    82
@return KErrNone if successful, KErrCouldNotConnect if no connection to the 
sl@0
    83
font and bitmap server could be made, KErrArgument if aSizeInPixels is illegal.
sl@0
    84
@see CFbsBitmap::Create() */
sl@0
    85
	{
sl@0
    86
	Reset();
sl@0
    87
	return(createWsBitmap(CFbsBitmap::Create(aSizeInPixels,aDispMode)));
sl@0
    88
	}
sl@0
    89
sl@0
    90
EXPORT_C TInt CWsBitmap::Duplicate(TInt aHandle)
sl@0
    91
/** Makes this bitmap a duplicate of the specified bitmap.
sl@0
    92
sl@0
    93
This function, if successful, always causes a flush of the window server buffer.
sl@0
    94
sl@0
    95
@param aHandle The handle of the bitmap to be duplicated. 
sl@0
    96
@return KErrNone if successful, KErrCouldNotConnect if no connection to the 
sl@0
    97
font and bitmap server could be made, or KErrUnknown if no bitmap could be 
sl@0
    98
found whose handle is aHandle. 
sl@0
    99
@see CFbsBitmap::Duplicate() */
sl@0
   100
	{
sl@0
   101
	Reset();
sl@0
   102
	return(createWsBitmap(CFbsBitmap::Duplicate(aHandle)));
sl@0
   103
	}
sl@0
   104
sl@0
   105
EXPORT_C TInt CWsBitmap::Load(const TDesC& aFileName,TInt32 aId,TBool aShareIfLoaded)
sl@0
   106
/** Loads a bitmap from a file.
sl@0
   107
sl@0
   108
If aShareIfLoaded is ETrue the bitmap will be allowed to be shared by a number 
sl@0
   109
of font and bitmap server clients.
sl@0
   110
sl@0
   111
This function, if successful, always causes a flush of the window server buffer.
sl@0
   112
sl@0
   113
@param aFileName The filename of the multibitmap (.mbm) file containing the 
sl@0
   114
bitmap to be loaded. 
sl@0
   115
@param aId The identifier of the bitmap in the .mbm file which should be loaded.
sl@0
   116
@param aShareIfLoaded Specifies whether or not the loaded bitmap will be made 
sl@0
   117
available for sharing between font and bitmap server clients. 
sl@0
   118
@return KErrNone if successful, otherwise KErrCouldNotConnect, KErrEof, or 
sl@0
   119
an error specific to the font and bitmap server.
sl@0
   120
@see CFbsBitmap::Load() */
sl@0
   121
	{
sl@0
   122
	Reset();
sl@0
   123
	return(createWsBitmap(CFbsBitmap::Load(aFileName,aId,aShareIfLoaded)));
sl@0
   124
	}
sl@0
   125
sl@0
   126
EXPORT_C void CWsBitmap::InternalizeL(RReadStream& aStream)
sl@0
   127
/** Internalises a CWsBitmap from the read stream.
sl@0
   128
sl@0
   129
The presence of this function means that the standard templated operator>>() 
sl@0
   130
can be used to internalise objects of this class.
sl@0
   131
sl@0
   132
This function always causes a flush of the window server buffer.
sl@0
   133
sl@0
   134
@param aStream The stream from which to internalise the bitmap. */
sl@0
   135
	{
sl@0
   136
	Reset();
sl@0
   137
	CFbsBitmap::InternalizeL(aStream);
sl@0
   138
	User::LeaveIfError(createWsBitmap(KErrNone));
sl@0
   139
	}
sl@0
   140