00001 /* 00002 * ============================================================================== 00003 * Name : cssync.rss 00004 * Part of : CSSync 00005 * Interface : 00006 * Description : 00007 * Version : 00008 * 00009 * Copyright (c) 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 CSSY 00020 00021 // INCLUDE FILES 00022 #include <eikon.rh> 00023 #include <avkon.rh> 00024 #include <avkon.rsg> 00025 #include <appinfo.rh> 00026 00027 #include "CSSync.hrh" 00028 #include "CSSync.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 // 00057 // Define default menu and CBA key. 00058 // 00059 // ----------------------------------------------------------------------------- 00060 // 00061 RESOURCE EIK_APP_INFO 00062 { 00063 menubar = r_cssync_menubar; 00064 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT; 00065 } 00066 00067 00068 // ----------------------------------------------------------------------------- 00069 // 00070 // r_cssync_menubar 00071 // Menubar for CSSync example 00072 // 00073 // ----------------------------------------------------------------------------- 00074 // 00075 RESOURCE MENU_BAR r_cssync_menubar 00076 { 00077 titles = 00078 { 00079 MENU_TITLE 00080 { 00081 menu_pane=r_cssync_menu; 00082 } 00083 }; 00084 } 00085 00086 00087 // ----------------------------------------------------------------------------- 00088 // 00089 // r_cssync_menu 00090 // Menu for "Options" 00091 // 00092 // ----------------------------------------------------------------------------- 00093 // 00094 RESOURCE MENU_PANE r_cssync_menu 00095 { 00096 items = 00097 { 00098 MENU_ITEM 00099 { 00100 command = EDisplayTime; 00101 txt = STRING_r_cssy_submenu_display; 00102 }, 00103 MENU_ITEM 00104 { 00105 command = EAknCmdExit; 00106 txt = STRING_r_cssy_submenu_exit; 00107 } 00108 }; 00109 } 00110 00111 // ---------------------------------------------------------------------------- 00112 // 00113 // r_cssync_localisable_app_info 00114 // 00115 // ---------------------------------------------------------------------------- 00116 // 00117 RESOURCE LOCALISABLE_APP_INFO r_cssync_localisable_app_info 00118 { 00119 short_caption = STRING_r_cssy_short_caption_string; 00120 caption_and_icon = 00121 CAPTION_AND_ICON_INFO 00122 { 00123 caption = STRING_r_cssy_caption_string; 00124 00125 number_of_icons = 2; 00126 icon_file = "\\resource\\apps\\cssync.mif"; 00127 }; 00128 } 00129 00130 // End of File