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

Symbian

开发平台:

C/C++

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