home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / IndexingKit / QueryFieldEditor / QueryFieldEditor.h next >
Text File  |  1992-07-30  |  355b  |  17 lines

  1. /*
  2. QueryFieldEditor.h - Copyright (c) 1992 NeXT Computer, Inc.
  3. */
  4.  
  5. #import    <appkit/appkit.h>
  6. #import    <btree/protocols.h>
  7.  
  8. @interface QueryFieldEditor: Text
  9. {
  10.     id <IXCursorPositioning>    cursor;
  11. }
  12.  
  13. - setCursor:(id <IXCursorPositioning>)aCursor;
  14. - initFrame:(NXRect *)frameRect text:(char *)theText alignment:(int)mode;
  15. - keyDown:(NXEvent *)theEvent;
  16.  
  17. @end