Up

NSSpeechRecognizer class documentation

Authors

Generated by Gregory John Casamento,,,

Date: Generated at 2023-12-22 15:07:50 -0500


Contents -

  1. Software documentation for the NSSpeechRecognizer class
  2. Software documentation for the NSSpeechRecognizerDelegate protocol

Software documentation for the NSSpeechRecognizer class

NSSpeechRecognizer : NSObject

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

Description forthcoming.

Instance Variables

Method summary

blocksOtherRecognizers 

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

Description forthcoming.

commands 

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

Description forthcoming.

delegate 

- (id<NSSpeechRecognizerDelegate>) delegate;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

displayCommandsTitle 

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

Description forthcoming.

init 

- (instancetype) init;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

listensInForegroundOnly 

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

Description forthcoming.

setBlocksOtherRecognizers: 

- (void) setBlocksOtherRecognizers: (BOOL)blocksOtherRecognizers;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

setCommands: 

- (void) setCommands: (NSArray*)commands;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

setDelegate: 

- (void) setDelegate: (id<NSSpeechRecognizerDelegate>)delegate;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

setDisplayCommandsTitle: 

- (void) setDisplayCommandsTitle: (NSString*)displayCommandsTitle;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

setListensInForegroundOnly: 

- (void) setListensInForegroundOnly: (BOOL)listensInForegroundOnly;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

startListening 

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

Description forthcoming.

stopListening 

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

Description forthcoming.



Instance Variables for NSSpeechRecognizer Class

_appInForeground

@protected BOOL _appInForeground;
Availability: Not in OpenStep/MacOS-X

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.

_blocksOtherRecognizers

@protected BOOL _blocksOtherRecognizers;
Availability: Not in OpenStep/MacOS-X

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.

_commands

@protected NSArray* _commands;
Availability: Not in OpenStep/MacOS-X

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.

_delegate

@protected id _delegate;
Availability: Not in OpenStep/MacOS-X

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.

_displayCommandsTitle

@protected NSString* _displayCommandsTitle;
Availability: Not in OpenStep/MacOS-X

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.

_isListening

@protected BOOL _isListening;
Availability: Not in OpenStep/MacOS-X

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.

_listensInForegroundOnly

@protected BOOL _listensInForegroundOnly;
Availability: Not in OpenStep/MacOS-X

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.

_uuid

@protected NSUUID* _uuid;
Availability: Not in OpenStep/MacOS-X

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 NSSpeechRecognizerDelegate protocol

NSSpeechRecognizerDelegate

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

Description forthcoming.
Method summary

speechRecognizer: didRecognizeCommand: 

- (void) speechRecognizer: (NSSpeechRecognizer*)sender didRecognizeCommand: (NSString*)command;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


Up