home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CDictionary 1.0 / CFilledBorder.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  671 b   |  25 lines  |  [TEXT/KAHL]

  1. /*****************************************************************************
  2. CFilledBorder.h
  3.  
  4.     Subclass of CBorder that erases its interior.
  5.     
  6.     by Dan Podwall - you may do anything you please with this code except
  7.     charge for it, with the exception of normal network download charges.
  8.         
  9. *****************************************************************************/
  10.  
  11.  
  12. #define _H_CFilledBorder
  13.  
  14. #include "CBorder.h"
  15.  
  16. struct CFilledBorder : CBorder
  17. {
  18.  
  19.     void        IFilledBorder(CView *anEnclosure, CBureaucrat *aSupervisor,
  20.                         short aWidth, short aHeight,
  21.                         short aHEncl, short aVEncl,
  22.                         SizingOption aHSizing, SizingOption aVSizing);
  23.     void        Draw(Rect *area);
  24.     
  25. };