home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / uidemo / hit_test / appwin.h < prev    next >
C/C++ Source or Header  |  1995-04-08  |  563b  |  30 lines

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Tue Mar  1 17:32:47 1994 */
  4. #define _appwin_h_
  5.  
  6. #include "base/objseq.h"
  7. #include "ui/composit.h"
  8. #include "ui/label.h"
  9.  
  10. class AppWindow: public UI_CompositeVObject {
  11.  
  12. public:
  13.     AppWindow ();
  14.     ~AppWindow ();
  15.  
  16. protected:
  17.     // Override the Composite's virtual methods:
  18.     void Initialize ();
  19.  
  20.     bool ButtonDown (const UI_Point&, UI_MouseButton, bool, bool);
  21.     bool Paint ();
  22.     
  23.     // Instance variables:
  24.     CL_ObjectSequence _graphics;
  25.     UI_Label*         _status;
  26. };
  27.  
  28.  
  29. #endif /* _appwin_h_ */
  30.