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

📄 aknexsliderapp.h

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

#ifndef __AKNEXSLIDERAPP_H__
#define __AKNEXSLIDERAPP_H__

// INCLUDES
#include <Aknapp.h>

// CONSTANTS
const TUid KUidAknExSlider = { 0x10005C28 }; // UID of the application.

// CLASS DECLARATION

/**
* CAknExSliderApplication application class.
* Provides factory to create concrete document object.
*/
class CAknExSliderApplication : public CAknApplication
    {
    private: // From CApaApplication

        /**
        * From CApaApplication, CreateDocumentL.
        * Creates CAknExSliderDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();

        /**
        * From CApaApplication, AppDllUid.
        * Returns application's UID ( KUidAknExSlider ).
        * @return The value of KUidAknExSlider.
        */
        TUid AppDllUid() const;

    };

#endif // __AKNEXSLIDERAPP_H__

// End of File

⌨️ 快捷键说明

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