home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d034 / requester.lha / Requester / screen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-09-03  |  1.7 KB  |  70 lines

  1. /****************************************************************************
  2.  *
  3.  *  Screen - Screen configurator (almost useless example of LoadRequest use)
  4.  *
  5.  *  By Kevin Lee Clague
  6.  *     408 Tortolla Way
  7.  *     San Jose, Ca 95033
  8.  *     408-258-9891       work 408-737-5481
  9.  *
  10.  *  Copyright (C) 1986. All rights reserved.
  11.  *
  12.  *  This program is freely distributable as long as this copyright notice
  13.  *  is retained. It intended for personal, non-commercial use.  
  14.  *
  15.  ***************************************************************************/
  16.  
  17. #include <exec/types.h>
  18. #include <exec/tasks.h>
  19. #include <exec/libraries.h>
  20. #include <exec/devices.h>
  21. #include <exec/memory.h>
  22. #include <devices/keymap.h>
  23. #include <graphics/copper.h>
  24. #include <graphics/display.h>
  25. #include <graphics/gfxbase.h>
  26. #include <graphics/text.h>
  27. #include <graphics/view.h>
  28. #include <graphics/gels.h>
  29. #include <graphics/regions.h>
  30. #include <hardware/blit.h>
  31. #include <intuition/intuition.h>
  32. #include <intuition/intuitionbase.h>
  33. #include <stdio.h>
  34.  
  35. #include <libraries/dos.h>
  36.  
  37. #include <workbench/workbench.h>
  38.  
  39.  
  40. /* Menu Project's, Items */
  41. #define LOADITEM 0
  42. #define SAVEITEM 1
  43. #define USEITEM  2
  44. #define QUITITEM 3
  45.  
  46. /* Menu: Edit, Item: ViewMode's, SubItems */
  47. #define HIRESSUB     0
  48. #define INTERLACESUB 1
  49. #define SPRITESSUB   2
  50. #define DUALPFSUB    3
  51. #define HAMSUB       4
  52.  
  53. /* Menu: Edit, Item: Depth's, SubItems */
  54. #define BITPLANE1SUB  0
  55. #define BITPLANES2SUB 1
  56. #define BITPLANES3SUB 2
  57. #define BITPLANES4SUB 3
  58. #define BITPLANES5SUB 4
  59. #define BITPLANES6SUB 5
  60.  
  61. /* Menu Edit's, Items */
  62. #define DEPTHITEM    0
  63. #define VIEWMODEITEM 1
  64.  
  65. /* Menu Entries */
  66. #define PROJECTMENU 0
  67. #define EDITMENU    1
  68.  
  69. #define TOGGLED11 0x0200
  70.