diff -r 000000000000 -r 05e9090e2422 uiresources_pub/pictograph_api/tsrc/inc/testsdkpictographcontrol.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uiresources_pub/pictograph_api/tsrc/inc/testsdkpictographcontrol.h Thu Dec 17 09:14:12 2009 +0200 @@ -0,0 +1,83 @@ +/* +* Copyright (c) 2008 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: test aknpictographinterface.h + akniconsrvclient.h + akniconutils.h + akninternaliconutils.h +* +*/ + + + +#ifndef C_TESTSDKPICTOGRAPHCONTROL_H +#define C_TESTSDKPICTOGRAPHCONTROL_H + + +#include + +class CTestSDKPicToGraphControl: public CCoeControl + { +public: // constructor and destructor + + /** + * Symbian 2nd constructor + */ + static CTestSDKPicToGraphControl* NewL(); + + /** + * Destructor + */ + virtual ~CTestSDKPicToGraphControl(); + +private: + + /** + * C++ default constructor + */ + CTestSDKPicToGraphControl(); + + /** + * Symbian 2nd constructor + */ + void ConstructL(); + +private: // from CCoeControl + + /** + * Return count of component controls + */ + TInt CountComponentControls() const; + + /** + * Return pointer to component control specified by index + * @param aIndex, a index to specify a component control + */ + CCoeControl* ComponentControl( TInt aIndex ) const; + + /** + * From CCoeControl, Draw. + * Fills the window's rectangle. + * @param aRect Region of the control to be (re)drawn. + */ + void Draw( const TRect& aRect ) const; + + /** + * Resize screen. + */ + void SizeChanged(); + + }; + + +#endif // C_TESTSDKPICTOGRAPHCONTROL_H