📄 aknexgriddialogfillingorder.h
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __AKNEXGRIDDIALOGFILLINGORDER_H__
#define __AKNEXGRIDDIALOGFILLINGORDER_H__
// INCLUDES
#include <AknForm.h> // for CAknDialog
// FORWARD DECLARATIONS
class CAknExGridContainerAsSelection;
// CLASS DECLARATION
/**
* CAknExGridDialogFillingOrder dialog class.
*
*/
class CAknExGridDialogFillingOrder : public CAknDialog
{
public: // Constructors and destructor
/**
* CAknExGridDialogFillingOrder.
* C++ default constructor.
* @param aContainer The pointer to CAknExGridContainerAsSelection.
*/
CAknExGridDialogFillingOrder(
CAknExGridContainerAsSelection* aContainer);
public: // Functions from base classes
/**
* From CAknDialog, PreLayoutDynInitL.
* Sets parameters before showing dialog.
*/
void PreLayoutDynInitL();
/**
* From CAknDialog, OkToExitL.
* Updates member variables of CAknExGridContainerAsSelection.
* @param aKeycode The ID of the button that was activated.
* @return Should return ETrue if the dialog should exit,
* and EFalse if it should not
*/
TBool OkToExitL( TInt aKeycode );
private: // Data
/**
* iContainer, CAknExGridContainerAsSelection object.
* Not owned by CAknExGridDialogChangeSize object.
*/
CAknExGridContainerAsSelection* iContainer;
};
#endif // __AKNEXGRIDDIALOGFILLINGORDER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -