multiviewsview2.h

来自「Symbian OS 源码:一个基于Symbian OS UI上面的标准VIEW」· C头文件 代码 · 共 121 行

H
121
字号
/* Copyright (c) 2004, Nokia. All rights reserved */


#ifndef __MULTIVIEWS_VIEW2_H__
#define __MULTIVIEWS_VIEW2_H__


// INCLUDES
#include <aknview.h>



// FORWARD DECLARATIONS
class CMultiViewsContainer2;

// CLASS DECLARATION

/**
* CMultiViewsView2 view class.
* An instance of the Application View object for the MultiViews
* example application
*/
class CMultiViewsView2: public CAknView
    {
    public:    // Constructors and destructor

        /**
        * NewL.
        * Two-phased constructor.
        * Construct a CMultiViewsView2 for the AVKON application aApp.
        * Using two phase construction,and return a pointer to the created object.
        * @return a pointer to the created instance of CMultiViewsView2
        */
        static CMultiViewsView2* NewL();

        /**
        * NewLC.
        * Two-phased constructor.
        * Construct a CMultiViewsView2 for the AVKON application aApp.
        * Using two phase construction,and return a pointer to the created object.
        * @return a pointer to the created instance of CMultiViewsView2
        */
        static CMultiViewsView2* NewLC();

        /**
        * ~CMultiViewsView2.
        * Virtual Destructor.
        */
        virtual ~CMultiViewsView2();


    public:// Functions from base classes from CAknView


        /**
        * Id
        * From CAknView, return Uid.
        * @return Uid Uid value
        */
        TUid Id() const;

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


        /**
        * DoActivateL
        * From CAknExView, activate an AknView.
        * @param aPrevViewId The id of the previous view
        * @param aCustomMessageId message identifier
        * @param aCustomMessage custom message provided when the view is changed
        */
        void DoActivateL( const TVwsViewId& aPrevViewId,
                          TUid aCustomMessageId,
                          const TDesC8& aCustomMessage );


        /**
        * DoDeactivate
        * From AknView, deactivate an AknView
        * Remove the container class instance from the App UI's stack and
        * deletes the instance
        */
        void DoDeactivate();

    private:    // Constructors and destructor

        /**
        * CMultiViewsView2.
        * C++ default constructor.
        */
        CMultiViewsView2();

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


    private:    // Data

        /**
        * iContainer,container for this view
        * owned by CMultiViewsView2 object.
        */
        CMultiViewsContainer2* iContainer;

        /** View Identifier **/
        TUid       iIdentifier;
       };


#endif // __MULTIVIEWS_VIEW2_H__


// End of File

⌨️ 快捷键说明

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