phoneuis/BubbleManager/Inc/BMBubbleOutlookBottomText.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     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 textual CLI bubble on the bottom of the screen
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef BUBBLEOUTLOOKBOTTOMTEXT_H
       
    21 #define BUBBLEOUTLOOKBOTTOMTEXT_H
       
    22 
       
    23 // INCLUDES
       
    24 #include    "BMBubbleOutlookFiveLined.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  CBubbleOutlookBottomText container class
       
    30 *
       
    31 *  Class draws the textual CLI bubble on the bottom of the screen
       
    32 *
       
    33 *  @lib bubblemanager
       
    34 *  @since 1.0
       
    35 */
       
    36 class CBubbleOutlookBottomText : public CBubbleOutlookFiveLined
       
    37     {
       
    38     public: // Constructors and destructor       
       
    39 
       
    40         /**
       
    41         * Default constructor.
       
    42         * @param aBubbleManager The main container.
       
    43         */
       
    44         CBubbleOutlookBottomText( CBubbleManager& aBubbleManager );
       
    45 
       
    46         /**
       
    47         * Symbian OS 2nd phase constructor.
       
    48         */
       
    49         void ConstructL();
       
    50         
       
    51         /**
       
    52         * Destructor.
       
    53         */
       
    54         virtual ~CBubbleOutlookBottomText();
       
    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         * DoCall2LayoutL
       
    78         */            
       
    79         void DoCall2LayoutL();
       
    80         
       
    81         /**
       
    82         * SetCallObjectTextToLabelsL
       
    83         */
       
    84         void SetCallObjectTextToLabelsL( const TDesC& aText,
       
    85                                          TInt aLabelCount,
       
    86                                          CEikLabel* aLabels[] );
       
    87     };
       
    88 
       
    89 #endif // BUBBLEOUTLOOKBOTTOMTEXT_H
       
    90 
       
    91 // End of File