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