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