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