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

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Fri Sep 16 11:06:53 1994 */
  4. #define _appwin_h_
  5.  
  6.  
  7. #include "ui/composit.h"
  8. #include "ui/scrolbar.h"
  9. #include "ui/label.h"
  10. #include "ui/toglbtn.h"
  11.  
  12. // ------------------------ Class AppWindow ---------------------------
  13.  
  14. class AppWindow: public UI_CompositeVObject {
  15.  
  16. public:
  17.     AppWindow ();
  18.  
  19.     bool HandleChildEvent (const UI_Event& e);
  20.  
  21. protected:
  22.     UI_ToggleButton* _btn;
  23.     UI_Label*        _msg;
  24.     UI_ScrollBar*    _bar;
  25.  
  26.     bool           _DoScroll (CL_Object&, long);
  27.     
  28. };
  29.  
  30. #endif /* _appwin_h_ */
  31.