home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0423.ZIP / CCE_0423.PD / GEM.ZOO / gemd.h < prev    next >
C/C++ Source or Header  |  1992-04-26  |  954b  |  38 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEM Desktop
  4. //
  5. //  A GEMdesktop is a replacement for the standard desktop.
  6. //
  7. //  A GEMdesktop is a just a GEMformwindow that is never Topped,
  8. //  and has no features (title bar, etc).
  9. //
  10. //  It is difficult to have more than one of these coexist, because of the
  11. //  nature of the GEM interface.  Subsequent GEMdesktop objects will
  12. //  replace any predecessor, regardless of scope.
  13. //
  14. //  This file is Copyright 1992 by Warwick W. Allison,
  15. //  and is freely distributable providing no charge is made.
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18.  
  19. #ifndef GEMD_h
  20. #define GEMD_h
  21.  
  22. #include "gemfeedb.h"
  23. #include "gemfw.h"
  24. #include <bool.h>
  25. #include <gemfast.h>
  26.  
  27.  
  28. class GEMdesktop : public GEMformwindow
  29. {
  30. public:
  31.     GEMdesktop(int RSCindex);
  32.     ~GEMdesktop();
  33.  
  34.     ClickResult Do(int x, int y);
  35. };
  36.  
  37. #endif
  38.