home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-13 | 391 b | 21 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __GROWBOX_H
- #define __GROWBOX_H
-
- #include "CLWindowDrawer.h"
-
- class TGrowBox:
- public TWindowDrawer
- {
- protected:
- virtual void DrawWindowSelf( TBaseWindow* );
- public:
- TGrowBox( TLayoutBranch* );
- virtual Rect GetLargestSize();
- virtual Boolean MakeActive( Boolean );
- virtual void HandleMouse( TMouseButtonEvent* );
- };
-
- #endif