classicui_plat/notes_api/inc/EIKINFO.H
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 02 Sep 2010 20:41:15 +0300
changeset 58 ca0622003710
parent 49 31c16e0c5e3e
permissions -rw-r--r--
Revision: 201033 Kit: 201035

/*
* Copyright (c) 1997-1999 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:
*
*/


#if !defined(__EIKINFO_H__)
#define __EIKINFO_H__

#if !defined(__EIKENV_H__)
#include <eikenv.h>
#endif

#include <aknnotedialog.h>

/**
 * Eikon info dialog, contains a title, message and Yes/No buttons.
 */
class CEikInfoDialog : public CAknNoteDialog, public MEikInfoDialog
	{
	
public:
	/**
	 * Left here for backwards compatibility.
	 * Not used anymore.
     * 
    */
	enum TExitKeys
		{
		EAllowEnter,
		EIgnoreEnter
		};
public:
    /**
    * Constructor.
    */
	IMPORT_C CEikInfoDialog(const TDesC& aTitle,const TDesC& aMsg,TExitKeys aExitKeys=EAllowEnter);
	
	/**
    * Constructor.
    */
	CEikInfoDialog(TExitKeys aExitKeys=EAllowEnter);
	
	/**
     * Sets title and message and calls ExecuteLD for the dialog.
    */
	IMPORT_C static TBool RunDlgLD(const TDesC& aTitle,const TDesC& aMsg,TExitKeys aExitKeys=EAllowEnter);
          
    /**
     * Handles pointer events.
    */
    IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
    
private: // from MEikInfoDialog
	TBool RunDlgLD(TInt aResource, const TDesC& aTitle, const TDesC& aMsg);
	
private:
	void PreLayoutDynInitL();
	
private:
    /**
    * From CAknControl
    */
    IMPORT_C void* ExtensionInterface( TUid aInterface );
    
private:
	IMPORT_C virtual void CEikDialog_Reserved_1();
	IMPORT_C virtual void CEikDialog_Reserved_2();
	
private:
	const TDesC* iTitle;
	const TDesC* iMessage;
	};

#endif