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

  1.  
  2.  
  3.  
  4.  
  5. #ifndef _appwin_h_ /* Fri Oct  7 11:18:59 1994 */
  6. #define _appwin_h_
  7.  
  8.  
  9. #include "ui/composit.h"
  10.  
  11. class AppWindow: public UI_CompositeVObject {
  12.  
  13. public:
  14.     AppWindow ();
  15.  
  16. protected:
  17.  
  18.     bool HandleChildEvent (const UI_Event& e);
  19.  
  20.     bool WantToQuit ();
  21.     
  22. private:
  23.     void WaitDemo ();
  24.     void ProgressDialogDemo ();
  25.  
  26.     short  _inProgressDemo;
  27. };
  28.  
  29. #endif /* _appwin_h_ */
  30.