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

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __FLOATINGWINDOWLAYER_H
  5. #define __FLOATINGWINDOWLAYER_H
  6.  
  7. #include "CLWindowLayer.h"
  8.  
  9. class TFloatingWindowLayer:
  10.     public TWindowLayer
  11. {
  12. public:
  13.     virtual void MakeActive( bool );
  14.     virtual void AddWindow( TBaseWindow* );
  15.     virtual void RemoveWindow( TBaseWindow* );
  16.     virtual void SelectWindow( TBaseWindow* );
  17.     virtual void HandleBackground( const TBackgroundEvent* );
  18. };
  19.  
  20. #endif