uifw/AvKon/tsrc/bc/S60_SDK3.0/bctestquery/inc/bctestquerycontainer.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:00:49 +0200
changeset 0 2f259fa3e83a
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  container
*
*/

#ifndef C_BCTESTQUERYCONTAINER_H
#define C_BCTESTQUERYCONTAINER_H

#include <coecntrl.h>

class CBCTestQueryBaseCase;

/**
* container class
*/
class CBCTestQueryContainer: public CCoeControl
    {
public: 
    
// constructor and destructor
    
    CBCTestQueryContainer();
    
    virtual ~CBCTestQueryContainer();
    
    void ConstructL( const TRect& aRect );
    
// new functions
    
    /**
    * Set component control, and this container will own the 
    * component control.
    */
    void SetControl( CCoeControl* aControl ); 
    
    void ResetControl();
  
// from CCoeControl

    TInt CountComponentControls() const;
    
    CCoeControl* ComponentControl( TInt aIndex ) const;

private: // from CCoeControl    
    
    /**
    * From CCoeControl, Draw.
    * Fills the window's rectangle.
    * @param aRect Region of the control to be (re)drawn.
    */
    void Draw( const TRect& aRect ) const;  
    
private: // data
    
    /**
     * Responsible for delete this
     */ 
    CCoeControl* iControl; 
       
    };    

#endif // C_BCTESTQUERYCONTAINER_H