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

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Thu Sep 29 12:23:46 1994 */
  4. #define _appwin_h_
  5.  
  6. #include "ui/textedit.h"
  7. #include "ui/pushbtn.h"
  8. #include "ui/composit.h"
  9.  
  10.  
  11. class AppWindow: public UI_CompositeVObject {
  12.  
  13. public:
  14.     AppWindow ();
  15.  
  16. protected:
  17.     bool HandleChildEvent (const UI_Event& e);
  18.     
  19.     UI_TextEditor* _edit;
  20.     UI_PushButton* _btn;
  21. };
  22.  
  23.  
  24.  
  25. #endif /* _appwin_h_ */
  26.