home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / IRIT / DRAWFN3S.ZIP / GRAPHGNL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-06  |  983 b   |  31 lines

  1. /*****************************************************************************
  2. * Local    definitions of GraphGen.c for GraphGen.c only.                 *
  3. *****************************************************************************/
  4.  
  5. #ifndef    GRAPH_GEN_LH                    /* Define only once. */
  6. #define    GRAPH_GEN_LH
  7.  
  8. #define    POINT_SIZE 0.05                  /* Size of + marker drawn. */
  9. #define    POINT_TITLE 0.02       /* Distance between point title and + marker. */
  10.  
  11. #define    MENU_BASE_X   1.225                 /* Menu size constants. */
  12. #define MENU_TOP_Y    0.94
  13. #define    MENU_ITEM_X   0.75
  14. #define    MENU_ITEM_Y   0.11
  15. #define    MENU_HEAD_Y   0.2
  16.  
  17. #define    CURSOR_IMAGE_X  24
  18. #define    CURSOR_IMAGE_Y  24
  19.  
  20. #define KEY_LEFT     256     /* Key Codes returned for operational keys. */
  21. #define KEY_RIGHT    257
  22. #define KEY_RETURN   258
  23. #define KEY_DELETE   259
  24. #define KEY_INSERT   260
  25. #define KEY_BSPACE   261
  26. #define KEY_ESC      262
  27. #define KEY_HOME     263
  28. #define KEY_END      264
  29.  
  30. #endif    GRAPH_GEN_LH
  31.