diff -r 8173571d354e -r 1fc85118c3ae locationlandmarksuirefapp/inc/LmUiRefAppContainer.h --- a/locationlandmarksuirefapp/inc/LmUiRefAppContainer.h Thu Aug 19 09:48:36 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,102 +0,0 @@ -/* -* Copyright (c) 2003 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: LandmarksUi Content File - -* Declares container control class for application. -* -*/ - - - - - - -#ifndef CLMUIREFAPPCONTAINER_H -#define CLMUIREFAPPCONTAINER_H - -// INCLUDES -#include - -// FORWARD DECLARATIONS - -// CLASS DECLARATION - -/** -* CLmUiRefAppContainer container control class. -* -*/ -class CLmUiRefAppContainer: public CCoeControl - { - public: // Constructors and destructor - - - /* Two-phased constructor - * @param aKeyProcessor - * @param aParent - * @param aRect A rectangle for drawing. - * @return The newly created object. - */ - static CLmUiRefAppContainer* NewL(MObjectProvider* aParent, - const TRect& aRect ); - - /** - * Destructor. - */ - ~CLmUiRefAppContainer(); - - public: // New functions - - - public: // Functions from base classes - - void Draw(const TRect& /*aRect*/) const; - - private: // Functions from base classes - - /** - * From CoeControl,SizeChanged. - */ - void SizeChanged(); - - /** - * From CoeControl,CountComponentControls. - */ - TInt CountComponentControls() const; - - /** - * From CCoeControl,ComponentControl. - */ - CCoeControl* ComponentControl(TInt aIndex) const; - - - private: - /** - * C++ default constructor. - * @param aKeyProcessor - * @return newly instantiated object - */ - CLmUiRefAppContainer(); - - void ConstructL(const TRect& aRect); - - - private: //data - - CEikLabel* iLabel; // example label - CEikLabel* iToDoLabel; // example label - - }; - -#endif - -// End of File