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

📄 helloworld.rss

📁 series60 应用程序开发的源代码 series60 应用程序开发的源代码
💻 RSS
字号:
/**
* 
* @brief Resource file for HelloWorld application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/

//  RESOURCE IDENTIFIER
NAME    HWRD // 4 letter ID

//  INCLUDES

#include <avkon.loc>
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
#include <eikon.rh>

#include "HelloWorld.hrh"
#include "HelloWorld.loc"

//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf=""; }

RESOURCE EIK_APP_INFO
{
    menubar = r_helloworld_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}


RESOURCE MENU_BAR r_helloworld_menubar
{
    titles =
    {
        MENU_TITLE
        {
            menu_pane = r_helloworld_menu;
        }
    };
}


//   r_helloworld_menu
//   Menu for "Options"
RESOURCE MENU_PANE r_helloworld_menu
{
    items = 
    {
        MENU_ITEM 
        { 
            command = EHelloWorldCommand1;
            txt = COMMAND_ONE;
        },
        MENU_ITEM 
        {
            command = EAknCmdExit;   
            txt = text_softkey_exit;
        }
    };
}

// ---------------------------------------------------------
//   
//    Strings used by the application
//
// ---------------------------------------------------------
//
RESOURCE TBUF r_label_text
{
    buf = LABEL_TEXT;
}

RESOURCE TBUF r_dialog_text
{
    buf = COMMAND_ONE;
}

// End of File

⌨️ 快捷键说明

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