aknexsliderapp.h

来自「symbian 中 滚动条的使用 可以用在亮度」· C头文件 代码 · 共 41 行

H
41
字号
/*  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 + =
减小字号Ctrl + -
显示快捷键?