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

📄 helloapp.h

📁 从s60平台移植到UIQ平台的例子代码:In this code we shall consider taking a simple HelloWorld GUI application writte
💻 H
字号:
/*
* ============================================================================
*  Name     : CHelloApp from HelloApp.h
*  Part of  : Hello
*  Created  : 21/05/2002 by 
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: 
* ============================================================================
*/

#ifndef HELLOAPP_H
#define HELLOAPP_H

// INCLUDES
#include <qikapplication.h>

// CONSTANTS
// UID of the application
const TUid KUidHello = { 0x0F948032 };

// CLASS DECLARATION

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

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

#endif

// End of File

⌨️ 快捷键说明

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