00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include <eikon.rh>
00018 #include <AppInfo.rh>
00019 #include <avkon.rh>
00020 #include <avkon.rsg>
00021
00022 #include "AudioTone.hrh"
00023 #include "AudioTone.rls"
00024
00025 NAME HLWD
00026
00027 RESOURCE RSS_SIGNATURE { }
00028
00029 RESOURCE TBUF { buf = "HLWD"; }
00030
00031 RESOURCE EIK_APP_INFO
00032 {
00033 menubar = r_audiotone_menubar;
00034 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
00035 }
00036
00037
00038
00039
00040
00041
00042
00043 RESOURCE MENU_BAR r_audiotone_menubar
00044 {
00045 titles =
00046 {
00047 MENU_TITLE { menu_pane = r_audiotone_menupane; }
00048 };
00049 }
00050
00051
00052
00053
00054
00055
00056
00057 RESOURCE MENU_PANE r_audiotone_menupane
00058 {
00059 items =
00060 {
00061 MENU_ITEM
00062 {
00063 command = EAudioTonePlayTone;
00064 txt = string_r_audiotone_playtone;
00065 },
00066 MENU_ITEM
00067 {
00068 command = EAudioTonePlayDualTone;
00069 txt = string_r_audiotone_playdualtone;
00070 },
00071 MENU_ITEM
00072 {
00073 command = EAudioToneStopTone;
00074 txt = string_r_audiotone_stoptone;
00075 },
00076 MENU_ITEM
00077 {
00078 command = EEikCmdExit;
00079 txt = string_r_audiotone_exit;
00080 }
00081 };
00082 }
00083
00084
00085
00086
00087
00088
00089
00090 RESOURCE LOCALISABLE_APP_INFO r_audiotone_localisable_app_info
00091 {
00092 short_caption = string_r_audiotone_caption;
00093 caption_and_icon =
00094 CAPTION_AND_ICON_INFO
00095 {
00096 caption = string_r_audiotone_caption;
00097 number_of_icons = 1;
00098 icon_file = "\\resource\\apps\\AudioTone.mif";
00099 };
00100 }
00101
00102 #include "AudioTone_string.rss"
00103
00104