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

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __GROWBOX_H
  5. #define __GROWBOX_H
  6.  
  7. #include "CLWindowDrawer.h"
  8.  
  9. class TGrowBox:
  10.     public TWindowDrawer
  11. {
  12. protected:
  13.     virtual void DrawWindowSelf( TBaseWindow* );
  14. public:
  15.     TGrowBox( TLayoutBranch* );
  16.     virtual Rect GetLargestSize();
  17.     virtual Boolean MakeActive( Boolean );
  18.     virtual void HandleMouse( TMouseButtonEvent* );
  19. };
  20.  
  21. #endif