os/graphics/graphicstest/uibench/s60/testlauncher/inc/testlauncherappview.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/graphicstest/uibench/s60/testlauncher/inc/testlauncherappview.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,65 @@
     1.4 + // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 + // All rights reserved.
     1.6 + // This component and the accompanying materials are made available
     1.7 + // under the terms of "Eclipse Public License v1.0"
     1.8 + // which accompanies this distribution, and is available
     1.9 + // at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 + //
    1.11 + // Initial Contributors:
    1.12 + // Nokia Corporation - initial contribution.
    1.13 + //
    1.14 + // Contributors:
    1.15 + //
    1.16 + // Description:
    1.17 + //
    1.18 +
    1.19 +#ifndef __HELLOWORLDBASICAPPVIEW_H__
    1.20 +#define __HELLOWORLDBASICAPPVIEW_H__
    1.21 +
    1.22 +
    1.23 +#include <coecntrl.h>
    1.24 +
    1.25 +
    1.26 +class CEikGlobalTextEditor;
    1.27 +
    1.28 +
    1.29 +class CHelloWorldBasicAppView : public CCoeControl
    1.30 +    {
    1.31 +    public:
    1.32 +        /**
    1.33 +        * Create a CHelloWorldBasicAppView object, which will draw itself to aRect.
    1.34 +        * @param aRect The rectangle this view will be drawn to.
    1.35 +        * @return a pointer to the created instance of CHelloWorldBasicAppView.
    1.36 +        */
    1.37 +        static CHelloWorldBasicAppView* NewL(const TRect& aRect);
    1.38 +
    1.39 +        /**
    1.40 +        * Create a CHelloWorldBasicAppView object, which will draw itself
    1.41 +        * to aRect.
    1.42 +        * @param aRect Rectangle this view will be drawn to.
    1.43 +        * @return A pointer to the created instance of CHelloWorldBasicAppView.
    1.44 +        */
    1.45 +        static CHelloWorldBasicAppView* NewLC( const TRect& aRect );
    1.46 +
    1.47 +        ~CHelloWorldBasicAppView();
    1.48 +
    1.49 +    public:
    1.50 +        /**
    1.51 +        * From CCoeControl
    1.52 +        * Draw this CHelloWorldBasicAppView to the screen.
    1.53 +        * If the user has given a text, it is also printed to the center of
    1.54 +        * the screen.
    1.55 +        * @param aRect the rectangle of this view that needs updating
    1.56 +        */
    1.57 +        void Draw( const TRect& aRect ) const;
    1.58 +
    1.59 +    private:
    1.60 +        CHelloWorldBasicAppView();
    1.61 +        void ConstructL(const TRect& aRect);
    1.62 +        
    1.63 +    private:
    1.64 +		mutable TInt iDir; // mutable because it gets changed in constant draw method
    1.65 +		CFont* iFont;
    1.66 +    };
    1.67 +
    1.68 +#endif // __HELLOWORLDBASICAPPVIEW_H__