home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-20 | 419 b | 21 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __WINDOWDRAWER_H
- #define __WINDOWDRAWER_H
-
- #include "CLLayout.h"
-
- class TWindowDrawer:
- public TLayoutLeaf
- {
- protected:
- virtual void DrawWindowSelf( TBaseWindow* )=0;
- virtual void DrawSelf( TDrawSlate* );
- public:
- TWindowDrawer( TLayoutBranch* );
- virtual void DrawWindow( TBaseWindow* );
- virtual void AttachedToWindow( TBaseWindow*, Rect );
- };
-
- #endif