1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/CLIENT/rtfxeffect.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,62 @@
1.4 +// Copyright (c) 2010 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: Wserv client side local header file.
1.17 +//
1.18 +
1.19 +
1.20 +#if !defined(__RTFXEFFECTS_H__)
1.21 +#define __RTFXEFFECTS_H__
1.22 +
1.23 +#include <w32std.h>
1.24 +#include "../SERVER/w32cmd.h"
1.25 +
1.26 +/**
1.27 +Class is used for passing data sent to TFX APIs RegisterEffect and OverrideEffect
1.28 +from client to server of wserv. Another purpose of this class is to avoid code
1.29 +duplication, when these APIs are called from RWsSession and RWindowBase.
1.30 +*/
1.31 +class RTFXEffect : public MWsClientClass
1.32 + {
1.33 +public:
1.34 + /**
1.35 + TFXEffect Enum is used to distinguish when OverrideEffect API is called from
1.36 + Session class or Window class.
1.37 + */
1.38 + enum TFXEffect
1.39 + {
1.40 + ENone,
1.41 + /**
1.42 + Used in OverrideTFXEffect() when called from RWsSession
1.43 + */
1.44 + ETFXSession,
1.45 + /**
1.46 + Used in OverrideTFXEffect() when called from RWindowBase
1.47 + */
1.48 + ETFXWindow
1.49 + };
1.50 + RTFXEffect(TInt aHandle, RWsBuffer* aBuffer);
1.51 + void CheckFileNameAndSetSizes(const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming);
1.52 + void RegisterTFXEffect(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TUint aAppUid=0, TBitFlags aFlags=0);
1.53 + void OverrideTFXEffect(TFXEffect aCalledFrom, TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TBitFlags aFlags=0);
1.54 + void AppendFileNameData(const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming);
1.55 + void WriteDataUsingIPC(TWsClCmdRegisterEffect* aForRegister, TWsClCmdOverrideEffect* aForOverride, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TFXEffect aCalledFrom);
1.56 + TBool CheckCombinedSizeWithCurrentBuffer(TInt aSize) const;
1.57 +
1.58 +private:
1.59 + TInt iDirPathSizePaded;
1.60 + TInt iFileName1SizePaded;
1.61 + TInt iFileName2SizePaded;
1.62 + TInt iCombSizePaded;
1.63 + };
1.64 +
1.65 +#endif