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

📄 aknexlistsettingview.h

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

#ifndef __AKNEXLISTSETTINGVIEW_H__
#define __AKNEXLISTSETTINGVIEW_H__

// INCLUDES
#include "AknExListBaseView.h"

// FORWARD DECLARATIONS
class CAknExListSettingContainer;

// CLASS DECLARATION

/**
* CAknExListSettingView view class.
*/
class CAknExListSettingView : public CAknExListBaseView
    {
    public: // Constructors and destructor

        /**
        * CAknExListSettingView
        * Default constructor.
        */
        CAknExListSettingView();

        /**
        * ConstructL
        * Symbian constructor.
        */
        void ConstructL();

        /**
        * ~CAknExListSettingView
        * Destructor.
        */
        virtual ~CAknExListSettingView();

    public: // From AknView

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

    private: // New functions

        /**
        * SetTitlePaneL
        * Sets text of title pane.
        * @param aOutlineId The ID of outline to displayed next.
        */ 
        void SetTitlePaneL( const TInt aOutlineId );

    private: // From AknExListBaseView

        /**
        * DisplayListBoxL
        * Displays the listbox by outline ID.
        * @param aOutlineId The ID of outline to displayed next.
        */
        void DisplayListBoxL( const TInt aOutlineId );

    private: // Setting AknView

        /**
        * 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 CAknExListSettingView object.
        */
        CAknExListSettingContainer* iContainer;

    };

#endif // __AKNEXLISTSETTINGVIEW_H__

// End of File

⌨️ 快捷键说明

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