home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / desklib / examples / DeskLib / Examples / Widget5 / !Widget5 / h / Configure < prev    next >
Encoding:
Text File  |  1995-05-05  |  1.6 KB  |  62 lines

  1. /************************************************************************
  2.  *                                                                      *
  3.  *        File: Configure.h                                             *
  4.  *                                                                      *
  5.  *     Purpose: Configuration options for program.                      *
  6.  *              Routines to load and save options and display window to *
  7.  *              change options.                                         *
  8.  *                                                                      *
  9.  ************************************************************************/
  10.  
  11.  /*
  12.   * size of widget 4 image for the loading functions
  13.   */
  14. extern wimp_point widget4size;
  15.  
  16.  /*
  17.   * whether the destination radios should show free banks or freebanks and banks of
  18.   * the same size in the process windows
  19.   */
  20. #define use_FREE       0
  21. #define use_FREEORSAME 1
  22. extern int destinationbanktype;
  23.  
  24.  /*
  25.   * size of graph for histograms
  26.   */
  27. #define graphtype_LARGE 0
  28. #define graphtype_SMALL 1
  29. extern int graphtype;
  30.  
  31.  /*
  32.   * TRUE when the full version is enabled.
  33.   * ie. support for Widget4 and Widget5 file formats
  34.   */
  35. extern BOOL fullversion;
  36.  
  37.  /*
  38.   * smoothed drawing setting for drawing on the greymap
  39.   */
  40. extern int drawtype;
  41. #define drawtype_NORMAL;
  42. #define drawtype_SMOOTH;
  43. #define drawtype_VSMOOTH;
  44.  
  45.  /*
  46.   * real-time updates
  47.   */
  48. extern BOOL realtime;
  49.  
  50.  /*
  51.   * open configure window on screen
  52.   */
  53. extern void Configure_Open(void);
  54.  
  55.  
  56.  /*
  57.   * initialisation to be done on startup (loads options file aswell)
  58.   */
  59. extern void Configure_Init(void);
  60.  
  61.  
  62.