home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / libs / plotlib.lha / Plot_1.lzh / Demo / Window.h < prev   
Encoding:
C/C++ Source or Header  |  1990-01-11  |  1.5 KB  |  70 lines

  1. #ifndef MYWINDOW_H
  2. #define MYWINDOW_H
  3.  
  4. /****************************************************************
  5.  *                                                                                                                            *
  6.  * Filename : Window.h                                                                                    *
  7.  *                                                                                                                            *
  8.  ****************************************************************
  9.  *                                                                                                                            *
  10.  *    Comment : Definitionen aller Windows                                                *
  11.  *                                                                                                                            *
  12.  *                         -MainWindow                                                                            *
  13.  *                         -HelpWindow                                                                            *
  14.  *                                                                                                                            *
  15.  *                                                                                                                            *
  16.  *            Rev : V1.0                                                                                            *
  17.  *                                                                                                                            *
  18.  *    History : V1.0 erstellen dieses Files                            20.06.89    *
  19.  *                                                                                                                            *
  20.  *            Doc : Intuition Reference Manual                                                *
  21.  *                                                                                                                            *
  22.  *         Bugs : keine bekannten                                                                        *
  23.  *                                                                                                                            *
  24.  *        Autor : Oesch Silvano                                                                            *
  25.  *                                                                                                                            *
  26.  *        Datum : 20.06.89                                                                                    *
  27.  *                                                                                                                            *
  28.  ****************************************************************/
  29.  
  30. #include "HelpGadget.h"
  31.  
  32. extern char HelpNamen[];
  33. extern char SystemNamen[];
  34.  
  35. struct NewWindow mainwindow =
  36. {
  37.     0,0,
  38.     SCREENBREITE,0,
  39.     0,1,
  40.     MENUPICK,
  41.     BACKDROP+BORDERLESS+ACTIVATE+NOCAREREFRESH,
  42.     NULL,
  43.     NULL,
  44.     NULL,
  45.     NULL,
  46.     NULL,
  47.     5,5,
  48.     -1,-1,
  49.     CUSTOMSCREEN
  50. };
  51.  
  52. struct NewWindow helpwindow =
  53. {
  54.     0,0,
  55.     SCREENBREITE,0,
  56.     0,1,
  57.     GADGETUP,
  58.     ACTIVATE+RMBTRAP+NOCAREREFRESH,
  59.     &HpG1,
  60.     NULL,
  61.     HelpNamen,
  62.     NULL,
  63.     NULL,
  64.     5,5,
  65.     -1,-1,
  66.     CUSTOMSCREEN
  67. };
  68.  
  69. #endif MYWINDOW_H
  70.