helloworldloc.rss

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· RSS 代码 · 共 77 行

RSS
77
字号
/**
* 
* @brief Resource file for HelloWorldLoc application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/

//  RESOURCE IDENTIFIER
NAME    HWRD // 4 letter ID

//  INCLUDES

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

#include "HelloWorldLoc.hrh"
#include "HelloWorldLoc.loc"

//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf=""; }

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

RESOURCE MENU_BAR r_helloworldloc_menubar
{
    titles =
    {
        MENU_TITLE {menu_pane = r_helloworldloc_menu;}
    };
}


//   r_helloworldloc_menu
//   Menu for "Options"
//
RESOURCE MENU_PANE r_helloworldloc_menu
{
    items = 
    {
        MENU_ITEM {command = EHelloWorldLocCommand1;  txt = LANG_I_COMMAND1;}
    };
}

// ---------------------------------------------------------
//   
//    Strings used by the application
//    see the files HelloWorldLoc.loc, HelloWorldLoc.l01, HelloWorldLoc.l02, HelloWorldLoc.l03 for
//    the language specific text string definitions
// ---------------------------------------------------------
//
RESOURCE TBUF r_label_text
{ 
    buf = LABEL_TEXT;
}

RESOURCE TBUF r_command1_string_resource
{ 
    buf = LANG_I_COMMAND1;
}

RESOURCE TBUF r_panic1_string_resource
{ 
    buf = LANG_I_PANIC1;
}

// End of File

⌨️ 快捷键说明

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