📄 brctlsampleappquerydialog.h
字号:
/*
* ============================================================================
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -