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

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //   Defines class TBDivider.  This is a static control that draws
  4. //   a beveled dividing line
  5. //----------------------------------------------------------------------------
  6. #ifndef __BDIVIDER_H
  7. #define __BDIVIDER_H
  8.  
  9. #ifndef __CONTROL_H
  10.   #include <owl\control.h>
  11. #endif
  12.  
  13. //
  14. //  class TBDivider
  15. //  ----- ---------
  16. //
  17. class  TBDivider : public TControl {
  18.   public:
  19.     TBDivider(TWindow*        parent,
  20.               int             id,
  21.               const char far* text,
  22.               int x, int y, int w, int h,
  23.               BOOL            isVertical,
  24.               BOOL            isBump,
  25.               TModule*        module = 0);
  26.  
  27.     TBDivider(TWindow* parent, int resourceId, TModule* module = 0);
  28.  
  29.   protected:
  30.     char far* GetClassName();
  31.  
  32.   DECLARE_STREAMABLE_FROM_BASE(, TBDivider, TControl);
  33. };
  34.  
  35. #endif //__BDIVIDER_H
  36.