Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __HELLOWORLDBASICAPPVIEW_H__
17 #define __HELLOWORLDBASICAPPVIEW_H__
23 class CEikGlobalTextEditor;
26 class CHelloWorldBasicAppView : public CCoeControl
30 * Create a CHelloWorldBasicAppView object, which will draw itself to aRect.
31 * @param aRect The rectangle this view will be drawn to.
32 * @return a pointer to the created instance of CHelloWorldBasicAppView.
34 static CHelloWorldBasicAppView* NewL(const TRect& aRect);
37 * Create a CHelloWorldBasicAppView object, which will draw itself
39 * @param aRect Rectangle this view will be drawn to.
40 * @return A pointer to the created instance of CHelloWorldBasicAppView.
42 static CHelloWorldBasicAppView* NewLC( const TRect& aRect );
44 ~CHelloWorldBasicAppView();
49 * Draw this CHelloWorldBasicAppView to the screen.
50 * If the user has given a text, it is also printed to the center of
52 * @param aRect the rectangle of this view that needs updating
54 void Draw( const TRect& aRect ) const;
57 CHelloWorldBasicAppView();
58 void ConstructL(const TRect& aRect);
61 mutable TInt iDir; // mutable because it gets changed in constant draw method
65 #endif // __HELLOWORLDBASICAPPVIEW_H__