home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / ClassEditor.0.4 / Source / MiscSources.subproj / MiscEmacsText.h < prev    next >
Encoding:
Text File  |  1995-06-07  |  546 b   |  20 lines

  1. #import <appkit/Text.h>
  2.  
  3. @interface MiscEmacsText:Text
  4. - awakeFromNib ;
  5. - clearMessage: sender ;
  6. - format: sender ;
  7. - keyDown:(NXEvent *)theEvent ;
  8. - mouseDown: (NXEvent *) anEvent ;
  9. - useEmacsBindings: (BOOL) YESorNO ;
  10. @end
  11.  
  12. @interface MiscEmacsText(Dropping)
  13.  
  14. - (BOOL)readDragData:(Pasteboard *)pboard;
  15. - (NXDragOperation)draggingEntered:(id <NXDraggingInfo>)sender;
  16. - (BOOL)performDragOperation:(id <NXDraggingInfo>)sender;
  17. - (BOOL)prepareForDragOperation:(id <NXDraggingInfo>)sender;
  18. - concludeDragOperation:(id <NXDraggingInfo>)sender;
  19.  
  20. @end