phone_plat/telephony_bubble_extension_api/inc/telbubbleimage.h
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 40 bab96b7ed1a4
parent 46 bc5a64e5bc3c
equal deleted inserted replaced
40:bab96b7ed1a4 51:f39ed5e045e0
     1 /*
       
     2 * Copyright (c) 2008 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:  Extension control for displaying an icon (static image).
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TELBUBBLEIMAGE_H
       
    20 #define TELBUBBLEIMAGE_H
       
    21 
       
    22 #include <eikimage.h>
       
    23 
       
    24 /**
       
    25  *  Extension control for displaying an icon (static image).
       
    26  *
       
    27  *
       
    28  *  @lib BMCustomization.lib
       
    29  *  @since S60 v5.0
       
    30  */
       
    31 class CTelBubbleImage : public CEikImage
       
    32     {
       
    33 public:
       
    34     /** Two phase constructor */
       
    35     IMPORT_C static CTelBubbleImage* NewL();
       
    36 
       
    37     /** destructor */
       
    38     IMPORT_C virtual ~CTelBubbleImage();
       
    39 
       
    40 protected: // from CCoeControl
       
    41     IMPORT_C virtual void PositionChanged();
       
    42     IMPORT_C virtual void SizeChanged();
       
    43 
       
    44 protected:
       
    45     IMPORT_C virtual void ConstructL();
       
    46     IMPORT_C CTelBubbleImage();
       
    47     };
       
    48 
       
    49 #endif // TELBUBBLEIMAGE_H
       
    50 
       
    51 // end of file