home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / classlib.zip / pm.zip / usr / include / pm / entryfield.h < prev    next >
C/C++ Source or Header  |  1994-08-31  |  552b  |  34 lines

  1. #ifndef _ENTRYFIELD_H_
  2. #define _ENTRYFIELD_H_
  3.  
  4. #ifndef _WINDOW_H_
  5. #include <pm/Window.h>
  6. #endif
  7.  
  8. #ifndef _SELECTION_H_
  9. #include <pm/Selection.h>
  10. #endif
  11.  
  12. @interface EntryField : Window <Selection>
  13. {
  14. }
  15.  
  16. - initWithId: (USHORT) anId andFlags: (ULONG) flags in: (Window *) parent;
  17.  
  18. // protocol Selection
  19. - clearSelection;
  20. - copySelection;
  21. - cutSelection;
  22. - pasteSelection;
  23.  
  24. // methods for access to PM messages
  25. - (BOOL) changed;
  26. - (BOOL) readOnly;
  27. - setReadOnly;
  28. - setReadWrite;
  29. - setTextLimit: (SHORT) limit;
  30.  
  31. @end
  32.  
  33. #endif
  34.