home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Fortran.51 / DISK6 / FGRAPH.FD$ / FGRAPH.bin
Text File  |  1991-04-02  |  12KB  |  335 lines

  1. *fgraph.fd - declare constants and functions for graphics library
  2. *
  3. *   Copyright (c) 1987-1991 Microsoft Corporation.  All rights reserved.
  4. *
  5. *Purpose:
  6. *   This file declares the graphics library functions and
  7. *   the manifest constants that are used with them.
  8. *
  9. *******************************************************************************
  10.  
  11. $NOTRUNCATE        ! required for some names to be significant
  12. $NOTSTRICT         ! uses structures which are non-standard conforming
  13.  
  14. * user-visible declarations for FORTRAN Graphics Library
  15.  
  16. * structure for getvideoconfig() as visible to user
  17.     STRUCTURE/videoconfig/
  18.       INTEGER*2 numxpixels       ! number of pixels on X axis
  19.       INTEGER*2 numypixels       ! number of pixels on Y axis
  20.       INTEGER*2 numtextcols      ! number of text columns available
  21.       INTEGER*2 numtextrows      ! number of text rows available
  22.       INTEGER*2 numcolors        ! number of actual colors
  23.       INTEGER*2 bitsperpixel     ! number of bits per pixel
  24.       INTEGER*2 numvideopages    ! number of available video pages
  25.       INTEGER*2 mode             ! current video mode
  26.       INTEGER*2 adapter          ! active display adapter
  27.       INTEGER*2 monitor          ! active display monitor
  28.       INTEGER*2 memory           ! adapter video memory in K bytes
  29.     END STRUCTURE
  30.  
  31. * return value of getcurrentposition(), etc.
  32.     STRUCTURE/xycoord/
  33.       INTEGER*2 xcoord
  34.       INTEGER*2 ycoord
  35.     END STRUCTURE
  36.  
  37. * structure for text position
  38.     STRUCTURE/rccoord/
  39.       INTEGER*2 row
  40.       INTEGER*2 col
  41.     END STRUCTURE
  42.  
  43. * ERROR HANDLING
  44.  
  45. * status info returned by grstatus()
  46.     INTEGER*2 $GRPARAMETERALTERED,$GRCLIPPED,$GRNOOUTPUT,$GROK,
  47.      +            $GRERROR,$GRMODENOTSUPPORTED,$GRNOTINPROPERMODE,
  48.      +            $GRINVALIDPARAMETER,$GRFONTFILENOTFOUND,
  49.      +            $GRINVALIDFONTFILE,$GRCORRUPTEDFONTFILE,
  50.      +            $GRINSUFFICIENTMEMORY,$GRINVALIDIMAGEBUFFER
  51. * successful
  52.     PARAMETER($GROK                  = 0)  ! success
  53. * warnings
  54.     PARAMETER($GRNOOUTPUT            = 1)  ! nothing drawn
  55.     PARAMETER($GRCLIPPED             = 2)  ! output was partially clipped
  56.     PARAMETER($GRPARAMETERALTERED    = 3)  ! input parameters adjusted
  57. * errors
  58.     PARAMETER($GRERROR              = -1)  ! generic graphics error
  59.     PARAMETER($GRMODENOTSUPPORTED   = -2)  ! video mode not supported
  60.     PARAMETER($GRNOTINPROPERMODE    = -3)  ! not supported in current mode
  61.     PARAMETER($GRINVALIDPARAMETER   = -4)  ! bad parameter
  62.     PARAMETER($GRFONTFILENOTFOUND   = -5)  ! font file not found
  63.     PARAMETER($GRINVALIDFONTFILE    = -6)  ! not a font file
  64.     PARAMETER($GRCORRUPTEDFONTFILE  = -7)  ! inconsistent font file
  65.     PARAMETER($GRINSUFFICIENTMEMORY = -8)  ! out of memory
  66.     PARAMETER($GRINVALIDIMAGEBUFFER = -9)  ! bad image buffer detected
  67.  
  68. * SETUP AND CONFIGURATION
  69.  
  70. * arguments to setvideomode()
  71.     INTEGER*2 $MAXRESMODE,$MAXCOLORMODE,$DEFAULTMODE,$TEXTBW40,
  72.      +            $TEXTC40,$TEXTBW80,$TEXTC80,$MRES4COLOR,$MRESNOCOLOR,
  73.      +            $HRESBW,$TEXTMONO,$HERCMONO,$MRES16COLOR,$HRES16COLOR,
  74.      +            $ERESNOCOLOR,$ERESCOLOR,$VRES2COLOR,$VRES16COLOR,
  75.      +            $MRES256COLOR,$ORESCOLOR
  76.     PARAMETER($MAXRESMODE   =-3)    ! graphics mode with highest resolution
  77.     PARAMETER($MAXCOLORMODE =-2)    ! graphics mode with most colors
  78.     PARAMETER($DEFAULTMODE  =-1)    ! restore screen to original mode
  79.     PARAMETER($TEXTBW40      =0)    ! 40 x 25 text, 16 grey
  80.     PARAMETER($TEXTC40       =1)    ! 40 x 25 text, 16/8 color
  81.     PARAMETER($TEXTBW80      =2)    ! 80 x 25 text, 16 grey
  82.     PARAMETER($TEXTC80       =3)    ! 80 x 25 text, 16/8 color
  83.     PARAMETER($MRES4COLOR    =4)    ! 320 x 200, 4 color
  84.     PARAMETER($MRESNOCOLOR   =5)    ! 320 x 200, 4 grey
  85.     PARAMETER($HRESBW        =6)    ! 640 x 200, BW
  86.     PARAMETER($TEXTMONO      =7)    ! 80 x 25 text, BW
  87.     PARAMETER($HERCMONO      =8)    ! 720 x 348, BW for HGC
  88.     PARAMETER($MRES16COLOR   =13)   ! 320 x 200, 16 color
  89.     PARAMETER($HRES16COLOR   =14)   ! 640 x 200, 16 color
  90.     PARAMETER($ERESNOCOLOR   =15)   ! 640 x 350, BW
  91.     PARAMETER($ERESCOLOR     =16)   ! 640 x 350, 4 or 16 color
  92.     PARAMETER($VRES2COLOR    =17)   ! 640 x 480, BW
  93.     PARAMETER($VRES16COLOR   =18)   ! 640 x 480, 16 color
  94.     PARAMETER($MRES256COLOR  =19)   ! 320 x 200, 256 color
  95.     PARAMETER($ORESCOLOR     =64)   ! 640 x 400, 1 of 16 colors (Olivetti)
  96.  
  97. * videoconfig adapter values
  98. * these manifest constants can be used to determine the type of the active
  99. * adapter, using either simple comparisons or the bitwise-AND operator
  100.     INTEGER*2 $MDPA,$CGA,$EGA,$MCGA,$VGA,$HGC,$OCGA,$OEGA,$OVGA
  101.     PARAMETER($MDPA     =#0001)  ! Monochrome Display Adapter (MDPA)
  102.     PARAMETER($CGA      =#0002)  ! Color Graphics Adapter     (CGA)
  103.     PARAMETER($EGA      =#0004)  ! Enhanced Graphics Adapter  (EGA)
  104.     PARAMETER($VGA      =#0008)  ! Video Graphics Array       (VGA)
  105.     PARAMETER($MCGA     =#0010)  ! MultiColor Graphics Array  (MCGA)
  106.     PARAMETER($HGC      =#0020)  ! Hercules Graphics Card     (HGC)
  107.     PARAMETER($OCGA     =#0042)  ! Olivetti Color Graphics Adapter (OCGA)
  108.     PARAMETER($OEGA     =#0044)  ! Olivetti Enhanced Graphics Adapter (OEGA)
  109.     PARAMETER($OVGA     =#0048)  ! Olivetti Video Graphics Array (OVGA)
  110.  
  111. * videoconfig monitor values
  112. * these manifest constants can be used to determine the type of monitor in
  113. * use, using either simple comparisons or the bitwise-AND operator
  114.     INTEGER*2 $MONO,$COLOR,$ENHCOLOR,$ANALOGMONO,
  115.      +            $ANALOGCOLOR,$ANALOG
  116.     PARAMETER($MONO       =#0001)     ! Monochrome
  117.     PARAMETER($COLOR      =#0002)     ! Color (or Enhanced emulating color)
  118.     PARAMETER($ENHCOLOR   =#0004)     ! Enhanced Color
  119.     PARAMETER($ANALOGMONO =#0008)     ! Analog Monochrome only
  120.     PARAMETER($ANALOGCOLOR=#0010)     ! Analog Color only
  121.     PARAMETER($ANALOG     =#0018)     ! Analog
  122.  
  123. * COORDINATE SYSTEMS
  124.  
  125. * OUTPUT ROUTINES
  126.  
  127. * control parameters for rectangle(), polygon(), ellipse(), and pie()
  128.     INTEGER*2 $GBORDER,$GFILLINTERIOR
  129.     PARAMETER($GBORDER       =2)      ! draw outline only
  130.     PARAMETER($GFILLINTERIOR =3)      ! fill using current fill mask
  131.  
  132. * parameters for clearscreen()
  133.     INTEGER*2 $GCLEARSCREEN,$GVIEWPORT,$GWINDOW
  134.     PARAMETER($GCLEARSCREEN  =0)
  135.     PARAMETER($GVIEWPORT     =1)
  136.     PARAMETER($GWINDOW       =2)
  137.  
  138. * TEXT
  139.  
  140. * parameters for displaycursor()
  141.     INTEGER*2 $GCURSOROFF,$GCURSORON
  142.     PARAMETER($GCURSOROFF =0)
  143.     PARAMETER($GCURSORON  =1)
  144.  
  145. * parameters for wrapon()
  146.     INTEGER*2 $GWRAPOFF,$GWRAPON
  147.     PARAMETER($GWRAPOFF  =0)
  148.     PARAMETER($GWRAPON   =1)
  149.  
  150. * parameters for scrolltextwindow()
  151.     INTEGER*2 $GSCROLLUP,$GSCROLLDOWN
  152.     PARAMETER($GSCROLLUP   =1)
  153.     PARAMETER($GSCROLLDOWN =-1)
  154.  
  155. * request maximum number of rows in _settextrows() and _setvideomoderows()
  156.     INTEGER*2 $MAXTEXTROWS
  157.     PARAMETER($MAXTEXTROWS =-1)
  158.  
  159. * "action verbs" for putimage(), setwritemode()
  160.     INTEGER*2 $GPSET,$GPRESET,$GAND,$GOR,$GXOR
  161.     PARAMETER($GPSET         =3)
  162.     PARAMETER($GPRESET       =2)
  163.     PARAMETER($GAND          =1)
  164.     PARAMETER($GOR           =0)
  165.     PARAMETER($GXOR          =4)
  166.  
  167. * Color values are used with setbkcolor in graphics modes and also by
  168. *  remappalette abd remapallpalette.  Also known as palette colors.
  169. *  Not to be confused with color indices (aka. color attributes).
  170.  
  171. * universal color values (all color modes):
  172.     INTEGER*4 $BLACK,$BLUE,$GREEN,$CYAN,$RED,$MAGENTA,$BROWN,
  173.      +            $WHITE,$GRAY,$LIGHTBLUE,$LIGHTGREEN,$LIGHTCYAN,
  174.      +            $LIGHTRED,$LIGHTMAGENTA,$YELLOW,$BRIGHTWHITE
  175.     PARAMETER($BLACK         =#000000)
  176.     PARAMETER($BLUE          =#2a0000)
  177.     PARAMETER($GREEN         =#002a00)
  178.     PARAMETER($CYAN          =#2a2a00)
  179.     PARAMETER($RED           =#00002a)
  180.     PARAMETER($MAGENTA       =#2a002a)
  181.     PARAMETER($BROWN         =#00152a)
  182.     PARAMETER($WHITE         =#2a2a2a)
  183.     PARAMETER($GRAY          =#151515)
  184.     PARAMETER($LIGHTBLUE     =#3F1515)
  185.     PARAMETER($LIGHTGREEN    =#153f15)
  186.     PARAMETER($LIGHTCYAN     =#3f3f15)
  187.     PARAMETER($LIGHTRED      =#15153f)
  188.     PARAMETER($LIGHTMAGENTA  =#3f153f)
  189.     PARAMETER($YELLOW        =#153f3f)
  190.     PARAMETER($BRIGHTWHITE   =#3f3f3f)
  191.  
  192. * the following is obsolescent and defined only for backwards compatibility
  193.     INTEGER*4 $LIGHTYELLOW
  194.     PARAMETER($LIGHTYELLOW   =#153f3f)
  195.  
  196. * mono mode F ($ERESNOCOLOR) color values:
  197.     INTEGER*4 $MODEFOFF,$MODEFOFFTOON,$MODEFOFFTOHI,$MODEFONTOOFF,
  198.      +            $MODEFON,$MODEFONTOHI,$MODEFHITOOFF,$MODEFHITOON,
  199.      +            $MODEFHI
  200.     PARAMETER($MODEFOFF      =0)
  201.     PARAMETER($MODEFOFFTOON  =1)
  202.     PARAMETER($MODEFOFFTOHI  =2)
  203.     PARAMETER($MODEFONTOOFF  =3)
  204.     PARAMETER($MODEFON       =4)
  205.     PARAMETER($MODEFONTOHI   =5)
  206.     PARAMETER($MODEFHITOOFF  =6)
  207.     PARAMETER($MODEFHITOON   =7)
  208.     PARAMETER($MODEFHI       =8)
  209.  
  210. * mono mode 7 ($TEXTMONO) color values:
  211.     INTEGER*4 $MODE7OFF,$MODE7ON,$MODE7HI
  212.     PARAMETER($MODE7OFF      =0)
  213.     PARAMETER($MODE7ON       =1)
  214.     PARAMETER($MODE7HI       =2)
  215.  
  216. * external function declarations
  217.  
  218.     INTEGER*2 grstatus[EXTERN]
  219.     INTEGER*2 setvideomode[EXTERN]
  220.     INTEGER*2 setvideomoderows[EXTERN]
  221.     INTEGER*2 setactivepage[EXTERN]
  222.     INTEGER*2 setvisualpage[EXTERN]
  223.     INTEGER*2 getactivepage[EXTERN]
  224.     INTEGER*2 getvisualpage[EXTERN]
  225.     EXTERNAL getvideoconfig
  226.     EXTERNAL setvieworg
  227.     EXTERNAL getviewcoord
  228.     EXTERNAL getphyscoord
  229.     EXTERNAL setcliprgn
  230.     EXTERNAL setviewport
  231.     EXTERNAL clearscreen
  232.     EXTERNAL moveto
  233.     EXTERNAL getcurrentposition
  234.     INTEGER*2 lineto[EXTERN]
  235.     INTEGER*2 rectangle[EXTERN]
  236.     INTEGER*2 polygon[EXTERN]
  237.     INTEGER*2 ellipse[EXTERN]
  238.     INTEGER*2 arc[EXTERN]
  239.     INTEGER*2 pie[EXTERN]
  240.     INTEGER*2 getarcinfo[EXTERN]
  241.     INTEGER*2 setpixel[EXTERN]
  242.     INTEGER*2 getpixel[EXTERN]
  243.     INTEGER*2 floodfill[EXTERN]
  244.     INTEGER*2 setcolor[EXTERN]
  245.     INTEGER*2 getcolor[EXTERN]
  246.  
  247.     EXTERNAL setlinestyle
  248.     INTEGER*2 getlinestyle[EXTERN]
  249.     INTEGER*2 setwritemode[EXTERN]
  250.     INTEGER*2 getwritemode[EXTERN]
  251.     EXTERNAL setfillmask
  252.     EXTERNAL getfillmask
  253.     INTEGER*4 setbkcolor[EXTERN]
  254.     INTEGER*4 getbkcolor[EXTERN]
  255.     INTEGER*4 remappalette[EXTERN]
  256.     INTEGER*2 remapallpalette[EXTERN]
  257.     INTEGER*2 selectpalette[EXTERN]
  258.     INTEGER*2 settextrows[EXTERN]
  259.     EXTERNAL settextwindow
  260.     EXTERNAL gettextwindow
  261.     EXTERNAL scrolltextwindow
  262.     EXTERNAL outtext
  263.     INTEGER*2 wrapon[EXTERN]
  264.     INTEGER*2 displaycursor[EXTERN]
  265.     INTEGER*2 settextcursor[EXTERN]
  266.     INTEGER*2 gettextcursor[EXTERN]
  267.     EXTERNAL settextposition
  268.     EXTERNAL gettextposition
  269.     INTEGER*2 settextcolor[EXTERN]
  270.     INTEGER*2 gettextcolor[EXTERN]
  271.     EXTERNAL getimage
  272.     EXTERNAL putimage
  273.     INTEGER*4 imagesize[EXTERN]
  274.  
  275. * WINDOW COORDINATE SYSTEM
  276.  
  277. * structure for window coordinate pair
  278.     STRUCTURE/wxycoord/
  279.       DOUBLE PRECISION wx    ! window x coordinate
  280.       DOUBLE PRECISION wy    ! window y coordinate
  281.     END STRUCTURE
  282.  
  283.     INTEGER*2 setwindow[EXTERN]
  284.  
  285.     EXTERNAL getwindowcoord
  286.     EXTERNAL getviewcoord_w
  287.     EXTERNAL getcurrentposition_w
  288.  
  289. * window coordinate entry points for graphics output routines
  290.  
  291.     INTEGER*2 arc_w[EXTERN]
  292.     INTEGER*2 ellipse_w[EXTERN]
  293.     INTEGER*2 floodfill_w[EXTERN]
  294.     INTEGER*2 getpixel_w[EXTERN]
  295.     INTEGER*2 lineto_w[EXTERN]
  296.     EXTERNAL moveto_w
  297.     INTEGER*2 pie_w[EXTERN]
  298.     INTEGER*2 rectangle_w[EXTERN]
  299.     INTEGER*2 polygon_w[EXTERN]
  300.     INTEGER*2 setpixel_w[EXTERN]
  301.     EXTERNAL getimage_w
  302.     INTEGER*4 imagesize_w[EXTERN]
  303.     EXTERNAL putimage_w
  304.  
  305.     STRUCTURE/fontinfo/
  306.       INTEGER*2 type        ! b0 set = vector,clear = bit map
  307.       INTEGER*2 ascent    ! pix dist from top to baseline
  308.       INTEGER*2 pixwidth    ! character width in pixels, 0=prop
  309.       INTEGER*2 pixheight    ! character height in pixels
  310.       INTEGER*2 avgwidth    ! average character width in pixels
  311.       CHARACTER*81 filename   ! file name including path
  312.       CHARACTER*32 facename   ! font name
  313.     END STRUCTURE
  314.  
  315. * Font parameters
  316.  
  317.     INTEGER*2 $NO_SPACE,$FIXED_SPACE,$PROP_SPACE
  318.     PARAMETER ($NO_SPACE    = 0)
  319.     PARAMETER ($FIXED_SPACE = 1)
  320.     PARAMETER ($PROP_SPACE  = 2)
  321.  
  322.     INTEGER*2 $NO_FONT_MAP,$VECTOR_MAP,$BIT_MAP
  323.     PARAMETER ($NO_FONT_MAP = 0)
  324.     PARAMETER ($VECTOR_MAP  = 1)
  325.     PARAMETER ($BIT_MAP     = 2)
  326.  
  327.     INTEGER*2 registerfonts[EXTERN]
  328.     EXTERNAL unregisterfonts
  329.     INTEGER*2 setfont[EXTERN]
  330.     INTEGER*2 getfontinfo[EXTERN]
  331.     EXTERNAL outgtext
  332.     INTEGER*2 getgtextextent[EXTERN]
  333.     EXTERNAL setgtextvector
  334.     EXTERNAL getgtextvector
  335.