home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / WORLDDR.H < prev   
Encoding:
C/C++ Source or Header  |  1989-12-04  |  3.2 KB  |  86 lines

  1. struct WorldRect{
  2.    float left, bottom, right, top;
  3. };
  4.  
  5. struct viewporttype{
  6.    int  left, bottom,right,top;
  7. };
  8.  
  9. enum justify{
  10.           LEFT_TEXT   = 0,
  11.           CENTER_TEXT = 1,
  12.           RIGHT_TEXT  = 2,
  13.           BOTTOM_TEXT = 0,
  14.           TOP_TEXT    = 2
  15. };
  16. int Round( float x );
  17. float Float( int i );
  18. int AdjustCRTColor( int c );
  19. void GetMaxCoords( int *x, int *y );
  20. void _moverel( float x1, float y1 );
  21. void _linerel( float x1, float y1 );
  22. void linetoXX( float x, float y );
  23. void linerelXX( float x, float y );
  24. void movetoXX( float x, float y );
  25. void moverelXX( float x, float y );
  26. float ConvertX1( float xx1);
  27. float ConvertY1(float yy1 );
  28. float ConvertX2(float xx1 );
  29. float ConvertY2( float yy1);
  30. void MoveWorldAbs( float xx1, float yy1);
  31. void MoveWorldRel( float xx1,float yy1 );
  32. void LineWorldAbs( float xx1,float  yy1);
  33. void LineWorldRel( float xx1,float  yy1 );
  34. void GetViewportOrigin( int *left, int *top );
  35. void settextjustify(int dirx, int diry);
  36. void settextjustifyXX( unsigned int h, unsigned int v );
  37. void settextstyleXX(unsigned int font, unsigned int dir, unsigned int size );
  38. void ClipOn();
  39. void ClipOff();
  40. void PlotterOn();
  41. void PlotterOff();
  42. void CRTGraphOn();
  43. void CRTGraphOff();
  44. void OneTimeInit(int mode);
  45. void setlinestyleXX( int ls, int pat,int thick );
  46. void setfillstyleXX( int pat,int c );
  47. void barXX(float x1,float y1, float x2, float y2 );
  48. void rectangleXX(float x1,float y1, float x2, float y2 );
  49. void pieXX(float x,float y,float stangle,float endangle,
  50.            float radius,float AspectRatio);
  51. void outtextXX( char *s );
  52. void outtextPie( int x, int y, char *s);
  53. void SelectColor( int c );
  54. void SetWorldRect( struct WorldRect *r,
  55.                    float a,float b,float c,float d  );
  56. void SetGraphViewport(int xx1,int yy1,int xx2,int yy2);
  57. void SetWorldCoordinates(float l, float b,float  r, float t);
  58. void PolyLineWorldAbs( float *x, float *y, int numdat );
  59. void PolyLineWorldRel( float *x, float *y, int numdat );
  60. void BarWorld( float x1,float y1,float h,float w,
  61.                int gc, int gh);
  62. void EraseWorldRect( struct WorldRect *wr );
  63. void ClearViewportXX();
  64. void closegraphics();
  65. char prnerr(int *i);
  66. void POC(int p, char  c , int *err);
  67. void OutputPrinterChar(int PrnPort, char ch,int *error);
  68. void OutputPrinterString(int PrnPort, char *s,int  *error);
  69. char GetHorizByte(int x,int y, float xm, float ym, int rv, int orient);
  70. char GetVertByte(int x,int y,int numPix,float xm,float ym,int rv, int orient);
  71. void ToshibaPScreenDump(int PrnPort,int res,float xm,float ym,
  72.             int rv,int orient, int ff, int *error);
  73. void EpsonMXScreenDump(int PrnPort,int res,float xm,float ym,
  74.                int rv,int orient, int ff, int *error);
  75. void EpsonFXScreenDump(int PrnPort,int res,float xm,float ym,
  76.                int rv,int orient, int ff, int *error);
  77. void EpsonLQScreenDump(int PrnPort,int  res,float  xm,float  ym,
  78.                int rv,int orient, int ff,int *error);
  79. void HPLaserPlusScreenDump(int PrnPort,int res,float  xm,float  ym,
  80.                int rv,int orient, int ff,int *error);
  81. void HPThinkJetScreenDump(int PrnPort,int res,float  xm,float  ym,
  82.                int rv,int orient, int ff,int *error);
  83. void ScreenDump(int printer,int PrnPort,int  res,float xm,float ym,
  84.         int rv,int orient, int ff,int *error);
  85.  
  86.