home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / System / Swatch / Development / swatch 1.7 / resources.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-05  |  854 b   |  73 lines  |  [TEXT/KAHL]

  1. /**
  2.  
  3.     Swatch Application resources
  4.  
  5.  **/
  6.  
  7. #ifndef __resources__
  8. #define __resources__
  9.  
  10. enum {
  11.     OUT_OF_MEMORY_ALRT = 128,
  12.     BAD_SYSTEM_VERSION_ALRT
  13. };
  14.  
  15. enum {
  16.     APPLE_MENU = 128,
  17.     FILE_MENU,
  18.     EDIT_MENU
  19. };
  20.  
  21. enum {
  22.     COLOR8_clut = 128,
  23.     COLOR4_clut,
  24.     GRAY8_clut,
  25.     GRAY4_clut
  26. };
  27.  
  28. enum {
  29.     BLACK_WHITE_PAT_ = 128,
  30.     MARCHING_ANTS_PAT_
  31. };
  32.  
  33. enum {
  34.     ZOOM_IN_CURS = 128,
  35.     ZOOM_OUT_CURS,
  36.     NO_ZOOM_CURS,
  37.     INFO_CURS,
  38.     MOVE_BORDER_CURS,
  39.     ARROW_CURS
  40. };
  41.  
  42. enum {
  43.     MACSBUG_SICN = 128
  44. };
  45.  
  46. enum {
  47.     SWATCH_STR_ = 128,
  48.  
  49.     MultiFinder_STR_x = 1,
  50.     System_STR_x,
  51.  
  52.     MacsBug_Looking_at_STR_x,
  53.     MacsBug_hx_STR_x,
  54.     MacsBug_wh_STR_x,
  55.  
  56.     Heap_Size_STR_x,
  57.     Heap_Free_STR_x,
  58.     Heap_Islands_STR_x,
  59.     Heap_pixel_1_STR_x,
  60.     Heap_pixel_bytes_STR_x,
  61.     Heap_pixel_visible_STR_x,
  62.  
  63.     Window_title_STR_x,
  64.  
  65.     Prefs_filename_STR_x,
  66.     Prefs_tempname_STR_x,
  67.     Prefs_riffname_STR_x,
  68.  
  69.     Heap_damaged_STR_x
  70. };
  71.  
  72. #endif
  73.