sl@0: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __HELLOWORLDBASICAPPVIEW_H__ sl@0: #define __HELLOWORLDBASICAPPVIEW_H__ sl@0: sl@0: sl@0: #include sl@0: sl@0: sl@0: class CEikGlobalTextEditor; sl@0: sl@0: sl@0: class CHelloWorldBasicAppView : public CCoeControl sl@0: { sl@0: public: sl@0: /** sl@0: * Create a CHelloWorldBasicAppView object, which will draw itself to aRect. sl@0: * @param aRect The rectangle this view will be drawn to. sl@0: * @return a pointer to the created instance of CHelloWorldBasicAppView. sl@0: */ sl@0: static CHelloWorldBasicAppView* NewL(const TRect& aRect); sl@0: sl@0: /** sl@0: * Create a CHelloWorldBasicAppView object, which will draw itself sl@0: * to aRect. sl@0: * @param aRect Rectangle this view will be drawn to. sl@0: * @return A pointer to the created instance of CHelloWorldBasicAppView. sl@0: */ sl@0: static CHelloWorldBasicAppView* NewLC( const TRect& aRect ); sl@0: sl@0: ~CHelloWorldBasicAppView(); sl@0: sl@0: public: sl@0: /** sl@0: * From CCoeControl sl@0: * Draw this CHelloWorldBasicAppView to the screen. sl@0: * If the user has given a text, it is also printed to the center of sl@0: * the screen. sl@0: * @param aRect the rectangle of this view that needs updating sl@0: */ sl@0: void Draw( const TRect& aRect ) const; sl@0: sl@0: private: sl@0: CHelloWorldBasicAppView(); sl@0: void ConstructL(const TRect& aRect); sl@0: sl@0: private: sl@0: mutable TInt iDir; // mutable because it gets changed in constant draw method sl@0: CFont* iFont; sl@0: }; sl@0: sl@0: #endif // __HELLOWORLDBASICAPPVIEW_H__