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