sysresmonitoring/oommonitor/tsrc/oomtest/t_oomdummyapp/inc/t_oomdummyappAppView.h
changeset 35 13fd6fd25fe7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysresmonitoring/oommonitor/tsrc/oomtest/t_oomdummyapp/inc/t_oomdummyappAppView.h	Thu May 27 13:01:09 2010 +0300
@@ -0,0 +1,95 @@
+/*
+* Copyright (c) 2006-2010 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:  
+*
+*/
+
+
+
+
+#ifndef __T_OOMDUMMYAPPAPPVIEW_h__
+#define __T_OOMDUMMYAPPAPPVIEW_h__
+
+// INCLUDES
+#include <coecntrl.h>
+
+// CLASS DECLARATION
+class Ct_oomdummyappAppView : public CCoeControl
+	{
+public:
+	// New methods
+
+	/**
+	 * NewL.
+	 * Two-phased constructor.
+	 * Create a Ct_oomdummyappAppView 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 Ct_oomdummyappAppView.
+	 */
+	static Ct_oomdummyappAppView* NewL(const TRect& aRect);
+
+	/**
+	 * NewLC.
+	 * Two-phased constructor.
+	 * Create a Ct_oomdummyappAppView object, which will draw itself
+	 * to aRect.
+	 * @param aRect Rectangle this view will be drawn to.
+	 * @return A pointer to the created instance of Ct_oomdummyappAppView.
+	 */
+	static Ct_oomdummyappAppView* NewLC(const TRect& aRect);
+
+	/**
+	 * ~Ct_oomdummyappAppView
+	 * Virtual Destructor.
+	 */
+	virtual ~Ct_oomdummyappAppView();
+
+public:
+	// Functions from base classes
+
+	/**
+	 * From CCoeControl, Draw
+	 * Draw this Ct_oomdummyappAppView 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();
+
+private:
+	// Constructors
+
+	/**
+	 * ConstructL
+	 * 2nd phase constructor.
+	 * Perform the second phase construction of a
+	 * Ct_oomdummyappAppView object.
+	 * @param aRect The rectangle this view will be drawn to.
+	 */
+	void ConstructL(const TRect& aRect);
+
+	/**
+	 * Ct_oomdummyappAppView.
+	 * C++ default constructor.
+	 */
+	Ct_oomdummyappAppView();
+
+	};
+
+#endif // __T_OOMDUMMYAPPAPPVIEW_h__
+// End of File