helloskin.rss

来自「《基于Symbian OS的手机开发与应用实践》这本书的配套源码。」· RSS 代码 · 共 86 行

RSS
86
字号
/*
* ============================================================================
*  Name     : HelloSkin.rss
*  Part of  : HelloSkin
*  Created  : 04.05.2006 by ToBeReplacedByAuthor
*  Description:
*     This file contains all the resources for the HelloSkin.
*     Initial content was generated by Series 60 Application Wizard.
*  Version  :
*  Copyright: ToBeReplacedByCopyright
* ============================================================================
*/

//  RESOURCE IDENTIFIER
NAME    AWIZ // 4 letter ID

//  INCLUDES

#include <eikon.rh>
#include "HelloSkin.hrh"
#include "HelloSkin.loc"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>



//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf = "HelloSkin"; }

RESOURCE EIK_APP_INFO
    {
    hotkeys = r_helloskin_hotkeys;
    menubar = r_helloskin_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;     
    }

//----------------------------------------------------
//   
//    r_helloskin_hotkeys
//
//----------------------------------------------------
//
RESOURCE HOTKEYS r_helloskin_hotkeys
    {
    control =
        {
        HOTKEY { command = EAknCmdExit; key='e'; }
        };
    }

//----------------------------------------------------
//   
//    r_helloskin_menubar
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_helloskin_menubar
    {
    titles =
        {
        MENU_TITLE { menu_pane = r_helloskin_menu; txt = "File"; }
        };
    }

//----------------------------------------------------
//   
//    r_helloskin_menu
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_helloskin_menu
    {
    items =
        {
        MENU_ITEM { command = EHelloSkinCmdAppTest; txt = qtn_appl_test; },
        MENU_ITEM { command = EAknCmdExit; txt = qtn_appl_exit; }
        };
    }


// End of File

⌨️ 快捷键说明

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