imageconverterapp.h

来自「symbian上显示图象同时具有放大和旋转功能」· C头文件 代码 · 共 59 行

H
59
字号
/*
* ============================================================================
*  Name     : CImageConverterApp from ImageConverterApp.h
*  Part of  : ImageConverter
*  Created  : May 14, 2006 by Forum Nokia
*  Description:
*     Declares main application class.
*  Version  : 2.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef IMAGECONVERTERAPP_H
#define IMAGECONVERTERAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
#ifdef __SERIES60_3X__  // 3rd Ed and newer
const TUid KUidImageConverter = { 0xE01F5467 };
#else
const TUid KUidImageConverter = { 0x101F5467 };
#endif

// CLASS DECLARATION

/**
* CImageConverterApp application class.
* Provides factory to create concrete document object.
* 
*/
class CImageConverterApp : public CAknApplication
    {
    
    public: // Functions from base classes
    private:

        /**
        * From CApaApplication, 
        * creates CImageConverterDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
        
        /**
        * From CApaApplication,
        * returns application's UID (KUidImageConverter).
        * @return The value of KUidImageConverter.
        */
        TUid AppDllUid() const;
    };

#endif

// End of File

⌨️ 快捷键说明

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