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

  1.  
  2.  
  3.  
  4.  
  5. #ifndef _appwin_h_ /* Fri Dec  2 17:46:58 1994 */
  6. #define _appwin_h_
  7.  
  8. #include "ui/dialog.h"
  9. #include "ui/strview.h"
  10. #include "ui/label.h"
  11. #include "ui/toglbtn.h"
  12. #include "ui/stred.h"
  13. #include "ui/strseq.h"
  14. #include "ui/pushbtn.h"
  15.  
  16. class AppWindow: public UI_Dialog {
  17.  
  18. public:
  19.     AppWindow ();
  20.  
  21.     bool HandleChildEvent (const UI_Event& e);
  22.  
  23.  
  24. protected:
  25.     class SampleStringCanvas*          _canvas;
  26.     UI_StringViewSingleSel*            _strView;
  27.     UI_Label*                          _label;
  28.     const CL_Sequence<UI_FontInfo>&    _allFonts;
  29.     UI_ToggleButton*                   _underline;
  30.     UI_ToggleButton*                   _strikeOut;
  31.     UI_StringEditor*                   _pointSize;
  32.     UI_StringSequence                  _strSeq;
  33.     UI_PushButton*                     _button;
  34. };
  35.  
  36. #endif /* _appwin_h_ */
  37.