home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / advframe / winview / iconview.hpp < prev    next >
Text File  |  1996-10-29  |  717b  |  32 lines

  1. #ifndef _ICONVIEW_
  2. #define _ICONVIEW_
  3. //************************************************************
  4. // Advanced Frame - Window Viewer Example
  5. //
  6. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  7. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  8. // All Rights Reserved.
  9. //************************************************************
  10. #include <icnrhdr.hpp>
  11. #include "hwinobj.hpp"
  12.  
  13.  
  14. class IconView : public HWindowObjectView {
  15. public:
  16.   IconView ( HWindowObject& object );
  17.  
  18. protected:
  19. virtual IconView
  20.  &populate ( );
  21. static IContainerControl
  22.  *clientWindow ( );
  23.  
  24. private:
  25. ICnrHandler
  26.   handler;
  27. IconView(const IconView&);
  28. IconView operator=(const IconView&);
  29. };
  30.  
  31. #endif // _ICONVIEW_
  32.