00001 /* 00002 * ============================================================================== 00003 * Name : csasync.rss 00004 * Part of : CSAsync 00005 * Interface : 00006 * Description : 00007 * Version : 00008 * 00009 * Copyright (c) 2004-2006 Nokia Corporation and/or its subsidiary(-ies). 00010 * All rights reserved. 00011 * This component and the accompanying materials are made available 00012 * under the terms of "Eclipse Public License v1.0" 00013 * which accompanies this distribution, and is available 00014 * at the URL "http://www.eclipse.org/legal/epl-v10.html". 00015 * ============================================================================== 00016 */ 00017 00018 00019 NAME CSAS 00020 00021 // INCLUDE FILES 00022 #include <eikon.rh> 00023 #include <avkon.rh> 00024 #include <avkon.rsg> 00025 #include <appinfo.rh> 00026 00027 #include "CSAsync.hrh" 00028 #include "CSAsync.rls" 00029 00030 00031 // ----------------------------------------------------------------------------- 00032 // 00033 // Define the resource file signature 00034 // This resource should be empty. 00035 // 00036 // ----------------------------------------------------------------------------- 00037 // 00038 RESOURCE RSS_SIGNATURE 00039 { 00040 // No implementation required 00041 } 00042 00043 // ----------------------------------------------------------------------------- 00044 // 00045 // Default Document Name 00046 // 00047 // ----------------------------------------------------------------------------- 00048 // 00049 RESOURCE TBUF 00050 { 00051 buf=""; 00052 } 00053 00054 // ----------------------------------------------------------------------------- 00055 // 00056 // Define default menu and CBA key. 00057 // 00058 // ----------------------------------------------------------------------------- 00059 // 00060 RESOURCE EIK_APP_INFO 00061 { 00062 menubar = r_csasync_menubar; 00063 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT; 00064 } 00065 00066 00067 // ----------------------------------------------------------------------------- 00068 // 00069 // r_csasync_menubar 00070 // Menubar for CSAsync example 00071 // 00072 // ----------------------------------------------------------------------------- 00073 // 00074 RESOURCE MENU_BAR r_csasync_menubar 00075 { 00076 titles = 00077 { 00078 MENU_TITLE 00079 { 00080 menu_pane = r_csasync_menu; 00081 } 00082 }; 00083 } 00084 00085 00086 // ----------------------------------------------------------------------------- 00087 // 00088 // r_csasync_menu 00089 // Menu for "Options" 00090 // 00091 // ----------------------------------------------------------------------------- 00092 // 00093 RESOURCE MENU_PANE r_csasync_menu 00094 { 00095 items = 00096 { 00097 MENU_ITEM 00098 { 00099 command = EStartClock; 00100 txt = STRING_r_csas_submenu_start; 00101 }, 00102 MENU_ITEM 00103 { 00104 command = EStopClock; 00105 txt = STRING_r_csas_submenu_stop; 00106 }, 00107 MENU_ITEM 00108 { 00109 command = EAknCmdExit; 00110 txt = STRING_r_csas_submenu_exit; 00111 } 00112 }; 00113 } 00114 00115 // ---------------------------------------------------------------------------- 00116 // 00117 // r_csasync_localisable_app_info 00118 // 00119 // ---------------------------------------------------------------------------- 00120 // 00121 RESOURCE LOCALISABLE_APP_INFO r_csasync_localisable_app_info 00122 { 00123 short_caption = STRING_r_csas_short_caption_string; 00124 caption_and_icon = 00125 CAPTION_AND_ICON_INFO 00126 { 00127 caption = STRING_r_csas_caption_string; 00128 00129 number_of_icons = 2; 00130 icon_file = "\\resource\\apps\\csasync.mif"; 00131 }; 00132 } 00133 00134 // End of File