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

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