phoneuis/BubbleManager/Inc/BMBubbleOutlookHide.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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 *     Draws hiding bubble on top
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef BUBBLEOUTLOOKTOPHIDE_H
       
    21 #define BUBBLEOUTLOOKTOPHIDE_H
       
    22 
       
    23 // INCLUDES
       
    24 #include    <calslbs.h>
       
    25 #include    "BMBubbleOutlook.h"
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 class CEikLabel; 
       
    29 class CEikImage;
       
    30 class CBubbleImageManager;
       
    31 class CBubbleHeader;
       
    32 
       
    33 
       
    34 // CLASS DECLARATION
       
    35 
       
    36 /**
       
    37 *  CBubbleOutlookHide container class
       
    38 *
       
    39 *  Draws hiding bubble on top
       
    40 *
       
    41 *  @lib bubblemanager
       
    42 *  @since 1.0
       
    43 */
       
    44 class CBubbleOutlookHide : public CBubbleOutlook  
       
    45     {
       
    46     public: // Constructors and destructor
       
    47         
       
    48         /**
       
    49         * Default constructor.
       
    50         * @param aBubbleManager Main container
       
    51         */
       
    52         CBubbleOutlookHide( CBubbleManager& aBubbleManager );
       
    53         
       
    54         /**
       
    55         * Symbian OS 2nd phase constructor.
       
    56         */
       
    57         void ConstructL();
       
    58         
       
    59         /**
       
    60         * Destructor.
       
    61         */
       
    62         virtual ~CBubbleOutlookHide();
       
    63 
       
    64     public: // Functions from base classes
       
    65         
       
    66         /**
       
    67         * From CBubbleOutlook
       
    68         */
       
    69         void Reset( );
       
    70         
       
    71         /**
       
    72         * From CBubbleOutlook
       
    73         */
       
    74         void ReadBubbleHeader( CBubbleHeader& aHeader );
       
    75         
       
    76         /**
       
    77         * From CBubbleOutlook
       
    78         */
       
    79         virtual void DrawTimerCostNow();
       
    80         
       
    81         /**
       
    82         * From CBubbleOutlook
       
    83         */
       
    84         virtual void DrawCLINow();
       
    85 
       
    86         /**
       
    87         * From CBubbleOutlook
       
    88         */
       
    89         void DrawBitmaps( CBitmapContext& aGc ) const;
       
    90 
       
    91         /**
       
    92         * From CBubbleOutlook.
       
    93         */
       
    94         virtual void HandleAnimationStartL() const;
       
    95 
       
    96         /**
       
    97         * From CBubbleOutlook.
       
    98         */
       
    99         virtual void DrawCallHeaderText();
       
   100         
       
   101     private: // Functions from base classes
       
   102              
       
   103         /**
       
   104         * From CCoeControl
       
   105         */
       
   106         void SizeChanged();
       
   107         
       
   108         
       
   109     private: //data
       
   110         
       
   111         // Bubble image
       
   112         CEikImage* iBubble;
       
   113     };
       
   114 
       
   115 #endif // BUBBLEOUTLOOKTOPHIDE_H
       
   116 
       
   117 // End of File