home *** CD-ROM | disk | FTP | other *** search
- // Microworks ObjectMate 2.6
- //
- // "SFX Class Library"
- //
- // An ObjectWindows 2.0 extension for Borland C++ 4.0
- //
- // Copyright 1992-94 Microworks Sydney, Australia.
- //
- // SSHADE.H
-
- #if !defined(__SFX_SSHADE_H)
- #define __SFX_SSHADE_H
-
- #if !defined(__OWL_GROUPBOX_H)
- #include <owl\groupbox.h>
- #endif
-
- // class TSFXShade
-
- class _OWLCLASS TSFXShade : public TGroupBox
- {
- public:
- TSFXShade(TWindow* parent,
- int id,
- const char far* text,
- int X, int Y, int W, int H,
- TModule* module = 0);
-
- TSFXShade(TWindow* parent, int resourceId, TModule* module = 0);
-
- protected:
- char far* GetClassName();
-
- DECLARE_STREAMABLE_FROM_BASE(_OWLCLASS, TSFXShade, TGroupBox);
- };
-
- #endif //__SFX_SSHADE_H
-