ldcno17.rss

来自「SYmbian GUI 多视图实例」· RSS 代码 · 共 109 行

RSS
109
字号
/* Copyright (c) 2008, Nokia. All rights reserved */

NAME LDCN

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

#include "LDCNO17.hrh"


// ---------------------------------------------------------
//   
//    Define the resource file signature 
//    This resource should be empty.
//
// ---------------------------------------------------------
//
RESOURCE RSS_SIGNATURE
    {
    }

// ---------------------------------------------------------
//   
//    Default Document Name
//
// ---------------------------------------------------------
//
RESOURCE TBUF r_ldcno17_default_doc_name
    {
    buf="";
    }

// ---------------------------------------------------------
//   
//    Define default menu and CBA key.
//
// ---------------------------------------------------------
//
RESOURCE EIK_APP_INFO
    {
    menubar = r_ldcno17_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
    }


// ---------------------------------------------------------
//   
//   r_ldcno17_menubar
//   Menubar for LDCNO17 example
//
// ---------------------------------------------------------
//
RESOURCE MENU_BAR r_ldcno17_menubar
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_ldcno17_menu;
            }
        };
    }


// ---------------------------------------------------------
//   
//   r_ldcno17_menu
//   Menu for "Options"
//
// ---------------------------------------------------------
//
RESOURCE MENU_PANE r_ldcno17_menu
    {
    items = 
        {
        MENU_ITEM 
            {
            command = ELDCNO17Command1;
            txt = "View 1";
            },
		MENU_ITEM 
            {
            command = ELDCNO17Command2;
            txt = "View 2";
            },
		MENU_ITEM 
            {
            command = ELDCNO17Command3;
            txt = "View 3";
            },
		MENU_ITEM 
            {
            command = ELDCNO17Command4;
            txt = "View 4";
            },
		MENU_ITEM 
            {
            command = ELDCNO17Command5;
            txt = "View 5";
            },
        MENU_ITEM
            {
            command = EAknSoftkeyExit;
            txt = "Exit";
            }
        };
    }

⌨️ 快捷键说明

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