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

📄 finditemtestapp.rss

📁 这个代码实现了从一段字符提取手机号码、email、url等信息的功能。这个是symbian下实现的。
💻 RSS
字号:
/*
* ============================================================================
*  Name        : FindItemTestApp.rss
*  Part of     : FindItemTestApp
*  Interface   : 
*  Description : This file contains all the resources for the FindItemTestApp.
*  Version     : 
*
*  Copyright (c) 2002-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ============================================================================
*/

//  RESOURCE IDENTIFIER
NAME    AWIZ // 4 letter ID

//  INCLUDES

#include <appinfo.rh>
#include <eikon.rh>
#include "FindItemTestApp.hrh"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>


//  RESOURCE DEFINITIONS 

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


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


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


//----------------------------------------------------
//   
//    r_finditemtestapp_menubar
//    Menu bar for Find Item example application
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_finditemtestapp_menubar
    {
    titles=
        {
        MENU_TITLE 
			{ 
			menu_pane=r_finditemtestapp_menu; 
			}
        };
    }

//----------------------------------------------------
//   
//    r_finditemtestapp_list
//
//----------------------------------------------------
//
RESOURCE LISTBOX r_finditemtestapp_list
    {
    flags = EEikListBoxMultipleSelection;
    }

//----------------------------------------------------
//   
//    r_finditemtestapp_menu
//    Menu for "Options"
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_finditemtestapp_menu
    {
    items=
        {
        MENU_ITEM 
			{ 
			command=EAknCmdExit; 
			txt="Exit"; 
			},
	MENU_ITEM 
			{ 
			command=EFindItemTestAppCmdExampleText; 
			txt="Example text"; 
			},
        MENU_ITEM 
			{ 
			command=EFindItemTestAppCmdPhoneNumber; 
			txt="Search phone numbers"; 
			},
	MENU_ITEM 
			{ 
			command=EFindItemTestAppCmdMailAddress; 
			txt="Search mail addresses"; 
			},
	MENU_ITEM 
			{ 
			command=EFindItemTestAppCmdURI; 
			txt="Search URIs"; 
			},
	MENU_ITEM 	{ 
			command=EFindItemTestAppCmdURL; 
			txt="Search URLs"; 
			},
	MENU_ITEM 
			{ 
			command=EFindItemTestAppCmdSearchAll; 
			txt="Search all items"; 
			}
        };
    }

// ---------------------------------------------------------------------------- 
//
// r_finditemtestapp_localisable_app_info
//
// ---------------------------------------------------------------------------- 
//   
RESOURCE LOCALISABLE_APP_INFO r_finditemtestapp_localisable_app_info
    {
    short_caption = "FindItemTestApp";
    caption_and_icon = 
    CAPTION_AND_ICON_INFO
        {
        caption = "FindItemTestApp";
        number_of_icons = 1;
        icon_file = 
                "\\resource\\apps\\finditemtestapp_aif.mif";
        };
    }


// End of File

⌨️ 快捷键说明

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