home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DU Projects / Mnu / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-08-22  |  930 b   |  42 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //    Release Version:    $ ODF 2 $
  3. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  4. //========================================================================================
  5.  
  6. #ifndef FWRESFIL_K
  7. #include "FWResFil.k"
  8. #endif
  9.  
  10. #ifndef DEFINES_K
  11. #include "Defines.k"
  12. #endif
  13.  
  14. #ifndef FWMENUS_FR
  15. #include "FWMenus.fr"
  16. #endif
  17.  
  18. //========================================================================================
  19. resource FW_RMenuBar(kMenuBarID)
  20. {
  21.     "About Mnu...",
  22.     {
  23.         FW_RPullDownMenu 
  24.         (
  25.             "MyPartMenu"
  26.             {
  27.                 FW_RTextItem(cItemOneCommand, '1', "Item One"),
  28.                 FW_RTextItem(cItemTwoCommand, '2', "Item Two")
  29.             }
  30.         ),
  31.         FW_RPullDownMenu 
  32.         (
  33.             "MyFrameMenu"
  34.             {
  35.                 FW_RTextItem(cItemThreeCommand, '3', "Item Three"),
  36.                 FW_RSeparatorItem(),
  37.                 FW_RTextItem(cSoundCommand, '4', "Sound")
  38.             }
  39.         )
  40.     }
  41. };  
  42.