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

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Fri Sep 16 11:06:53 1994 */
  4. #define _appwin_h_
  5.  
  6.  
  7. #include "ui/dialog.h"
  8. #include "ui/label.h"
  9. #include "ui/pushbtn.h"
  10. #include "ui/combobox.h"
  11.  
  12. // ------------------------ Class AppWindow ---------------------------
  13.  
  14. class AppWindow: public UI_Dialog {
  15.  
  16. public:
  17.     AppWindow ();
  18.     bool HandleChildEvent (const UI_Event& e);
  19.  
  20. protected:
  21.     UI_ComboBox*   _box;
  22.     UI_Label*      _lbl;
  23.     UI_PushButton* _btn;
  24. };
  25.  
  26. #endif /* _appwin_h_ */
  27.