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

📄 noughtsandcrossesappui.h

📁 Symbian智能手机操作系统源代码值的参考_界面
💻 H
字号:
/* Copyright (c) 2005, Nokia. All rights reserved */


#ifndef __NOUGHTSANDCROSSESAPPUI_H__
#define __NOUGHTSANDCROSSESAPPUI_H__

// INCLUDES
#include <aknviewappui.h>

// FORWARD DECLARATIONS
class CNoughtsAndCrossesView;
class CNoughtsAndCrossesSettingsView;


// CLASS DECLARATION
/**
* CNoughtsAndCrossesAppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class CNoughtsAndCrossesAppUi : public CAknViewAppUi
    {
    public: // Constructors and destructor
    
        /**
        * ConstructL.
        * 2nd phase constructor.
        */
        void ConstructL();
        
    public: // Functions from base classes

        /**
        * From CEikAppUi, HandleCommandL.
        * Takes care of command handling.
        * @param aCommand Command to be handled.
        */
        virtual void HandleCommandL(TInt aCommand);

    private: // Data

        /**
        * iGameView, The application game view
        * Not owned by CNoughtsAndCrossesAppUi object.
        */
        CNoughtsAndCrossesView* iGameView;

        /**
        * iSettingsView, The application settings view
        * Not owned by CNoughtsAndCrossesAppUi object.
        */
        CNoughtsAndCrossesSettingsView* iSettingsView;
    };

#endif // __NOUGHTSANDCROSSESAPPUI_H__

// End of File

⌨️ 快捷键说明

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