dbgagents/trkagent/app/s60/TrkAppContainer.h
changeset 0 c6b0df440bee
equal deleted inserted replaced
-1:000000000000 0:c6b0df440bee
       
     1 /*
       
     2 * Copyright (c) 2009 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 *
       
    16 */
       
    17 
       
    18 #ifndef __TRKAPPCONTAINER_H__
       
    19 #define __TRKAPPCONTAINER_H__
       
    20 
       
    21 // INCLUDES
       
    22 #include <coecntrl.h>
       
    23 
       
    24 class CTrkAppView;
       
    25 
       
    26 class CTrkAppContainer : public CCoeControl
       
    27 {
       
    28     public: // Constructors and destructor
       
    29         /**
       
    30         * C++ constructor.
       
    31         * @since 2.1
       
    32         * @param aController reference to CCcorController
       
    33         */
       
    34         CTrkAppContainer(CTrkAppView* aTrkAppView);
       
    35 
       
    36         /**
       
    37         * Symbian OS default constructor.
       
    38         * @since 2.1
       
    39         */
       
    40         void ConstructL(const TRect& aRect);
       
    41 
       
    42         /**
       
    43         * Destructor.
       
    44         */
       
    45         virtual ~CTrkAppContainer();
       
    46         
       
    47     public: // Functions from base classes
       
    48         /**
       
    49         * From CCoeControl set the size and position of its component controls.
       
    50         */
       
    51         //void SizeChanged();
       
    52     
       
    53     public: // New functions
       
    54  
       
    55     protected: // Functions from base classes
       
    56 	 	/**
       
    57 	    * From CCoeControl,Draw.
       
    58 	    */
       
    59     	void Draw(const TRect& aRect) const;
       
    60     
       
    61     private: //data
       
    62 	
       
    63 		CTrkAppView* iTrkAppView;
       
    64 };
       
    65 
       
    66 #endif  //__TRKAPPCONTAINER_H__
       
    67 
       
    68 // End of File
       
    69