os/graphics/windowing/windowserver/test/tcontaindrawer/wssimpledrawer.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/tcontaindrawer/wssimpledrawer.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,92 @@
     1.4 +// Copyright (c) 2007-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 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @test
    1.22 + @internalComponent - Internal Symbian test code
    1.23 +*/
    1.24 +
    1.25 +#ifndef __WSSIMPLEDRAWER_H__
    1.26 +#define __WSSIMPLEDRAWER_H__
    1.27 +
    1.28 +
    1.29 +#include <w32std.h>
    1.30 +const TUid KSimpleDrawerInterfaceId = {0x1028351B};
    1.31 +const TUid KSimpleDrawerImplId = {0x1028351C};
    1.32 +
    1.33 +/** Client representation of a window-server-side drawing owned by this Client
    1.34 +@publishedAll
    1.35 +@released
    1.36 +*/
    1.37 +NONSHARABLE_CLASS(CWsSimpleGraphicBitmap): public CWsGraphic
    1.38 +	{
    1.39 +public:
    1.40 +	IMPORT_C static CWsSimpleGraphicBitmap* NewL();
    1.41 +	IMPORT_C static CWsSimpleGraphicBitmap* NewL(TUid aUid);
    1.42 +	IMPORT_C static CWsSimpleGraphicBitmap* NewL(const TWsGraphicId& aReplace);
    1.43 +
    1.44 +	IMPORT_C ~CWsSimpleGraphicBitmap();
    1.45 +public: // protected virtuals from CWsGraphic promoted to public
    1.46 +	IMPORT_C TInt ShareGlobally();
    1.47 +	IMPORT_C TInt UnShareGlobally();
    1.48 +	IMPORT_C TInt Share(TSecureId aClientId);
    1.49 +	IMPORT_C TInt UnShare(TSecureId aClientId);
    1.50 +	
    1.51 +	IMPORT_C TInt UpdateColor(TRgb aColor);
    1.52 +
    1.53 +public:
    1.54 +	CWsSimpleGraphicBitmap();
    1.55 +	void HandleMessage(const TDesC8& aData);
    1.56 +	void OnReplace();
    1.57 +public:
    1.58 +	TBool iIsReady;
    1.59 +};
    1.60 +
    1.61 +
    1.62 +const TUid KInvisibleDrawerInterfaceId1 = {0x1028353A};
    1.63 +const TUid KInvisibleDrawerImplId1 = {0x10283539};
    1.64 +
    1.65 +/** Client representation of a window-server-side drawing owned by this Client
    1.66 +@publishedAll
    1.67 +@released
    1.68 +*/
    1.69 +NONSHARABLE_CLASS(CWsInvisibleGraphicBitmap1): public CWsSimpleGraphicBitmap
    1.70 +	{
    1.71 +public:
    1.72 +	IMPORT_C static CWsInvisibleGraphicBitmap1* NewL();
    1.73 +	IMPORT_C static CWsInvisibleGraphicBitmap1* NewL(TUid aUid);
    1.74 +	IMPORT_C static CWsInvisibleGraphicBitmap1* NewL(const TWsGraphicId& aReplace);
    1.75 +};
    1.76 +
    1.77 +
    1.78 +const TUid KInvisibleDrawerInterfaceId2 = {0x1028353C};
    1.79 +const TUid KInvisibleDrawerImplId2 = {0x1028353B};
    1.80 +
    1.81 +/** Client representation of a window-server-side drawing owned by this Client
    1.82 +@publishedAll
    1.83 +@released
    1.84 +*/
    1.85 +NONSHARABLE_CLASS(CWsInvisibleGraphicBitmap2): public CWsSimpleGraphicBitmap
    1.86 +	{
    1.87 +public:
    1.88 +	IMPORT_C static CWsInvisibleGraphicBitmap2* NewL();
    1.89 +	IMPORT_C static CWsInvisibleGraphicBitmap2* NewL(TUid aUid);
    1.90 +	IMPORT_C static CWsInvisibleGraphicBitmap2* NewL(const TWsGraphicId& aReplace);
    1.91 +};
    1.92 +
    1.93 +
    1.94 +
    1.95 +#endif