home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / mobjm260 / sstatic.cp_ / sstatic.cp
Encoding:
Text File  |  1994-09-06  |  981 b   |  45 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.CPP 
  10.  
  11. #include <owl\owlpch.h>
  12. #include <sfx\sfx200.h>
  13. #include "sfx\sstatic.h"
  14.  
  15. IMPLEMENT_STREAMABLE_FROM_BASE(TSFXStatic, TStatic);
  16.  
  17. //    constructor for a TSFXStatic object
  18.  
  19. TSFXStatic::TSFXStatic(TWindow*        parent,
  20.                        int             id,
  21.                        const char far* title,
  22.                        int x, int y, int w, int h,
  23.                        UINT            textLen,
  24.                        TModule*        module)
  25.     :TStatic(parent, id, title, x, y, w, h, textLen, module)
  26. {
  27. }
  28.  
  29. //    constructor for a TSFXStatic object created from a resource definition
  30.  
  31. TSFXStatic::TSFXStatic(TWindow* parent,
  32.                        int      resourceId,
  33.                        UINT     textLen,
  34.                        TModule* module)
  35.     :TStatic(parent, resourceId, textLen, module)
  36. {
  37. }
  38.  
  39. char far*
  40. TSFXStatic::GetClassName()
  41. {
  42.     return "SFXSTATIC";
  43. }
  44.  
  45.