brctlsampleappquerydialog.h

来自「S60上实现嵌入式浏览器,可以在应用程序中嵌入浏览器,实现IE功能」· C头文件 代码 · 共 74 行

H
74
字号
/*
* ============================================================================
*  Name        : BrCtlSampleAppQueryDialog.h
*  Part of     : BrCtlSampleApp
*  Interface   : Browser Control API
*  Description : Display a Query Dialog
*  Version     : 
*
*  Copyright (c) 2005-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ============================================================================
*/

#ifndef BRCTLSAMPLEAPPQUERYDIALOG_H
#define BRCTLSAMPLEAPPQUERYDIALOG_H


//  INCLUDES

#include <eikdialg.h>
#include <aknmultilinequerycontrol.h>
#include <aknquerydialog.h>

// CLASS DECLARATION

/**
*  CBrCtlSampleAppQueryDialog class.
*  This class is used to query the user for text information
*/
class CBrCtlSampleAppQueryDialog : public CAknTextQueryDialog
    {
    public:  // Constructors and destructor
    
        /**
        * C++ default constructor.
	    * @param aDefInput Input into the dialog
	    * @param aRetBuf Return buffer
        */
	    CBrCtlSampleAppQueryDialog( TDes& aDefInput, HBufC*& aRetBuf );

        /**
        * Destructor.
        */
        virtual ~CBrCtlSampleAppQueryDialog() {};

    private:	// from CEikDialog

	    /**
	    * Fills the edwins with default values.
	    */
        void  PreLayoutDynInitL();

	    /**
	    * Set the password if the user pressed Ok.
	    * @param aKeyCode The ID of the pushed button.
	    * @return May the dialog exit?
	    */
        TBool OkToExitL( TInt aKeycode );

        // MAknQueryControlObserver
        TBool HandleQueryEditorStateEventL(CAknQueryControl* aQueryControl, TQueryControlEvent aEventType, TQueryValidationStatus aStatus);

    private:	// Data

        HBufC*& iRetBuf;
    };

#endif // BRCTLSAMPLEAPPQUERYDIALOG_H

// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?