Up

NSInputManager class documentation

Authors

Generated by root

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
Standards:

Description forthcoming.


Instance Variables

Method summary

currentInputManager 

+ (NSInputManager*) currentInputManager;

Description forthcoming.


describeKeyStroke: withModifiers: 

+ (NSString*) describeKeyStroke: (unichar)character withModifiers: (unsigned int)modifiers;

Description forthcoming.


parseKey: intoCharacter: andModifiers: 

+ (BOOL) parseKey: (NSString*)key intoCharacter: (unichar*)character andModifiers: (unsigned int*)modifiers;

Description forthcoming.


handleKeyboardEvents: client: 

- (void) handleKeyboardEvents: (NSArray*)eventArray client: (id)client;

Description forthcoming.


handleMouseEvent: 

- (BOOL) handleMouseEvent: (NSEvent*)theMouseEvent;

Description forthcoming.


initWithName: host: 

- (id) initWithName: (NSString*)inputServerName host: (NSString*)hostName;

Description forthcoming.


language 

- (NSString*) language;

Description forthcoming.


loadBindingsFromFile: 

- (void) loadBindingsFromFile: (NSString*)fullPath;

Description forthcoming.


localizedInputManagerName 

- (NSString*) localizedInputManagerName;

Description forthcoming.


markedTextAbandoned: 

- (void) markedTextAbandoned: (id)client;

Description forthcoming.


markedTextSelectionChanged: client: 

- (void) markedTextSelectionChanged: (NSRange)newSel client: (id)client;

Description forthcoming.


quoteNextKeyStroke 

- (void) quoteNextKeyStroke;

Description forthcoming.


resetInternalState 

- (void) resetInternalState;

Description forthcoming.


wantsToDelayTextChangeNotifications 

- (BOOL) wantsToDelayTextChangeNotifications;

Description forthcoming.


wantsToHandleMouseEvents 

- (BOOL) wantsToHandleMouseEvents;

Description forthcoming.


wantsToInterpretAllKeystrokes 

- (BOOL) wantsToInterpretAllKeystrokes;

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
Standards:
  • MacOS-X
  • OpenStep
  • GNUstep

Description forthcoming.

Method summary

attributedSubstringFromRange: 

- (NSAttributedString*) attributedSubstringFromRange: (NSRange)theRange;

Description forthcoming.


characterIndexForPoint: 

- (unsigned int) characterIndexForPoint: (NSPoint)thePoint;

Description forthcoming.


conversationIdentifier 

- (long) conversationIdentifier;

Description forthcoming.


doCommandBySelector: 

- (void) doCommandBySelector: (SEL)aSelector;

Description forthcoming.


firstRectForCharacterRange: 

- (NSRect) firstRectForCharacterRange: (NSRange)theRange;

Description forthcoming.


hasMarkedText 

- (BOOL) hasMarkedText;

Description forthcoming.


insertText: 

- (void) insertText: (id)aString;

Description forthcoming.


markedRange 

- (NSRange) markedRange;

Description forthcoming.


selectedRange 

- (NSRange) selectedRange;

Description forthcoming.


setMarkedText: selectedRange: 

- (void) setMarkedText: (id)aString selectedRange: (NSRange)selRange;

Description forthcoming.


unmarkText 

- (void) unmarkText;

Description forthcoming.


validAttributesForMarkedText 

- (NSArray*) validAttributesForMarkedText;

Description forthcoming.



Up