home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / OWLBWCC.PAK / BCHKBOX.H < prev    next >
C/C++ Source or Header  |  1995-08-29  |  1KB  |  39 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //   Defines class TBCheckBox.
  4. //----------------------------------------------------------------------------
  5. #ifndef __BCHKBOX_H
  6. #define __BCHKBOX_H
  7.  
  8. #ifndef __CHECKBOX_H
  9.   #include <owl\checkbox.h>
  10. #endif
  11.  
  12. class  TGroupBox;
  13.  
  14. //
  15. //  class TBCheckBox
  16. //  ----- ----------
  17. //
  18. class  TBCheckBox : public TCheckBox {
  19.   public:
  20.     TBCheckBox(TWindow*        parent,
  21.                int             id,
  22.                const char far* title,
  23.                int x, int y, int w, int h,
  24.                TGroupBox*      group,
  25.                TModule*        module = 0);
  26.  
  27.     TBCheckBox(TWindow*   parent,
  28.                int        resourceId,
  29.                TGroupBox* group,
  30.                TModule*   module = 0);
  31.  
  32.   protected:
  33.     char far* GetClassName();
  34.  
  35.   DECLARE_STREAMABLE_FROM_BASE(, TBCheckBox, TCheckBox);
  36. };
  37.  
  38. #endif //__BCHKBOX_H
  39.