home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / uidemo / menu1 / box.h < prev    next >
C/C++ Source or Header  |  1995-01-09  |  486b  |  25 lines

  1. #ifndef _box_h_
  2. #define _box_h_
  3.  
  4. #include "ui/composit.h"
  5. #include "ui/strseq.h"
  6. #include "ui/strview.h"
  7.  
  8. class Box: public UI_CompositeVObject {
  9.  
  10. public:
  11.     Box (UI_CompositeVObject* parent, const UI_Rectangle& shape);
  12.     ~Box ();
  13.  
  14.     UI_StringSequence& Sequence () { return *_strseq;};
  15.     
  16. protected:
  17.     bool HandleChildEvent(const UI_Event& e);
  18.     UI_StringSequence*          _strseq;
  19.     UI_StringViewSingleSel*     _singl;
  20.     UI_StringViewMultiSel*      _multi;
  21. };
  22.  
  23.  
  24. #endif
  25.