home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / scheck.h_ / scheck.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  900 b   |  44 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. //  SCHECK.H 
  10.  
  11. #if !defined(__SFX_SCHECK_H)
  12. #define __SFX_SCHECK_H
  13.  
  14. #if !defined(__OWL_CHECKBOX_H)
  15.   #include <owl\checkbox.h>
  16. #endif
  17.  
  18. class _OWLCLASS TGroupBox;
  19.  
  20. //    class TSFXCheckBox
  21.  
  22. class _OWLCLASS TSFXCheckBox : public TCheckBox
  23. {
  24. public:
  25.     TSFXCheckBox(TWindow*        parent,
  26.                  int             id,
  27.                  const char far* title,
  28.                  int x, int y, int w, int h,
  29.                  TGroupBox*      group,
  30.                  TModule*        module = 0);
  31.  
  32.     TSFXCheckBox(TWindow*   parent,
  33.                  int        resourceId,
  34.                  TGroupBox* group,
  35.                  TModule*   module = 0);
  36.  
  37.   protected:
  38.     char far* GetClassName();
  39.  
  40.   DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXCheckBox, TCheckBox);
  41. };
  42.  
  43. #endif    //    __SFX_SCHECK_H
  44.