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

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __CONTROLS_H
  5. #define __CONTROLS_H
  6.  
  7. #include "CLLayout.h"
  8.  
  9. class TControl:public TLayoutLeaf {
  10. protected:
  11.     virtual void TrackMouseChange( TMouseEvent*, Boolean );
  12.     virtual void TrackMouseWithin( TMouseEvent* );
  13.     virtual void TrackMouseDown( TMouseEvent* );
  14.     virtual void TrackMouseUp( TMouseEvent* );
  15.     virtual Boolean HandleMouseSelf( TMouseButtonEvent* );
  16. public:
  17.     TControl( TLayoutBranch* );
  18. };
  19.  
  20. #endif