home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-20 | 379 b | 21 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __CLOUTLINE_H
- #define __CLOUTLINE_H
-
- #include "CLLayout.h"
-
- class TOutline:
- public TLayoutBranch
- {
- protected:
- TLayoutLeaf *mContent;
- virtual void BuildChildren();
- virtual void DrawSelf( TDrawSlate* );
- public:
- TOutline( TLayoutBranch*, TLayoutLeaf* );
- virtual void CalcMouseMove( Point, RgnHandle );
- };
-
- #endif