|
1 /* |
|
2 * Copyright (c) 2002 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 * Class draws the biggest bubble on the bottom of the screen |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef BUBBLEOUTLOOKBOTTOM_H |
|
21 #define BUBBLEOUTLOOKBOTTOM_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "BMBubbleOutlookTwoLined.h" |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * CBubbleOutlookBottom container class |
|
30 * |
|
31 * Class draws the biggest bubble on the bottom of the screen |
|
32 * |
|
33 * @lib bubblemanager |
|
34 * @since 1.0 |
|
35 */ |
|
36 class CBubbleOutlookBottom : public CBubbleOutlookTwoLined |
|
37 { |
|
38 public: // Constructors and destructor |
|
39 |
|
40 /** |
|
41 * Default constructor. |
|
42 * @param aBubbleManager The main container. |
|
43 */ |
|
44 CBubbleOutlookBottom( CBubbleManager& aBubbleManager ); |
|
45 |
|
46 /** |
|
47 * Symbian OS 2nd phase constructor. |
|
48 */ |
|
49 void ConstructL(); |
|
50 |
|
51 /** |
|
52 * Destructor. |
|
53 */ |
|
54 virtual ~CBubbleOutlookBottom(); |
|
55 |
|
56 public: // Functions from base classes |
|
57 |
|
58 /** |
|
59 * From CBubbleOutlook |
|
60 */ |
|
61 virtual void ReadBubbleHeader( CBubbleHeader& aHeader ); |
|
62 |
|
63 private: // Functions from base classes |
|
64 |
|
65 /** |
|
66 * From CCoeControl |
|
67 */ |
|
68 void SizeChanged(); |
|
69 |
|
70 /** |
|
71 * From CCoeControl |
|
72 */ |
|
73 void PositionChanged(); |
|
74 |
|
75 private: |
|
76 |
|
77 /** |
|
78 * DoCall1Layout |
|
79 */ |
|
80 void DoCall1Layout(); |
|
81 |
|
82 /** |
|
83 * DoCall2LayoutL |
|
84 */ |
|
85 void DoCall2LayoutL(); |
|
86 |
|
87 /** |
|
88 * GetCall1BubbleBitmaps |
|
89 */ |
|
90 void GetCall1BubbleBitmaps(); |
|
91 |
|
92 }; |
|
93 |
|
94 #endif // BUBBLEOUTLOOKBOTTOM_H |
|
95 |
|
96 // End of File |