⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aknexgriddialogfillingorder.h

📁 symbian 格子的生成和使用源代码 让你明白九宫格生成原理 适合游戏开发
💻 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 + -