1.1 --- a/epoc32/include/mw/eikhfdlg.h Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/mw/eikhfdlg.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,90 @@
1.4 -eikhfdlg.h
1.5 +/*
1.6 +* Copyright (c) 1997-1999 Nokia Corporation and/or its subsidiary(-ies).
1.7 +* All rights reserved.
1.8 +* This component and the accompanying materials are made available
1.9 +* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.10 +* which accompanies this distribution, and is available
1.11 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.12 +*
1.13 +* Initial Contributors:
1.14 +* Nokia Corporation - initial contribution.
1.15 +*
1.16 +* Contributors:
1.17 +*
1.18 +* Description:
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +#if !defined(__EIKHGDLG_H__)
1.24 +#define __EIKHGDLG_H__
1.25 +
1.26 +#if !defined(__EIKDIALG_H__)
1.27 +#include <eikdialg.h>
1.28 +#endif
1.29 +
1.30 +#if !defined(__COECNTRL_H__)
1.31 +#include <coecntrl.h>
1.32 +#endif
1.33 +
1.34 +#if !defined(__EIKENV_H__)
1.35 +#include <eikenv.h>
1.36 +#endif
1.37 +
1.38 +
1.39 +class CCoeRedrawer;
1.40 +class CSchedulerShaker;
1.41 +
1.42 +class TEikHeapFailModel
1.43 + {
1.44 +public:
1.45 + TInt iHeapFailRate;
1.46 + TInt iHeapFailType;
1.47 + TInt iWservFailRate;
1.48 + TInt iWservFailType;
1.49 + TInt iFileFailRate;
1.50 + TInt iFileFailType;
1.51 + };
1.52 +
1.53 +
1.54 +//
1.55 +// class CEikDebugKeys
1.56 +//
1.57 +
1.58 +class CEikDebugKeys : public CCoeControl, public MEikDebugKeys
1.59 + {
1.60 +public:
1.61 + // From CCoeControl
1.62 + IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
1.63 +private: // from MEikDebugKeys
1.64 + void ConstructL();
1.65 + void Release();
1.66 +private: // framework
1.67 + virtual TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
1.68 + void InfoNote(const TDesC& aDes);
1.69 +private:
1.70 + friend class CEikonEnv;
1.71 +// friend class CDebugKeysDlg;
1.72 +// friend class CDebugKeysAppUi;
1.73 + TEikHeapFailModel iModel;
1.74 + TBool iVerbose;
1.75 + CCoeRedrawer* iPhantomBorderDrawer;
1.76 + CSchedulerShaker* iSchedulerShaker;
1.77 + };
1.78 +
1.79 +
1.80 +//
1.81 +// class CEikDebugWin
1.82 +//
1.83 +
1.84 +class CEikDebugWin : public CCoeControl
1.85 + {
1.86 +public:
1.87 + void ConstructL();
1.88 + IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
1.89 +private:
1.90 + void Draw(const TRect& aRect) const;
1.91 + };
1.92 +
1.93 +
1.94 +#endif