home *** CD-ROM | disk | FTP | other *** search
- #ifndef _ENTRYFIELD_H_
- #define _ENTRYFIELD_H_
-
- #ifndef _WINDOW_H_
- #include <pm/Window.h>
- #endif
-
- #ifndef _SELECTION_H_
- #include <pm/Selection.h>
- #endif
-
- @interface EntryField : Window <Selection>
- {
- }
-
- - initWithId: (USHORT) anId andFlags: (ULONG) flags in: (Window *) parent;
-
- // protocol Selection
- - clearSelection;
- - copySelection;
- - cutSelection;
- - pasteSelection;
-
- // methods for access to PM messages
- - (BOOL) changed;
- - (BOOL) readOnly;
- - setReadOnly;
- - setReadWrite;
- - setTextLimit: (SHORT) limit;
-
- @end
-
- #endif
-