Up
Authors
- Scott Christley (
scottc@net-community.com
)
-
Abstract class which is basis of command and event
processing
Copyright: (C) 1996,1999 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSResponder.h
- Conforms to:
- NSCoding
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables
Method summary
- (BOOL) acceptsFirstResponder;
Availability: Not in OpenStep/MacOS-X
Returns YES
if the receiver is able to
become the first responder, NO
otherwise.
- (BOOL) becomeFirstResponder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) doCommandBySelector: (SEL)aSelector;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) encodeWithCoder: (NSCoder*)aCoder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) flagsChanged: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) flushBufferedKeyEvents;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) helpRequested: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) initWithCoder: (NSCoder*)aDecoder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) insertText: (id)aString;
Availability: Not in OpenStep/MacOS-X
Tells the receiver to insert the given string. In a
text view the text is typically inserted at the
insertion point, and replaces any selection.
Subclasses should override this method. The
implementation in NSResponder just sends
the message on to the next responder.
Normally, aString will be an
NSString, but in some cases, it might be an
NSAttributedString.
- (NSInterfaceStyle) interfaceStyle;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) interpretKeyEvents: (NSArray*)eventArray;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) keyDown: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) keyUp: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSMenu*) menu;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) mouseDown: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) mouseDragged: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) mouseEntered: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) mouseExited: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) mouseMoved: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) mouseUp: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSResponder*) nextResponder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) noResponderFor: (SEL)eventSelector;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) otherMouseDown: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) otherMouseDragged: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) otherMouseUp: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) performKeyEquivalent: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) performMnemonic: (NSString*)aString;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) resignFirstResponder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) rightMouseDown: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) rightMouseDragged: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) rightMouseUp: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) scrollWheel: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setInterfaceStyle: (NSInterfaceStyle)aStyle;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setMenu: (NSMenu*)aMenu;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setNextResponder: (NSResponder*)aResponder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) shouldBeTreatedAsInkEvent: (NSEvent*)theEvent;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) tryToPerform: (SEL)anAction with: (id)anObject;
Availability: Not in OpenStep/MacOS-X
If the receiver responds to anAction, it
performs that method with anObject as
its argument, discards any return value, and return
YES
.
Otherwise, the next
responder in the chain is asked to perform
anAction and the result of that is
returned.
If no responder in the chain is
able to respond to anAction, then
NO
is returned.
- (NSUndoManager*) undoManager;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) validRequestorForSendType: (NSString*)typeSent returnType: (NSString*)typeReturned;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables for NSResponder Class
@protected NSInterfaceStyle _interface_style;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSResponder* _next_responder;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@public struct _rFlagsType _rFlags;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
- Declared in:
- AppKit/NSResponder.h
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Method summary
- (void) cancelOperation: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) capitalizeWord: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) centerSelectionInVisibleArea: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) changeCaseOfLetter: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) complete: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteBackward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteBackwardByDecomposingPreviousCharacter: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteForward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteToBeginningOfLine: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteToBeginningOfParagraph: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteToEndOfLine: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteToEndOfParagraph: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteToMark: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteWordBackward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) deleteWordForward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) indent: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) insertBacktab: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) insertNewline: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) insertNewlineIgnoringFieldEditor: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) insertParagraphSeparator: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) insertTab: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) insertTabIgnoringFieldEditor: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) lowercaseWord: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveBackward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveBackwardAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveDown: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveDownAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveForward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveForwardAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveLeft: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveLeftAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveRight: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveRightAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveToBeginningOfDocument: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveToBeginningOfLine: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveToBeginningOfParagraph: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveToEndOfDocument: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveToEndOfLine: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveToEndOfParagraph: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveUp: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveUpAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveWordBackward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveWordBackwardAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveWordForward: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) moveWordForwardAndModifySelection: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) pageDown: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) pageUp: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) scrollLineDown: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) scrollLineUp: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) scrollPageDown: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) scrollPageUp: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) selectAll: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) selectLine: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) selectParagraph: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) selectToMark: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) selectWord: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) showContextHelp: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) swapWithMark: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) transpose: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) transposeWords: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) uppercaseWord: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) yank: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Up