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

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Thu Sep 29 12:23:46 1994 */
  4. #define _appwin_h_
  5.  
  6. #include "ui/composit.h"
  7. #include "ui/pushbtn.h"
  8. #include "ui/label.h"
  9.  
  10.  
  11. class OurComposite: public UI_CompositeVObject {
  12.  
  13. public:
  14.     OurComposite ();
  15. protected:
  16.     // Override some methods
  17.     bool MouseMove (const UI_Point& cursorPos);
  18.     bool HandleChildEvent (const UI_Event& e);
  19.     UI_Label* status;
  20.     UI_PushButton* btn;
  21. };
  22.  
  23.  
  24.  
  25. #endif /* _appwin_h_ */
  26.