First public contribution.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
13 // Description: Wserv client side local header file.
17 #if !defined(__RTFXEFFECTS_H__)
18 #define __RTFXEFFECTS_H__
21 #include "../SERVER/w32cmd.h"
24 Class is used for passing data sent to TFX APIs RegisterEffect and OverrideEffect
25 from client to server of wserv. Another purpose of this class is to avoid code
26 duplication, when these APIs are called from RWsSession and RWindowBase.
28 class RTFXEffect : public MWsClientClass
32 TFXEffect Enum is used to distinguish when OverrideEffect API is called from
33 Session class or Window class.
39 Used in OverrideTFXEffect() when called from RWsSession
43 Used in OverrideTFXEffect() when called from RWindowBase
47 RTFXEffect(TInt aHandle, RWsBuffer* aBuffer);
48 void CheckFileNameAndSetSizes(const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming);
49 void RegisterTFXEffect(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TUint aAppUid=0, TBitFlags aFlags=0);
50 void OverrideTFXEffect(TFXEffect aCalledFrom, TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TBitFlags aFlags=0);
51 void AppendFileNameData(const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming);
52 void WriteDataUsingIPC(TWsClCmdRegisterEffect* aForRegister, TWsClCmdOverrideEffect* aForOverride, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TFXEffect aCalledFrom);
53 TBool CheckCombinedSizeWithCurrentBuffer(TInt aSize) const;
56 TInt iDirPathSizePaded;
57 TInt iFileName1SizePaded;
58 TInt iFileName2SizePaded;