home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 21.ddi / OWLBWCC.PAK / BRADIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  1.1 KB  |  38 lines

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