home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / EEDRW23S.ZIP / EEREDRAW.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-01-12  |  1.1 KB  |  28 lines

  1. /*****************************************************************************
  2. *   Program to draw EE diagrams.                         *
  3. *                                         *
  4. * This module redraw/draw all objects.                         *
  5. *                                         *
  6. * Written by:  Gershon Elber            IBM PC Ver 1.0,    Oct. 1989    *
  7. *****************************************************************************/
  8.  
  9. #ifndef EEREDRAW_H
  10. #define EEREDRAW_H
  11.  
  12. #include "EELibs.h"
  13.  
  14. void SetHighLightStruct(DrawGenericStruct *HighLight);
  15. void RedrawActiveWindow(void);
  16. void RedrawAllWindows(void);
  17. void RedrawStructList(DrawGenericStruct *Structs, int DrawMode, int Color);
  18. void RedrawOneStruct(DrawGenericStruct *Struct, int DrawMode, int Color);
  19. void RedrawPolylineStruct(DrawPolylineStruct *Struct, int DrawMode, int Color);
  20. void RedrawConnectionStruct(DrawConnectionStruct *Struct, int DrawMode,
  21.                                     int Color);
  22. void RedrawTextStruct(DrawTextStruct *Struct, int DrawMode, int Color);
  23. BooleanType PlacePolylineStruct(DrawPolylineStruct *Struct);
  24. BooleanType PlaceConnectionStruct(DrawConnectionStruct *Struct);
  25. BooleanType PlaceTextStruct(DrawTextStruct *Struct);
  26.  
  27. #endif EEREDRAW_H
  28.