|
1 /* |
|
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef TESTANIM_H |
|
20 #define TESTANIM_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32std.h> |
|
24 #include <e32base.h> |
|
25 #include "w32std.h" |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * CTestAnim |
|
31 * |
|
32 */ |
|
33 class T_RAnimChild : public RAnim |
|
34 { |
|
35 public: // Constructors and destructor |
|
36 T_RAnimChild(); |
|
37 T_RAnimChild(RAnimDll &aDll); |
|
38 virtual ~T_RAnimChild(); |
|
39 |
|
40 TInt Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams); |
|
41 TInt Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs); |
|
42 TInt Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams); |
|
43 TInt Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs); |
|
44 TInt CommandReply(TInt aOpcode); |
|
45 TInt CommandReply(TInt aOpcode, const TPtrC8 &aArgs); |
|
46 TInt CommandReply(TInt aOpcode, const TDesC8& aArgs, const TIpcArgs& aIpcArgs); |
|
47 void Command(TInt aOpcode, const TPtrC8 &aArgs); |
|
48 void Command(TInt aOpcode); |
|
49 void AsyncCommandReply(TRequestStatus& aRequestStatus,TInt aOpcode, const TIpcArgs& aIpcArgs); |
|
50 }; |
|
51 |
|
52 #endif // TESTANIM_H |
|
53 |