home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / sshade.h_ / sshade.h
Encoding:
C/C++ Source or Header  |  1994-09-06  |  815 b   |  38 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. //  SSHADE.H 
  10.  
  11. #if !defined(__SFX_SSHADE_H)
  12. #define __SFX_SSHADE_H
  13.  
  14. #if !defined(__OWL_GROUPBOX_H)
  15.   #include <owl\groupbox.h>
  16. #endif
  17.  
  18. //    class TSFXShade
  19.  
  20. class _OWLCLASS TSFXShade : public TGroupBox
  21. {
  22. public:
  23.     TSFXShade(TWindow*        parent,
  24.               int             id,
  25.               const char far* text,
  26.               int X, int Y, int W, int H,
  27.               TModule*        module = 0);
  28.  
  29.     TSFXShade(TWindow* parent, int resourceId, TModule*   module = 0);
  30.  
  31.   protected:
  32.     char far* GetClassName();
  33.  
  34.   DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXShade, TGroupBox);
  35. };
  36.  
  37. #endif //__SFX_SSHADE_H
  38.