browserui/videoservices/inc/VideoServicesContainer.h
branchRCL_3
changeset 64 6385c4c93049
parent 63 4baee4f15982
child 65 8e6fa1719340
equal deleted inserted replaced
63:4baee4f15982 64:6385c4c93049
     1 /*
       
     2 * Copyright (c) 2006 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 the License "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:  Header file for CVideoServicesContainer
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VIDEOSERVICESCONTAINER_H
       
    20 #define VIDEOSERVICESCONTAINER_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <coecntrl.h>
       
    24    
       
    25 // FORWARD DECLARATIONS
       
    26 class CEikLabel;        // for example labels
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  CVideoServicesContainer  container control class.
       
    32 *  
       
    33 */
       
    34 class CVideoServicesContainer : public CCoeControl, MCoeControlObserver
       
    35     {
       
    36     public: // Constructors and destructor
       
    37         
       
    38 		/**
       
    39 		* Two phased constructor
       
    40 		* @param aRect Frame rectangle for container
       
    41 		* @since Series 60 3.0
       
    42 		*/
       
    43 		static CVideoServicesContainer* NewL( const TRect& aRect );
       
    44 
       
    45         /**
       
    46         * Destructor.
       
    47         */
       
    48         ~CVideoServicesContainer();
       
    49 
       
    50     private: // Functions from base classes
       
    51 
       
    52         /**
       
    53         * EPOC default constructor.
       
    54         * @param aRect Frame rectangle for container.
       
    55         * @return void
       
    56 		* @since Series 60 3.1
       
    57         */
       
    58         void ConstructL( const TRect& aRect );
       
    59 
       
    60        /**
       
    61         * From CCoeControl,Draw.
       
    62 		* @param aRect Frame rectangle to draw
       
    63         * @return void
       
    64 		* @since Series 60 3.1
       
    65         */
       
    66         void Draw( const TRect& aRect ) const;
       
    67 
       
    68        /**
       
    69         * From CCoeControl, HandleControlEventL
       
    70 		* @param aControl Active Control
       
    71 		* @param aEventType Type of control event
       
    72         * @return void
       
    73 		* @since Series 60 3.1
       
    74         */
       
    75         void HandleControlEventL( CCoeControl* aControl, TCoeEvent aEventType );
       
    76         
       
    77     private: // data
       
    78 
       
    79     };
       
    80 
       
    81 #endif
       
    82 
       
    83 // End of File