home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 038 / dho_9a.zip / EDITTEXT.H < prev    next >
Text File  |  1995-01-02  |  561b  |  31 lines

  1. // Developer Helper Object Set, (C) 1994 Thomas E. Bednarz, Jr.
  2. //  All rights reserved
  3.  
  4. #ifndef __EDITTEXT_H__
  5. #define __EDITTEST_H__
  6.  
  7.  
  8. #include"object.h"
  9. #define INCL_WIN
  10.  
  11. #include<os2.h>
  12. #include"winbase.h"
  13. #include"control.h"
  14.  
  15.  
  16. class TEditText: public TControl
  17. {
  18.  
  19.    public:
  20.       TEditText(TWinBase *parent, ULONG resource);
  21.       virtual ~TEditText();
  22.  
  23.       virtual const char *getClassName();
  24.       void getControlText(PCH buff, ULONG buf_len);
  25.       void setControlText(PCH text);
  26.       LONG getTextLength();
  27. };
  28.  
  29.  
  30. #endif
  31.