home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLGrowLayout.h < prev    next >
Encoding:
Text File  |  1997-05-18  |  344 b   |  20 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __GROWLAYOUT_H
  5. #define __GROWLAYOUT_H
  6.  
  7. #include "CLLayout.h"
  8.  
  9. class TGrowLayout:
  10.     public TLayoutBranch
  11. {
  12. protected:
  13.     TLayoutLeaf *mRealChild, *mGrowBox;
  14.     virtual void BuildChildren();
  15. public:
  16.     TGrowLayout( TLayoutBranch*, TLayoutLeaf* );
  17.     Boolean MakeActive( Boolean );
  18. };
  19.  
  20. #endif