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

Symbian

开发平台:

C/C++

  1. // Copyright: (c) 2006 Nokia Ltd.  All rights reserved.
  2. // This file contains all the resources for the S60MemoryLab.
  3. //  RESOURCE IDENTIFIER
  4. NAME S60M    // 4 letter ID
  5. //  INCLUDES
  6. #include <eikon.rh>
  7. #include <avkon.rh>
  8. #include <avkon.rsg>
  9. #include <avkon.hrh>
  10. #include <appinfo.rh>
  11. #include "S60MemoryLab.hrh"
  12. #include "S60MemoryLab.rls"
  13. //  RESOURCE DEFINITIONS
  14. // -----------------------------------------------------------------------------
  15. //
  16. //    Define the resource file signature
  17. //    This resource should be empty.
  18. //
  19. // -----------------------------------------------------------------------------
  20. //
  21. RESOURCE RSS_SIGNATURE
  22.     {
  23.     }
  24. // -----------------------------------------------------------------------------
  25. //
  26. //    Default Document Name
  27. //
  28. // -----------------------------------------------------------------------------
  29. //
  30. RESOURCE TBUF r_default_document_name
  31.     {
  32.     buf="HEWB";
  33.     }
  34. // -----------------------------------------------------------------------------
  35. //
  36. //    Define default menu and CBA key.
  37. //
  38. // -----------------------------------------------------------------------------
  39. //
  40. RESOURCE EIK_APP_INFO
  41.     {
  42.     menubar=r_s60memorylab_menubar;
  43.     cba=R_AVKON_SOFTKEYS_OPTIONS_BACK;
  44.     }
  45.     
  46. //----------------------------------------------------
  47. //   
  48. //    r_s60memorylab_menubar
  49. //    Main menubar
  50. //
  51. //----------------------------------------------------
  52. //
  53. RESOURCE MENU_BAR r_s60memorylab_menubar
  54.     {
  55.     titles=
  56.         {
  57.         MENU_TITLE { menu_pane=r_s60memorylab_menu; }
  58.         };
  59.     }
  60. //----------------------------------------------------
  61. //   
  62. //    r_s60memorylab_menu
  63. //    Menu for "Options"
  64. //
  65. //----------------------------------------------------
  66. //
  67. RESOURCE MENU_PANE r_s60memorylab_menu
  68.     {
  69.     items=
  70.         {
  71.         MENU_ITEM { command=EAknCmdExit; txt=qtn_exit; },
  72.         MENU_ITEM { command=ES60MemoryLabCmdToggleLabels; txt=qtn_cmd_togglelabels; },
  73.         MENU_ITEM { command=ES60MemoryLabCmdCleanupStackTest; txt=qtn_cmd_cleanupstacktest; }
  74.         };
  75.     }
  76. // -----------------------------------------------------------------------------
  77. //
  78. // Resources for messages.
  79. //
  80. // -----------------------------------------------------------------------------
  81. //
  82. RESOURCE TBUF32 r_command1_text { buf=qtn_command1_text; }
  83. RESOURCE TBUF32 r_caption_string { buf=qtn_caption_string; }
  84. // ---------------------------------------------------------------------------- 
  85. //
  86. // r_localisable_app_info
  87. //
  88. // ---------------------------------------------------------------------------- 
  89. //
  90. RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info
  91.     {
  92.     short_caption = qtn_caption_string;
  93.     caption_and_icon = 
  94.     CAPTION_AND_ICON_INFO
  95.         {
  96.         caption = qtn_caption_string;
  97.         number_of_icons = 1;
  98.     icon_file = "\resource\apps\S60MemoryLab.mif";
  99.     };
  100.     }
  101. // End of File