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

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Tue Mar  1 17:32:47 1994 */
  4. #define _appwin_h_
  5.  
  6. #include "ui/composit.h"
  7.  
  8. class SubDialog;
  9. class AppWindow: public UI_CompositeVObject {
  10.  
  11. public:
  12.     AppWindow ();
  13.  
  14.  
  15. protected:
  16.  
  17.     void Initialize ();
  18.     bool HandleChildEvent (const UI_Event& e);
  19.  
  20.     void ShowDialog (short index);
  21.  
  22.     SubDialog*  _comp[3];
  23.     SubDialog*  _current;
  24. };
  25.  
  26.  
  27. #endif /* _appwin_h_ */
  28.