aknexgriddialogfillingorder.h

来自「symbian ui的 例子 初学者可以 好好看看,这个是培训的资料,应该比较宝」· C头文件 代码 · 共 57 行

H
57
字号
/* Copyright (c) 2005, 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 + =
减小字号Ctrl + -
显示快捷键?