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

Symbian

开发平台:

C/C++

  1. /*
  2. * ==============================================================================
  3. *  Name        : TicTacToe.rss
  4. *  Part of     : TicTacToe
  5. *  Description : 
  6. *  Version     : 
  7. *
  8. *  Copyright (c) 2005 Nokia Corporation.
  9. * ==============================================================================
  10. */
  11. //  RESOURCE IDENTIFIER
  12. NAME TTTO
  13. //  INCLUDES
  14. #include <eikon.rh>
  15. #include <avkon.rh>
  16. #include <avkon.rsg>
  17. #include "TicTacToe.hrh"
  18. // ---------------------------------------------------------
  19. //   
  20. //    Define the resource file signature 
  21. //    This resource should be empty.
  22. //
  23. // ---------------------------------------------------------
  24. //
  25. RESOURCE RSS_SIGNATURE 
  26. }
  27. // ---------------------------------------------------------
  28. //   
  29. //    Default Document Name
  30. //
  31. // ---------------------------------------------------------
  32. //
  33. RESOURCE TBUF r_default_document_name
  34. buf=""; 
  35. }
  36. // ---------------------------------------------------------
  37. //   
  38. //    Define default menu and CBA key.
  39. //
  40. // ---------------------------------------------------------
  41. //
  42. RESOURCE EIK_APP_INFO
  43.     {
  44.     menubar = r_tictactoe_menubar;
  45.     cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
  46.     }
  47. // ---------------------------------------------------------
  48. //   
  49. //   r_tictactoe_menubar
  50. //
  51. // ---------------------------------------------------------
  52. //
  53. RESOURCE MENU_BAR r_tictactoe_menubar
  54.     {
  55.     titles =
  56.         {
  57.         MENU_TITLE 
  58. {
  59. menu_pane = r_tictactoe_menu;
  60. }
  61.         };
  62.     }
  63. // ---------------------------------------------------------
  64. //   
  65. //   r_tictactoe_menu
  66. //   Menu for "Options"
  67. //
  68. // ---------------------------------------------------------
  69. //
  70. RESOURCE MENU_PANE r_tictactoe_menu
  71.     {
  72.     items = 
  73.         {
  74.         MENU_ITEM 
  75.     {
  76. command = ETicTacToeNewGame;  
  77.     txt = "New Game";
  78. },
  79.         MENU_ITEM 
  80.     {
  81. cascade = r_tictactoe_graphics_menu;  
  82.     txt = "Graphics";
  83. },
  84.         MENU_ITEM 
  85.     {
  86. command = EAknSoftkeyExit;   
  87. txt = "Exit";
  88. }
  89.         };
  90.     }
  91. // ---------------------------------------------------------
  92. //   
  93. //   r_tictactoe_graphics_menu
  94. //   Submenu for "Graphics"
  95. //
  96. // ---------------------------------------------------------
  97. //
  98. RESOURCE MENU_PANE r_tictactoe_graphics_menu
  99.     {
  100.     items = 
  101.         {
  102.         MENU_ITEM 
  103.     {
  104. command = ETicTacToeGraphics1;  
  105.     txt = "Set 1";
  106. },
  107.         MENU_ITEM 
  108.     {
  109. command = ETicTacToeGraphics2;  
  110.     txt = "Set 2";
  111. }
  112.         };
  113.     }
  114. // ---------------------------------------------------------
  115. //   
  116. //    r_tictactoe_winner_str
  117. //
  118. // ---------------------------------------------------------
  119. //
  120. RESOURCE TBUF r_tictactoe_winner_str
  121.     {
  122.     buf = "Congratulations!n%U's have won.";
  123.     }
  124. // ---------------------------------------------------------
  125. //   
  126. //    r_tictactoe_draw_str
  127. //
  128. // ---------------------------------------------------------
  129. //
  130. RESOURCE TBUF r_tictactoe_draw_str
  131.     {
  132.     buf = "It's a draw!";
  133.     }
  134. // End of File