home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Newton Sample Code 1.2 / User Interface Guidelines / infoButton-1 / Project Data < prev    next >
Encoding:
Text File  |  1994-07-06  |  626 b   |  28 lines  |  [TEXT/ttxt]

  1. // Copyright ©1994 Apple Computer, Inc., All Rights Reserved.
  2.  
  3. // constants for the application
  4.  
  5. constant kAppSymbol := '|InfoButton:PIEDTS|;
  6.  
  7. constant kMaxAppWidth := 240 ;
  8. constant kMaxAppHeight := 336 ;
  9.  
  10. // other constants
  11.  
  12. constant kAppSplashSymbol := '|Splash:InfoButton:PIEDTS| ;
  13.  
  14. // constants for the InfoButton items:
  15. constant kAboutItem := 0 ;
  16. constant kHelpItem := 1 ;
  17. constant kPrefsItem := 2 ;
  18. constant kThisWayItem := 4 ;
  19. constant kThatWayItem := 5 ;
  20. constant kTheOtherWayItem := 6 ;
  21.  
  22. // get the sounds...
  23.  
  24. r := OpenResFileX(HOME&"infoButton.rsrc") ;
  25.  
  26. DefConst('kEeahSound, GetSound("eeah")) ;
  27.  
  28. CloseResFileX(r) ;