Up

NSInputManager class documentation

Authors

Generated by builder

Contents -

  1. Software documentation for the NSInputManager class
  2. Software documentation for the NSTextInput protocol

Software documentation for the NSInputManager class

NSInputManager : NSObject

Declared in:
AppKit/NSInputManager.h
Conforms to:
NSTextInput
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


Instance Variables

Method summary

currentInputManager 

+ (NSInputManager*) currentInputManager;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


describeKeyStroke: withModifiers: 

+ (NSString*) describeKeyStroke: (unichar)character withModifiers: (unsigned int)modifiers;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


parseKey: intoCharacter: andModifiers: 

+ (BOOL) parseKey: (NSString*)key intoCharacter: (unichar*)character andModifiers: (unsigned int*)modifiers;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


handleKeyboardEvents: client: 

- (void) handleKeyboardEvents: (NSArray*)eventArray client: (id)client;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


handleMouseEvent: 

- (BOOL) handleMouseEvent: (NSEvent*)theMouseEvent;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


initWithName: host: 

- (id) initWithName: (NSString*)inputServerName host: (NSString*)hostName;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


language 

- (NSString*) language;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


loadBindingsFromFile: 

- (void) loadBindingsFromFile: (NSString*)fullPath;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


localizedInputManagerName 

- (NSString*) localizedInputManagerName;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


markedTextAbandoned: 

- (void) markedTextAbandoned: (id)client;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


markedTextSelectionChanged: client: 

- (void) markedTextSelectionChanged: (NSRange)newSel client: (id)client;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


quoteNextKeyStroke 

- (void) quoteNextKeyStroke;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


resetInternalState 

- (void) resetInternalState;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


wantsToDelayTextChangeNotifications 

- (BOOL) wantsToDelayTextChangeNotifications;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


wantsToHandleMouseEvents 

- (BOOL) wantsToHandleMouseEvents;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


wantsToInterpretAllKeystrokes 

- (BOOL) wantsToInterpretAllKeystrokes;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.




Instance Variables for NSInputManager Class

_abortCharacter

@protected unichar _abortCharacter;

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.


_abortFlags

@protected unsigned int _abortFlags;

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.


_currentBindingTable

@protected GSKeyBindingTable* _currentBindingTable;

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.


_currentClient

@protected id _currentClient;

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.


_insertControlKeystrokes

@protected BOOL _insertControlKeystrokes;

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.


_interpretNextKeyStrokeLiterally

@protected BOOL _interpretNextKeyStrokeLiterally;

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.


_pendingKeyEvents

@protected NSMutableArray* _pendingKeyEvents;

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.


_rootBindingTable

@protected GSKeyBindingTable* _rootBindingTable;

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.





Software documentation for the NSTextInput protocol

NSTextInput

Declared in:
AppKit/NSInputManager.h
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

Method summary

attributedSubstringFromRange: 

- (NSAttributedString*) attributedSubstringFromRange: (NSRange)theRange;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


characterIndexForPoint: 

- (unsigned int) characterIndexForPoint: (NSPoint)thePoint;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


conversationIdentifier 

- (long) conversationIdentifier;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


doCommandBySelector: 

- (void) doCommandBySelector: (SEL)aSelector;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


firstRectForCharacterRange: 

- (NSRect) firstRectForCharacterRange: (NSRange)theRange;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


hasMarkedText 

- (BOOL) hasMarkedText;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


insertText: 

- (void) insertText: (id)aString;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


markedRange 

- (NSRange) markedRange;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


selectedRange 

- (NSRange) selectedRange;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


setMarkedText: selectedRange: 

- (void) setMarkedText: (id)aString selectedRange: (NSRange)selRange;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


unmarkText 

- (void) unmarkText;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


validAttributesForMarkedText 

- (NSArray*) validAttributesForMarkedText;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.



Up