home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / program / gempp15b.zoo / include / gemfiw.h < prev    next >
C/C++ Source or Header  |  1993-04-25  |  1KB  |  38 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMformiconwindow
  4. //
  5. //  A GEMformiconwindow is a GEMformwindow which iconifies.
  6. //
  7. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  8. //  This file is part of the gem++ library.
  9. //  You are free to copy and modify these sources, provided you acknowledge
  10. //  the origin by retaining this notice, and adhere to the conditions
  11. //  described in the file COPYING.LIB.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14.  
  15. #ifndef GEMfiw_h
  16. #define GEMfiw_h
  17.  
  18. #include <gemfw.h>
  19.  
  20. class GEMformiconwindow : public GEMformwindow
  21. {
  22. public:
  23.     GEMformiconwindow(GEMactivity& in, const GEMrsc& in, int RSCform, int RSCicon);
  24.     GEMformiconwindow(GEMactivity& in, const GEMrsc& in, int RSCform, int RSCicon, int Parts);
  25.     GEMformiconwindow(const GEMformiconwindow&);
  26.     virtual ~GEMformiconwindow();
  27.  
  28.     virtual void UserFulled();
  29.     virtual void Open();
  30.  
  31.     bool IsIconified() const;
  32.  
  33. private:
  34.     class GEMiconformwindow* icon;
  35. };
  36.  
  37. #endif
  38.