equal
deleted
inserted
replaced
|
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 * Outlook class for Cnap bubble on bottom. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CBUBBLEOUTLOOKMIDDLECNAP_H |
|
21 #define CBUBBLEOUTLOOKMIDDLECNAP_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "BMBubbleOutlookThreeLined.h" |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * Outlook class for Cnap bubble on bottom. |
|
30 * |
|
31 * @lib bubblemanager |
|
32 * @since 1.2 |
|
33 */ |
|
34 class CBubbleOutlookMiddleCnap :public CBubbleOutlookThreeLined |
|
35 { |
|
36 public: // Constructors and destructor |
|
37 |
|
38 /** |
|
39 * C++ default constructor. |
|
40 * @param aBubbleManager Main container. |
|
41 */ |
|
42 CBubbleOutlookMiddleCnap( CBubbleManager& aBubbleManager ); |
|
43 |
|
44 /** |
|
45 * 2nd phanse constructor |
|
46 */ |
|
47 void ConstructL(); |
|
48 |
|
49 /** |
|
50 * Destructor. |
|
51 */ |
|
52 virtual ~CBubbleOutlookMiddleCnap(); |
|
53 |
|
54 |
|
55 public: // Functions from base classes |
|
56 |
|
57 /** |
|
58 * From CBubbleOutlook |
|
59 */ |
|
60 virtual void ReadBubbleHeader( CBubbleHeader& aHeader ); |
|
61 |
|
62 private: // Functions from base classes |
|
63 |
|
64 /** |
|
65 * From CCoeControl |
|
66 */ |
|
67 void SizeChanged(); |
|
68 |
|
69 private: |
|
70 |
|
71 /** |
|
72 * DoCall1Layout |
|
73 */ |
|
74 void DoCall1Layout(); |
|
75 |
|
76 /** |
|
77 * DoCall2LayoutL |
|
78 */ |
|
79 void DoCall2LayoutL(); |
|
80 |
|
81 /** |
|
82 * GetCall1BubbleBitmaps |
|
83 */ |
|
84 void GetCall1BubbleBitmaps(); |
|
85 |
|
86 }; |
|
87 |
|
88 #endif // CBUBBLEOUTLOOKMIDDLECNAP_H |
|
89 |
|
90 // End of File |