home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / fonts / advfont / advfont.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  748 b   |  26 lines

  1. //************************************************************
  2. // Fonts - Using Advanced Font Functions
  3. //
  4. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. // All Rights Reserved.
  7. //************************************************************
  8. #include <idrawcv.hpp>
  9.  
  10. class FontDrawingArea : public IDrawingCanvas
  11. {
  12. public:
  13.   FontDrawingArea  ( unsigned long windowId,
  14.                      IWindow* parent,
  15.                      IWindow* owner,
  16.                      const IRectangle& initial = IRectangle() );
  17. virtual
  18.  ~FontDrawingArea ( );
  19.  
  20. private:
  21.   FontDrawingArea ( const FontDrawingArea& fda );
  22. FontDrawingArea
  23.  &operator=       ( const FontDrawingArea& fda );
  24. };
  25.  
  26.