home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / OWLBWCC.PAK / BRADIO.H < prev    next >
C/C++ Source or Header  |  1995-08-29  |  1KB  |  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  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(, TBRadioButton, TRadioButton);
  35. };
  36.  
  37. #endif //__BRADIO_H
  38.