diff -r 000000000000 -r 0049171ecffb inc/NPRAppView.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/inc/NPRAppView.h Fri Jul 24 08:46:02 2009 +0100 @@ -0,0 +1,102 @@ +/* + ============================================================================ + Name : NPRAppView.h + Author : John Kern + Copyright (c) 2009 Symbian Foundation Ltd + This component and the accompanying materials are made available + under the terms of the License "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: + Symbian Foundation Ltd - initial contribution. + + Contributors: John Kern + Description : Declares view class for application. + ============================================================================ + */ + +#ifndef __NPRAPPVIEW_h__ +#define __NPRAPPVIEW_h__ + +// INCLUDES +#include + +// CLASS DECLARATION +class CNPRAppView : public CCoeControl + { +public: + // New methods + + /** + * NewL. + * Two-phased constructor. + * Create a CNPRAppView object, which will draw itself to aRect. + * @param aRect The rectangle this view will be drawn to. + * @return a pointer to the created instance of CNPRAppView. + */ + static CNPRAppView* NewL(const TRect& aRect); + + /** + * NewLC. + * Two-phased constructor. + * Create a CNPRAppView object, which will draw itself + * to aRect. + * @param aRect Rectangle this view will be drawn to. + * @return A pointer to the created instance of CNPRAppView. + */ + static CNPRAppView* NewLC(const TRect& aRect); + + /** + * ~CNPRAppView + * Virtual Destructor. + */ + virtual ~CNPRAppView(); + +public: + // Functions from base classes + + /** + * From CCoeControl, Draw + * Draw this CNPRAppView to the screen. + * @param aRect the rectangle of this view that needs updating + */ + void Draw(const TRect& aRect) const; + + /** + * From CoeControl, SizeChanged. + * Called by framework when the view size is changed. + */ + virtual void SizeChanged(); + + /** + * From CoeControl, HandlePointerEventL. + * Called by framework when a pointer touch event occurs. + * Note: although this method is compatible with earlier SDKs, + * it will not be called in SDKs without Touch support. + * @param aPointerEvent the information about this event + */ + virtual void HandlePointerEventL(const TPointerEvent& aPointerEvent); + +private: + // Constructors + + /** + * ConstructL + * 2nd phase constructor. + * Perform the second phase construction of a + * CNPRAppView object. + * @param aRect The rectangle this view will be drawn to. + */ + void ConstructL(const TRect& aRect); + + /** + * CNPRAppView. + * C++ default constructor. + */ + CNPRAppView(); + + }; + +#endif // __NPRAPPVIEW_h__ +// End of File