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

📄 aknexlistsetpageview.h

📁 symbian ui的 例子 初学者可以 好好看看,这个是培训的资料,应该比较宝贵
💻 H
字号:
/*  Copyright (c) 2005, Nokia. All rights reserved */

#ifndef __AKNEXLISTSETPAGEVIEW_H__
#define __AKNEXLISTSETPAGEVIEW_H__

// INCLUDES
#include "AknExListBaseView.h" 

// FORWARD DECLARATIONS
class CAknExListSetPageContainer;

// CLASS DECLARATION

/**
* CAknExListSetPageView class.
*/
class CAknExListSetPageView : public CAknExListBaseView
    {
    public: // Constructors and destructor
        /**
        * NewLC
        * 2-phase constructor.
        */
        static CAknExListSetPageView* NewLC();
        
        /**
        * ~CAknExListSetPageView
        * Destructor.
        */
        virtual ~CAknExListSetPageView();

    public: // From CAknView
        /**
        * From CAknView.
        * Returns the ID of view.
        * @return The ID of view.
        */
        TUid Id() const;

    private:  // Constructors and destructor
        
        /**
        * CAknExListSetPageView
        * Default constructor.
        */
        CAknExListSetPageView();
        
        /**
        * Second-phase constructor.
        */
        void ConstructL();

    private: // From CAknExListBaseView
        /**
        * From CAknExListBaseView, SetTitlePaneL
        * Set text of title pane according to current outline
        * @param aOutlineId The ID of outline to displayed next.
        */
        void SetTitlePaneL( const TInt aOutlineId );

        /**
        * From CAknExListBaseView, DisplayListBoxL
        * Create and display setting page.
        * @param aOutlineId The ID of outline to displayed next.
        */
        void DisplayListBoxL( const TInt aOutlineId );

    private: //From CAknView
        /**
        * From CAknView, DoActivateL.
        * Creates the Container class object.
        * @param aPrevViewId aPrevViewId is not used.
        * @param aCustomMessageId aCustomMessageId is not used.
        * @param aCustomMessage aCustomMessage is not used.
        */
        void DoActivateL( 
            const TVwsViewId& aPrevViewId,
            TUid aCustomMessageId,
            const TDesC8& aCustomMessage );

        /**
        * From CAknView, DoDeactivate.
        * Deletes the Container class object.
        */
        void DoDeactivate();

    private: // Data

        /**
        * iContainer
        * Owned by CAknExListSetPageView object.
        */
        CAknExListSetPageContainer* iContainer;
    };


#endif // __AKNEXLISTSETPAGEVIEW_H__

// End of File
 

⌨️ 快捷键说明

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