examples/S60CppExamples/ClientServerSync/client/data/cssync.rss

00001 /*
00002 * ==============================================================================
00003 *  Name        : cssync.rss
00004 *  Part of     : CSSync
00005 *  Interface   :
00006 *  Description :
00007 *  Version     :
00008 *
00009 *  Copyright (c) 2006 Nokia Corporation.
00010 *  This material, including documentation and any related
00011 *  computer programs, is protected by copyright controlled by
00012 *  Nokia Corporation.
00013 * ==============================================================================
00014 */
00015 
00016 
00017 NAME CSSY
00018 
00019 // INCLUDE FILES
00020 #include <eikon.rh>
00021 #include <avkon.rh>
00022 #include <avkon.rsg>
00023 #include <appinfo.rh>
00024 
00025 #include "CSSync.hrh"
00026 #include "CSSync.rls"
00027 
00028 
00029 // -----------------------------------------------------------------------------
00030 //
00031 //    Define the resource file signature
00032 //    This resource should be empty.
00033 //
00034 // -----------------------------------------------------------------------------
00035 //
00036 RESOURCE RSS_SIGNATURE
00037         {
00038         // No implementation required
00039         }
00040 
00041 // -----------------------------------------------------------------------------
00042 //
00043 //    Default Document Name
00044 //
00045 // -----------------------------------------------------------------------------
00046 //
00047 RESOURCE TBUF
00048         {
00049         buf="";
00050         }
00051 
00052 
00053 // -----------------------------------------------------------------------------
00054 //
00055 //    Define default menu and CBA key.
00056 //
00057 // -----------------------------------------------------------------------------
00058 //
00059 RESOURCE EIK_APP_INFO
00060     {
00061     menubar = r_cssync_menubar;
00062     cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
00063     }
00064 
00065 
00066 // -----------------------------------------------------------------------------
00067 //
00068 //   r_cssync_menubar
00069 //   Menubar for CSSync example
00070 //
00071 // -----------------------------------------------------------------------------
00072 //
00073 RESOURCE MENU_BAR r_cssync_menubar
00074     {
00075     titles =
00076         {
00077         MENU_TITLE
00078             {
00079             menu_pane=r_cssync_menu;
00080             }
00081         };
00082     }
00083 
00084 
00085 // -----------------------------------------------------------------------------
00086 //
00087 //   r_cssync_menu
00088 //   Menu for "Options"
00089 //
00090 // -----------------------------------------------------------------------------
00091 //
00092 RESOURCE MENU_PANE r_cssync_menu
00093     {
00094     items =
00095         {
00096         MENU_ITEM
00097             {
00098             command = EDisplayTime;
00099             txt = STRING_r_cssy_submenu_display;
00100             },
00101         MENU_ITEM
00102             {
00103             command = EAknCmdExit;
00104             txt = STRING_r_cssy_submenu_exit;
00105             }
00106         };
00107     }
00108 
00109 // ----------------------------------------------------------------------------
00110 //
00111 // r_cssync_localisable_app_info
00112 //
00113 // ----------------------------------------------------------------------------
00114 //
00115 RESOURCE LOCALISABLE_APP_INFO r_cssync_localisable_app_info
00116     {
00117     short_caption = STRING_r_cssy_short_caption_string;
00118     caption_and_icon =
00119     CAPTION_AND_ICON_INFO
00120         {
00121         caption = STRING_r_cssy_caption_string;
00122 
00123         number_of_icons = 2;
00124                   icon_file = "\\resource\\apps\\cssync.mif";
00125               };
00126     }
00127 
00128 // End of File

Generated by  doxygen 1.6.2