Skip to main content

Class: AbstractG3000GtcPlugin

An abstract implementation of G3000GtcPlugin that by default does nothing. Subclasses should override the appropriate methods to provide desired functionality.

Hierarchy

Implements

Constructors

constructor

new AbstractG3000GtcPlugin(binder): AbstractG3000GtcPlugin

Creates an instance of a Plugin.

Parameters

NameTypeDescription
binderG3000GtcPluginBinderThe avionics specific plugin binder to accept from the system.

Returns

AbstractG3000GtcPlugin

Inherited from

AvionicsPlugin<G3000GtcPluginBinder>.constructor

Defined in

sdk/components/FSComponent.ts:1424

Properties

binder

Protected Readonly binder: G3000GtcPluginBinder

The avionics specific plugin binder to accept from the system.

Implementation of

G3000GtcPlugin.binder

Inherited from

AvionicsPlugin.binder

Defined in

sdk/components/FSComponent.ts:1424


onComponentCreated

Optional onComponentCreated: (component: DisplayComponent<any, []>) => void

An optional hook called when a component is created. If this hook is present, it will be called for EVERY component instantiation, so be sure to ensure that this code is well optimized.

Type declaration

▸ (component): void

An optional hook called when a component is created. If this hook is present, it will be called for EVERY component instantiation, so be sure to ensure that this code is well optimized.

Parameters
NameType
componentDisplayComponent<any, []>
Returns

void

Implementation of

G3000GtcPlugin.onComponentCreated

Inherited from

AvionicsPlugin.onComponentCreated

Defined in

sdk/components/FSComponent.ts:1444


onComponentCreating

Optional onComponentCreating: (constructor: DisplayComponentFactory<any, []>, props: any) => undefined | DisplayComponent<any, []>

An optional hook called when a component is about to be created. Returning a component causes that component to be used instead of the one that was to be created, and returning undefined will cause the original component to be created. If this hook is present, it will be called for EVERY component instantiation, so be sure to ensure that this code is well optimized.

Type declaration

▸ (constructor, props): undefined | DisplayComponent<any, []>

An optional hook called when a component is about to be created. Returning a component causes that component to be used instead of the one that was to be created, and returning undefined will cause the original component to be created. If this hook is present, it will be called for EVERY component instantiation, so be sure to ensure that this code is well optimized.

Parameters
NameType
constructorDisplayComponentFactory<any, []>
propsany
Returns

undefined | DisplayComponent<any, []>

Implementation of

G3000GtcPlugin.onComponentCreating

Inherited from

AvionicsPlugin.onComponentCreating

Defined in

sdk/components/FSComponent.ts:1437


onComponentRendered

Optional onComponentRendered: (node: VNode) => void

An optional hook called when a component has completed rendering. If this hook is present, it will be called for EVERY component render completion, so be sure to ensure that this code is well optimized.

Type declaration

▸ (node): void

An optional hook called when a component has completed rendering. If this hook is present, it will be called for EVERY component render completion, so be sure to ensure that this code is well optimized.

Parameters
NameType
nodeVNode
Returns

void

Implementation of

G3000GtcPlugin.onComponentRendered

Inherited from

AvionicsPlugin.onComponentRendered

Defined in

sdk/components/FSComponent.ts:1451

Methods

getKnobStateOverrides

getKnobStateOverrides(gtcService): null | Readonly<GtcKnobStatePluginOverrides>

Gets a set of GTC knob control state overrides. The knob control state overrides (if they are not null) will be applied in place of the states defined by the base G3000 system and any plugins that were loaded before this one.

Parameters

NameTypeDescription
gtcServiceGtcServiceThe GTC service.

Returns

null | Readonly<GtcKnobStatePluginOverrides>

A set of GTC knob state overrides, or null if this plugin does not define any overrides.

Implementation of

G3000GtcPlugin.getKnobStateOverrides

Defined in

workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/GTC/G3000GTCPlugin.ts:84


getLabelBarHandlers

getLabelBarHandlers(): null | Readonly<LabelBarPluginHandlers>

Gets a set of GTC label bar handlers. The labels returned by the handlers (if they are not null) will be applied in place of the labels defined by the base G3000 system and any plugins that were loaded before this one.

Returns

null | Readonly<LabelBarPluginHandlers>

A set of GTC label bar handlers, or null if this plugin does not define any handlers.

Implementation of

G3000GtcPlugin.getLabelBarHandlers

Defined in

workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/GTC/G3000GTCPlugin.ts:90


loadCss

loadCss(uri): Promise<void>

Loads a CSS file into the instrument.

Parameters

NameTypeDescription
uristringThe URI to the CSS file.

Returns

Promise<void>

Implementation of

G3000GtcPlugin.loadCss

Inherited from

AvionicsPlugin.loadCss

Defined in

sdk/components/FSComponent.ts:1457


onGtcInteractionEvent

onGtcInteractionEvent(event): boolean

Handles a GtcInteractionEvent.

Parameters

NameTypeDescription
eventGtcInteractionEventThe event to handle.

Returns

boolean

Whether the event was handled.

Implementation of

G3000GtcPlugin.onGtcInteractionEvent

Defined in

workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/GTC/G3000GTCPlugin.ts:96


onInit

onInit(): void

Lifecycle method called during instrument initialization.

Returns

void

Implementation of

G3000GtcPlugin.onInit

Defined in

workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/GTC/G3000GTCPlugin.ts:72


onInstalled

onInstalled(): void

A callback run when the plugin has been installed.

Returns

void

Implementation of

G3000GtcPlugin.onInstalled

Overrides

AvionicsPlugin.onInstalled

Defined in

workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/GTC/G3000GTCPlugin.ts:67


registerGtcViews

registerGtcViews(gtcService, context): void

Registers GTC views.

Parameters

NameTypeDescription
gtcServiceGtcServiceThe GTC service with which to register views.
contextReadonly<G3000GtcViewContext>A context containing references to items used to create the base G3000's GTC views.

Returns

void

Implementation of

G3000GtcPlugin.registerGtcViews

Defined in

workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/GTC/G3000GTCPlugin.ts:78