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

📄 listboxapp.rss

📁 《基于symbian手机开发与应用》一书的源代码
💻 RSS
字号:
/*
* ============================================================================
*  Name     : ListBoxApp.rss
*  Part of  : ListBoxApp
*  Created  : 2006-2-23 by 
*  Description:
*     This file contains all the resources for the ListBoxApp.
*     Initial content was generated by Series 60 AppWizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

//  RESOURCE IDENTIFIER
NAME    AWIZ // 4 letter ID

//  INCLUDES

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


//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf = "ListBoxApp"; }

RESOURCE EIK_APP_INFO
    {
    hotkeys = r_listboxapp_hotkeys;
    menubar = r_listboxapp_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;     
    }

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

//----------------------------------------------------
//   
//    r_listboxapp_menubar
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_listboxapp_menubar
    {
    titles =
        {
        MENU_TITLE { menu_pane = r_listboxapp_menu; txt = ""; }
        };
    }

//----------------------------------------------------
//   
//    r_listboxapp_menu
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_listboxapp_menu
    {
    items =
        {
        MENU_ITEM { command = EListBoxAppCmdAppTest; txt = qtn_appl_test; },
        MENU_ITEM { command = EAknCmdExit; txt = qtn_options_exit; }
        };
    }
RESOURCE LISTBOX r_simple_listbox
{
   flags=EAknListBoxSelectionList|EAknListBoxLoopScrolling;
   array_id=r_simple_listbox_items;
}
RESOURCE ARRAY r_simple_listbox_items
{
 items=
      {
	  LBUF
      {
	    txt=LISTBOX_ITEM1;
	  },
	  LBUF
	  {
	    txt=LISTBOX_ITEM2;
	  }
	  };
}
RESOURCE MENU_BAR r_listboxapp_context_menubar
    {
    titles =
        {
        MENU_TITLE { menu_pane = r_context_menu; txt = "context"; }
        };
    }
RESOURCE MENU_PANE r_context_menu
{
  items=
      {
	    MENU_ITEM {command=EListBoxAppCmdAppPlay;txt=qtn_app_play;},
		MENU_ITEM {command=EListBoxAppCmdAppExit;txt=qtn_app_exit;}
	  };
}
			   
RESOURCE TBUF r_icon_file_name
{
  buf="\\system\\apps\\ListBoxApp\\ListBoxApp.mbm";
}
RESOURCE TBUF r_note_text1
{
  buf=R_NOTE_STRING1;
}

RESOURCE TBUF r_note_text2
{
  buf=R_NOTE_STRING2;
}

// End of File

⌨️ 快捷键说明

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