equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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: Big call status animation |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_BUBBLECALLSTATUSANIMBIG_H |
|
20 #define C_BUBBLECALLSTATUSANIMBIG_H |
|
21 |
|
22 #include "BMCallStatusAnim.h" |
|
23 #include "BMBubbleManager.h" |
|
24 #include "telbubbleanim.h" |
|
25 |
|
26 /** |
|
27 * Call status animation. |
|
28 * |
|
29 * |
|
30 * @lib BubbleManager.lib |
|
31 * @since S60 v5.0 |
|
32 */ |
|
33 NONSHARABLE_CLASS( CBubbleCallStatusAnimBig ) : public CBubbleCallStatusAnim |
|
34 { |
|
35 public: |
|
36 /** |
|
37 * Two-phased constructor. |
|
38 * @param aBubbleManager Bubble manager. |
|
39 */ |
|
40 static CBubbleCallStatusAnimBig* NewL( CBubbleImageManager& aImageManager ); |
|
41 |
|
42 /** |
|
43 * Destructor. |
|
44 */ |
|
45 virtual ~CBubbleCallStatusAnimBig(); |
|
46 |
|
47 private: |
|
48 CBubbleCallStatusAnimBig( CBubbleImageManager& aImageManager ); |
|
49 |
|
50 private: // From CTelBubbleAnim |
|
51 /** |
|
52 * Includes animation logic when it is shown |
|
53 */ |
|
54 void SetAnimationContentL(); |
|
55 |
|
56 }; |
|
57 |
|
58 #endif // C_BUBBLECALLSTATUSANIMBIG_H |
|
59 |
|
60 // End of file |