home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 21.ddi / OWLBWCC.PAK / BDIVIDER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  1.0 KB  |  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 _EXPCLASS 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(_EXPCLASS, TBDivider, TControl);
  33. };
  34.  
  35. #endif //__BDIVIDER_H
  36.