chinesedisplay1app.h

来自「此代码是SYMBIAN平台.中文显示技巧.在第二第三版上大部分手机上测试通过.用」· C头文件 代码 · 共 51 行

H
51
字号
/*
============================================================================
 Name        : CChineseDisplay1App from ChineseDisplay1App.h
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : Declares main application class.
============================================================================
*/

#ifndef CHINESEDISPLAY1APP_H
#define CHINESEDISPLAY1APP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidChineseDisplay1 = { 0x032245a2 };

// CLASS DECLARATION

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

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

#endif



⌨️ 快捷键说明

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