home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Interfaces / RIncludes / SIOW.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-16  |  1.3 KB  |  41 lines  |  [TEXT/MPS ]

  1. /*------------------------------------------------------------------------------
  2. #    SIOW.h
  3. #    Simple Inpue/Output Window header
  4. #    Apple Copyright 1989-1990
  5. #
  6. #    The names for these constants have been selected to satisfy both the
  7. #    standards set up by Apple for applications, and by ANSI for C programming.
  8. #
  9. #-----------------------------------------------------------------------------*/
  10.  
  11. #ifndef __SIOW__
  12. #define __SIOW__
  13.  
  14. #ifndef __kPrefSize
  15. #define __kPrefSize            122        /* Default max app size */
  16. #endif
  17. #ifndef __kMinSize
  18. #define __kMinSize            38        /* Default min app size */
  19. #endif
  20.     
  21. /* The following constants are used to identify menus and their items. */
  22. /* NOTE: resources IDs 20000-20010 are reserved fur use by SIOW */
  23.  
  24. #define    __mApple            20000    /* Apple menu */
  25. #define    __mFile                20001    /* File menu */
  26. #define    __mEdit                20002    /* Edit menu */
  27. #define __mFont                20003    /* Font menu */
  28. #define __mSize                20004    /* Font menu */
  29.  
  30. #define    __rMenuBar            20000    /* application's menu bar */
  31. #define    __rAboutAlert        20000    /* about alert */
  32. #define    __rUserAlert        20001    /* user error alert */
  33. #define __rSaveAlert        20002    /* save changes alert */
  34. #define    __rDocWindow        20000    /* application's window */
  35. #define    __rVScroll            20000    /* vertical scrollbar control */
  36. #define    __rHScroll            20001    /* horizontal scrollbar control */
  37. #define    __kErrStrings        20000    /* error string list */
  38.  
  39. #endif
  40.  
  41.