2 * Copyright (c) 1997-1999 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * 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
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #if !defined(__EIKINFO_H__)
22 #if !defined(__EIKENV_H__)
26 #include <aknnotedialog.h>
29 * Eikon info dialog, contains a title, message and Yes/No buttons.
31 class CEikInfoDialog : public CAknNoteDialog, public MEikInfoDialog
36 * Left here for backwards compatibility.
49 IMPORT_C CEikInfoDialog(const TDesC& aTitle,const TDesC& aMsg,TExitKeys aExitKeys=EAllowEnter);
54 CEikInfoDialog(TExitKeys aExitKeys=EAllowEnter);
57 * Sets title and message and calls ExecuteLD for the dialog.
59 IMPORT_C static TBool RunDlgLD(const TDesC& aTitle,const TDesC& aMsg,TExitKeys aExitKeys=EAllowEnter);
62 * Handles pointer events.
64 IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
66 private: // from MEikInfoDialog
67 TBool RunDlgLD(TInt aResource, const TDesC& aTitle, const TDesC& aMsg);
70 void PreLayoutDynInitL();
76 IMPORT_C void* ExtensionInterface( TUid aInterface );
79 IMPORT_C virtual void CEikDialog_Reserved_1();
80 IMPORT_C virtual void CEikDialog_Reserved_2();
84 const TDesC* iMessage;