diff -r 7165f928e888 -r 31c16e0c5e3e classicui_plat/notes_api/tsrc/inc/testsdknotesnotecontrol.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/classicui_plat/notes_api/tsrc/inc/testsdknotesnotecontrol.h Wed Aug 18 10:02:14 2010 +0300 @@ -0,0 +1,79 @@ +/* +* Copyright (c) 2002 - 2007 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 aknnotecontrol.h +* +*/ + +#ifndef C_TESTSDKNOTESNOTECONTROL_H +#define C_TESTSDKNOTESNOTECONTROL_H + +// INCLUDES +#include + +#include "testsdknotes.h" + /** + * CTestSDKNotesNoteControl test class for CAknNoteDialog protected API. + */ +class CTestSDKNotesNoteControl : public CAknNoteControl + { +public:// Constructors and destructor + + /** + * C++ default constructor. + */ + CTestSDKNotesNoteControl(); + + /** + * MopSupplyObject test function for testing the + * Test MopSupplyObject function + */ + TTypeUid::Ptr MopSupplyObject(TTypeUid aId); + + /** + * ConstructFromResourceL test function for testing the + * Test ConstructFromResourceL function + */ + void ConstructFromResourceL(TResourceReader& aRes); + + /** + * Draw test function for testing the + * Test Draw function + */ + void Draw(const TRect& aRect) const; + + /** + * SizeChanged test function for testing the + * Test SizeChanged function + */ + void SizeChanged(); + + /** + * DoLayout test function for testing the + * Test DoLayout function + */ + TSize MinimumSize(); + + /** + * CountComponentControls test function for testing the + * Test CountComponentControls function + */ + TInt CountComponentControls() const; + + /** + * ComponentControl test function for testing the + * Test ComponentControl function + */ + CCoeControl* ComponentControl(TInt anIndex) const; + }; +#endif /*C_TESTSDKNOTESNOTECONTROL_H*/