os/graphics/windowing/windowserver/nonnga/CLIENT/MWSCLI.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nonnga/CLIENT/MWSCLI.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,120 @@
     1.4 +// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Common client side class
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32std.h>
    1.22 +#include "../SERVER/w32cmd.h"
    1.23 +#include "CLIENT.H"
    1.24 +
    1.25 +
    1.26 +MWsClientClass::MWsClientClass() : iWsHandle(0), iBuffer(NULL)
    1.27 +	{
    1.28 +	}
    1.29 +
    1.30 +MWsClientClass::MWsClientClass(RWsBuffer *aBuffer) : iWsHandle(0), iBuffer(aBuffer)
    1.31 +	{
    1.32 +	}
    1.33 +
    1.34 +void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
    1.35 +	{
    1.36 +	iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2);
    1.37 +	}
    1.38 +
    1.39 +void MWsClientClass::Write(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
    1.40 +	{
    1.41 +	iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1);
    1.42 +	}
    1.43 +
    1.44 +void MWsClientClass::Write(TUint aOpcode) const
    1.45 +	{
    1.46 +	iBuffer->Write(iWsHandle,aOpcode);
    1.47 +	}
    1.48 +
    1.49 +void MWsClientClass::WriteInt(TInt aInt, TUint aOpcode) const
    1.50 +	{
    1.51 +	iBuffer->Write(iWsHandle,aOpcode,&aInt,sizeof(TInt));
    1.52 +	}
    1.53 +
    1.54 +void MWsClientClass::WriteRect(const TRect &aRect, TUint aOpcode) const
    1.55 +	{
    1.56 +	Write(&aRect,sizeof(aRect),aOpcode);
    1.57 +	}
    1.58 +
    1.59 +void MWsClientClass::WritePoint(const TPoint &aPoint, TUint aOpcode) const
    1.60 +	{
    1.61 +	Write(&aPoint,sizeof(aPoint),aOpcode);
    1.62 +	}
    1.63 +
    1.64 +void MWsClientClass::WriteSize(const TSize &aSize, TUint aOpcode) const
    1.65 +	{
    1.66 +	Write(&aSize,sizeof(aSize),aOpcode);
    1.67 +	}
    1.68 +
    1.69 +void MWsClientClass::AppendData(const TAny */*aData*/,TInt /*aLength*/,TBool /*aFinished*/)
    1.70 +	{
    1.71 +	}
    1.72 +
    1.73 +TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const
    1.74 +	{
    1.75 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs));
    1.76 +	}
    1.77 +
    1.78 +TInt MWsClientClass::WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs) const
    1.79 +	{
    1.80 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,&aInt,sizeof(TInt),aIpcArgs));
    1.81 +	}
    1.82 +
    1.83 +TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* aIpcArgs) const
    1.84 +	{
    1.85 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aIpcArgs));
    1.86 +	}
    1.87 +
    1.88 +TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs) const
    1.89 +	{
    1.90 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs));
    1.91 +	}
    1.92 +
    1.93 +TInt MWsClientClass::WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
    1.94 +	{
    1.95 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aReplyPackage));
    1.96 +	}
    1.97 +
    1.98 +TInt MWsClientClass::WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
    1.99 +	{
   1.100 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,&aInt,sizeof(aInt),aReplyPackage));
   1.101 +	}
   1.102 +
   1.103 +TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   1.104 +	{
   1.105 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aReplyPackage));
   1.106 +	}
   1.107 +
   1.108 +TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   1.109 +	{
   1.110 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aReplyPackage));
   1.111 +	}
   1.112 +
   1.113 +TInt MWsClientClass::WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer, TUint aOpcode) const
   1.114 +	{
   1.115 +	return(iBuffer->WriteReplyByProvidingRemoteReadAccess(iWsHandle,aOpcode,aBuf,aBufLen,aRemoteReadBuffer));
   1.116 +	}
   1.117 +
   1.118 +void MWsClientClass::AddToBitmapArray(const TInt aBitmapHandle)const
   1.119 +	{
   1.120 +	iBuffer->AddToBitmapArray(aBitmapHandle);
   1.121 +	}
   1.122 +
   1.123 +