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

📄 multiviewsappui.h

📁 Symbian OS 源码:一个基于Symbian OS UI上面的标准VIEW源码。大家共同努力学好SYMBIAN
💻 H
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


#ifndef __MULTIVIEWS_APPUI_H__
#define __MULTIVIEWS_APPUI_H__


// INCLUDES
#include <aknViewAppUi.h>


// FORWARD DECLARATIONS
class CMultiViewsView1;
class CMultiViewsView2;


// CLASS DECLARATION

/**
* CMultiViewsAppUi application UI class.
* An instance of class CMultiViewsAppUi is the UserInterface part of the AVKON
* application framework for the MultiViews example application
*/
class CMultiViewsAppUi : public CAknViewAppUi
    {

    public: // Constructors and destructor

        /**
        * ConstructL.
        * 2nd phase constructor.
        */
        void ConstructL();

    public: // New functions from CAknAppUi

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


    private: // Data

        /**
        * iAppView1, The application view 1
        * Not owned by CMultiViewsAppUi object.
        */
        CMultiViewsView1* iAppView1;

        /**
        * iAppView2, The application view 2
        * Not owned by CMultiViewsAppUi object.
        */
        CMultiViewsView2* iAppView2;
    };


#endif // __MULTIVIEWS_APPUI_H__

// End of File

⌨️ 快捷键说明

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