examples/SFExamples/Quick_Recipes_on_Symbian_OS_Multimedia_Example_Code/AudioPlaying/data/s60_3rd/AudioPlaying.rss

00001 // 
00002 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
00003 // All rights reserved.
00004 // This component and the accompanying materials are made available
00005 // under the terms of the License "Eclipse Public License v1.0"
00006 // which accompanies this distribution, and is available
00007 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
00008 // 
00009 // Initial Contributors:
00010 // Nokia Corporation - initial contribution.
00011 // 
00012 // Contributors:
00013 // 
00014 // Description:
00015 // 
00016 
00017 #include <eikon.rh>
00018 #include <AppInfo.rh>
00019 #include <avkon.rh>
00020 #include <avkon.rsg>
00021 
00022 #include "AudioPlaying.hrh"
00023 #include "AudioPlaying.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_audioplaying_menubar;
00034         cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
00035         }
00036 
00037 // --------------------------------------------------------------------------
00038 //
00039 // Main menu bar
00040 //
00041 // --------------------------------------------------------------------------
00042 //
00043 RESOURCE MENU_BAR r_audioplaying_menubar
00044         {
00045         titles =
00046                 {
00047                 MENU_TITLE { menu_pane = r_audioplaying_menupane; }
00048                 };
00049         }
00050 
00051 // --------------------------------------------------------------------------
00052 //
00053 // Main menu for "Options"
00054 //
00055 // --------------------------------------------------------------------------
00056 //
00057 RESOURCE MENU_PANE r_audioplaying_menupane
00058         {
00059         items =
00060                 {
00061                 MENU_ITEM
00062                         {
00063                         command = EAudioPlayingPlayFromFile;
00064                         txt = string_r_audioplaying_playformfile;
00065                         },
00066                 MENU_ITEM
00067                         {
00068                         command = EAudioPlayingPause;
00069                         txt = string_r_audioplaying_pause;
00070                         },
00071                 MENU_ITEM
00072                         {
00073                         command = EAudioPlayingResume;
00074                         txt = string_r_audioplaying_resume;
00075                         },
00076                 MENU_ITEM
00077                         {
00078                         command = EAudioPlayingStop;
00079                         txt = string_r_audioplaying_stop;
00080                         },
00081                 MENU_ITEM
00082                         {
00083                         command = EAudioPlayingRewind;
00084                         txt = string_r_audioplaying_rewind;
00085                         },
00086                 MENU_ITEM
00087                         {
00088                         command = EAudioPlayingFastForward;
00089                         txt = string_r_audioplaying_fastforward;
00090                         },
00091                 MENU_ITEM
00092                         {
00093                         command = EEikCmdExit;
00094                         txt = string_r_audioplaying_exit;
00095                         }
00096                 };
00097         }
00098 
00099 // ----------------------------------------------------------------------------
00100 //
00101 // Application information
00102 //
00103 // ----------------------------------------------------------------------------
00104 //
00105 RESOURCE LOCALISABLE_APP_INFO r_audioplaying_localisable_app_info
00106         {
00107         short_caption = string_r_audioplaying_caption;
00108         caption_and_icon =
00109         CAPTION_AND_ICON_INFO
00110                 {
00111                 caption = string_r_audioplaying_caption;
00112                 number_of_icons = 1;
00113                 icon_file = "\\resource\\apps\\AudioPlaying.mif";
00114                 };
00115         }       
00116         
00117 #include "AudioPlaying_string.rss"
00118 
00119 // End of File

Generated by  doxygen 1.6.2