C# Class ACAT.Extensions.Default.FunctionalAgents.PhraseSpeakAgent.PhraseSpeakAgent

Inheritance: ACAT.Lib.Core.AgentManagement.FunctionalAgentBase
Afficher le fichier Open project: brlima94/acat-localization Class Usage Examples

Méthodes publiques

Méthode Description
Activate ( ) : bool

Invoked when the Functional agent is activated. This is the entry point for the functional agent. Creates the Phrases scanner, subscribes to events

CheckWidgetEnabled ( ACAT.Lib.Core.AgentManagement.CheckEnabledArgs arg ) : void

Invoked to check if a scanner button should be enabled. Uses context to determine the 'enabled' state.

Confirm ( String prompt ) : bool

Get confirmation from the user

OnFocusChanged ( ACAT.Lib.Core.Utility.WindowActivityMonitorInfo monitorInfo, bool &handled ) : void

Invoked when the focus changes either in the active window or when the active window itself changes.

OnRequestClose ( ) : bool

A request came in to close the agent. We MUST quit if this call is ever made

OnRunCommand ( String command, object commandArg, bool &handled ) : void

Invoked when there is a request to run a command. This could as a result of the user activating a button on the scanner and there is a command associated with the button

Méthodes protégées

Méthode Description
createEditControlTextInterface ( IntPtr handle, AutomationElement focusedElement, bool &handled ) : ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase

Creates a text control agent object

Private Methods

Méthode Description
PhraseSpeakFormClosing ( object sender, FormClosingEventArgs e ) : void

Handler for when the Phrases scanner is closing.

PhraseSpeakFormEvtDone ( bool flag ) : void

Event handler for event raised when the user wants to quit

PhraseSpeakFormEvtShowScanner ( object sender, EventArgs e ) : void

Event handler to display the alphabet scanner

closeScanner ( ) : void

Closes the Phrases scanner

quit ( bool showConfirmDialog = true ) : void

User wants to quit. Show confirmation and quit if user chooses to

subscribeToEvents ( ) : void

Subscribes to events

unsubscribeFromEvents ( ) : void

Unsubscribe events

Method Details

Activate() public méthode

Invoked when the Functional agent is activated. This is the entry point for the functional agent. Creates the Phrases scanner, subscribes to events
public Activate ( ) : bool
Résultat bool

CheckWidgetEnabled() public méthode

Invoked to check if a scanner button should be enabled. Uses context to determine the 'enabled' state.
public CheckWidgetEnabled ( ACAT.Lib.Core.AgentManagement.CheckEnabledArgs arg ) : void
arg ACAT.Lib.Core.AgentManagement.CheckEnabledArgs info about the scanner button
Résultat void

Confirm() public static méthode

Get confirmation from the user
public static Confirm ( String prompt ) : bool
prompt String prompt to display
Résultat bool

OnFocusChanged() public méthode

Invoked when the focus changes either in the active window or when the active window itself changes.
public OnFocusChanged ( ACAT.Lib.Core.Utility.WindowActivityMonitorInfo monitorInfo, bool &handled ) : void
monitorInfo ACAT.Lib.Core.Utility.WindowActivityMonitorInfo Info about focused element
handled bool was this handled
Résultat void

OnRequestClose() public méthode

A request came in to close the agent. We MUST quit if this call is ever made
public OnRequestClose ( ) : bool
Résultat bool

OnRunCommand() public méthode

Invoked when there is a request to run a command. This could as a result of the user activating a button on the scanner and there is a command associated with the button
public OnRunCommand ( String command, object commandArg, bool &handled ) : void
command String command to run
commandArg object any optional arguments
handled bool was this handled?
Résultat void

createEditControlTextInterface() protected méthode

Creates a text control agent object
protected createEditControlTextInterface ( IntPtr handle, AutomationElement focusedElement, bool &handled ) : ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase
handle System.IntPtr handle of the control in focus
focusedElement System.Windows.Automation.AutomationElement the automation object associated with the control
handled bool was this handled?
Résultat ACAT.Lib.Core.AgentManagement.TextInterface.TextControlAgentBase