lafagnosticuifoundation/cone/tef/TConeZoomFont.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Contains classes for testing the implementation of this PREQ
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent - Internal Symbian test code 
       
    21  @SYMPREQ PREQ527
       
    22 */
       
    23 
       
    24 #if !defined(__TCONEZOOMFONT_H__)
       
    25 #define __TCONEZOOMFONT_H__
       
    26 
       
    27 #include <test/testexecutestepbase.h>
       
    28 #include "TConeTestServer.h"
       
    29 #include "appfwk_test_AppUi.h"
       
    30 
       
    31 class CTConeZoomFontStep : public CTmsTestStep
       
    32 	{
       
    33 public:
       
    34 	CTConeZoomFontStep();
       
    35 	~CTConeZoomFontStep();
       
    36 	virtual TVerdict doTestStepL();
       
    37 	void ConstructAppL(CCoeEnv* aCoe);
       
    38 
       
    39 private:
       
    40 	};
       
    41 
       
    42 class CConeZoomFontView;
       
    43 
       
    44 class CConeZoomFontAppUi : public CTestCoeAppUi
       
    45     {
       
    46 public:
       
    47 	CConeZoomFontAppUi(CTmsTestStep* aStep);
       
    48 	~CConeZoomFontAppUi();
       
    49 	void ConstructL();
       
    50 private: // utility
       
    51 	void RunTestStepL(TInt aStepNum);
       
    52 
       
    53 private:
       
    54 	CConeZoomFontView* iView;
       
    55     };
       
    56 
       
    57 
       
    58 _LIT(KTConeZoomFontStep,"TConeZoomFont");
       
    59 
       
    60 #endif
       
    61 
       
    62