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

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. //  RESOURCE IDENTIFIER
  3. NAME AOLA    // 4 letter ID
  4. //  INCLUDES
  5. #include <eikon.rh>
  6. #include <avkon.rh>
  7. #include <avkon.rsg>
  8. #include <appinfo.rh>
  9. #include "AOLabTextFlash.hrh"
  10. #include "AOLabTextFlash.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_EXIT;
  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.         // added the new Options menu command here
  69.         MENU_ITEM
  70.                 {
  71.                 command = ECommandFlashText;
  72.                 txt = qtn_command_startflashing;
  73.                 },
  74.         MENU_ITEM
  75.                 {
  76.                 command = EAknSoftkeyExit;
  77.                 txt = qtn_exit;
  78.                 }
  79.         };
  80.     }
  81. // -----------------------------------------------------------------------------
  82. //
  83. // Resources for messages.
  84. //
  85. // -----------------------------------------------------------------------------
  86. //
  87. RESOURCE TBUF32 r_command_startflashing
  88.     {
  89.     buf=qtn_command_startflashing;
  90.     }
  91. RESOURCE TBUF32 r_command_stopflashing
  92.     {
  93.     buf=qtn_command_stopflashing;
  94.     }
  95. // ---------------------------------------------------------------------------- 
  96. //
  97. // r_localisable_app_info
  98. //
  99. // ---------------------------------------------------------------------------- 
  100. //
  101. RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info
  102.     {
  103.     short_caption = qtn_caption_string;
  104.     caption_and_icon = 
  105.     CAPTION_AND_ICON_INFO
  106.         {
  107.         caption = qtn_caption_string;
  108.         number_of_icons = 1;
  109.     icon_file = "\resource\apps\AOLabTextFlash.mif";
  110.     };
  111.     }
  112. // End of File