S60MMFLab.rss
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:2k
源码类别:

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. //  RESOURCE IDENTIFIER
  3. NAME S60M    // 4 letter ID
  4. //  INCLUDES
  5. #include <eikon.rh>
  6. #include <avkon.rh>
  7. #include <avkon.rsg>
  8. #include <appinfo.rh>
  9. #include "S60MMFLab.hrh"
  10. RESOURCE RSS_SIGNATURE { }
  11. RESOURCE TBUF { buf = "S60MMFLab"; }
  12. RESOURCE EIK_APP_INFO
  13.     {
  14.     hotkeys = r_s60mmflab_hotkeys;
  15.     menubar = r_s60mmflab_menubar;
  16.     cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;     
  17.     }
  18. //----------------------------------------------------
  19. //   
  20. //    r_s60mmflab_hotkeys
  21. //
  22. //----------------------------------------------------
  23. //
  24. RESOURCE HOTKEYS r_s60mmflab_hotkeys
  25.     {
  26.     control =
  27.         {
  28.         HOTKEY { command = EAknCmdExit; key='e'; }
  29.         };
  30.     }
  31. //----------------------------------------------------
  32. //   
  33. //    r_s60mmflab_menubar
  34. //
  35. //----------------------------------------------------
  36. //
  37. RESOURCE MENU_BAR r_s60mmflab_menubar
  38.     {
  39.     titles =
  40.         {
  41.         MENU_TITLE { menu_pane = r_s60mmflab_menu; txt = "File"; }
  42.         };
  43.     }
  44. //----------------------------------------------------
  45. //   
  46. //    r_s60mmflab_menu
  47. //
  48. //----------------------------------------------------
  49. //
  50. RESOURCE MENU_PANE r_s60mmflab_menu
  51.     {
  52.     items =
  53.         {
  54.         MENU_ITEM { command = ES60MMFLabCmdAppChange;cascade = r_S60MMFLab_cascade_menu; txt = "Select"; },
  55.         MENU_ITEM { command = ES60MMFLabCmdAppPlay; txt = "Play"; },
  56.         MENU_ITEM { command = ES60MMFLabCmdAppStop; txt = "Stop"; },
  57.         MENU_ITEM { command = EAknCmdExit; txt = "Exit"; }
  58.         };
  59.     }
  60. RESOURCE MENU_PANE r_S60MMFLab_cascade_menu
  61.     {
  62.     items=
  63.         {
  64.         MENU_ITEM { command = ES60MMFLabCmdAppTonePlayer; txt = "Tone player"; },
  65.         MENU_ITEM { command = ES60MMFLabCmdAppAudioPlayer; txt = "Audio player"; }
  66.         };
  67.     }
  68.     
  69. RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info
  70.     {
  71.     short_caption = "S60MMFLab";
  72.     caption_and_icon = 
  73.     CAPTION_AND_ICON_INFO
  74.         {
  75.         caption = "S60 Multimedia Framework Lab";
  76.         number_of_icons = 1;
  77.     icon_file = "\resource\apps\S60MMFLab.mif";
  78.     };
  79.     }
  80. // End of File