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

📄 aknexsliderview.h

📁 symbian 中 滚动条的使用 可以用在亮度
💻 H
字号:
/*  Copyright (c) 2004, Nokia. All rights reserved */

#ifndef __AKNEXSLIDERVIEW_H__
#define __AKNEXSLIDERVIEW_H__

// INCLUDES
#include <aknview.h>

// CONSTANTS
const TUid KViewId = { 1 }; // UID of view

// FORWARD DECLARATIONS
class CAknExSliderContainer;

// CLASS DECLARATION

/**
* CAknExSliderView view class.
*/
class CAknExSliderView : public CAknView
    {
    public: // Constructors and destructor

        /**
        * CAknExSliderView
        * Default onstructor.
        */
        CAknExSliderView();

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

    public: // From CAknView

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

        /**
        * From CAknView, HandleCommand.
        * Handles the commands.
        * @param aCommand Command to be handled.
        */
        void HandleCommandL( TInt aCommand );

    public: // New Functions
        /**
        * Set Title and Show Outline Number
        */
        void SetTitleL( const TInt aResouceId );

    private: // New Functions

        /**
        * CloseContainer
        * Deletes the Container class object.
        */
        void CloseContainer();

    private: // From AknView

        /**
        * From AknView, 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 AknView, DoDeactivate.
        * Deletes the Container class object.
        */
        void DoDeactivate();

    private: // Data

        /**
        * iContainer
        * Owned by CAknExSliderView object.
        */
        CAknExSliderContainer* iContainer;

    };

#endif // __AKNEXSLIDERVIEW_H__

// End of File

⌨️ 快捷键说明

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