home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / sdivider.h_ / sdivider.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  852 b   |  40 lines

  1. //    Microworks ObjectMate  2.6
  2. //
  3. //  "SFX Class Library"
  4. //
  5. //    An ObjectWindows 2.0 extension for Borland C++ 4.0
  6. //
  7. //    Copyright 1992-94 Microworks Sydney, Australia.
  8. //
  9. //  SDIVIDER.H 
  10.  
  11. #if !defined(__SFX_SDIVIDER_H)
  12. #define __SFX_SDIVIDER_H
  13.  
  14. #if !defined(__OWL_CONTROL_H)
  15. #include <owl\control.h>
  16. #endif
  17.  
  18. //    class TSFXDivider
  19.  
  20. class _OWLCLASS TSFXDivider : public TControl
  21. {
  22.   public:
  23.     TSFXDivider(TWindow*        parent,
  24.                 int             id,
  25.                 int x, int y, int length,
  26.                 BOOL            isVertical,
  27.                 BOOL            isHump,
  28.                 BOOL            borStyle,
  29.                 TModule*        module = 0);
  30.  
  31.     TSFXDivider(TWindow* parent, int resourceId, TModule* module = 0);
  32.  
  33.   protected:
  34.     char far*    GetClassName();
  35.  
  36.   DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXDivider, TControl);
  37. };
  38.  
  39. #endif //    __SFX_SDIVIDER_H
  40.