Skip to main content

Interface: GtcListSelectTouchButtonProps<S>

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:13

Component props for GtcListSelectTouchButton.

Extends

Type Parameters

Type Parameter
S extends MutableSubscribable<any, any>

Properties

children?

optional children: DisplayChildren[]

Defined in: sdk/components/FSComponent.ts:122

The children of the display component.

Inherited from

Omit.children


class?

optional class: string | SubscribableSet<string>

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:168

CSS class(es) to apply to the button's root element.

Inherited from

Omit.class


dragThresholdPx?

optional dragThresholdPx: number

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:156

The distance, in pixels, the mouse can click and drag before the pad begins to ignore mouse events. Ignored if inhibitOnDrag is false. Defaults to 40 pixels.

Inherited from

Omit.dragThresholdPx


focusOnDrag?

optional focusOnDrag: boolean

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcValueTouchButton.tsx:16

Whether the pad should focus all mouse events when dragging, preventing them from bubbling up to any ancestors in the DOM tree. Defaults to true.

Inherited from

Omit.focusOnDrag


gtcService

gtcService: GtcService

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:17

The GTC service.


highlightButtonWhileListIsOpen?

optional highlightButtonWhileListIsOpen: boolean

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:32

When true, the button will be highlighted while the list is open, and the isHighlighted prop will be ignored. Defaults to false.


inhibitOnDrag?

optional inhibitOnDrag: boolean

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:150

Whether the button should stop responding to mouse events and instead forward them to its parent after clicking and dragging for a certain distance defined by dragThresholdPx along the axis defined by inhibitOnDragAxis. When mouse events are inhibited, the button cannot be primed or held. Defaults to false.

Inherited from

Omit.inhibitOnDrag


inhibitOnDragAxis?

optional inhibitOnDragAxis: "both" | "x" | "y"

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:162

The axis along which dragging will trigger the inhibit function. Ignored if inhibitOnDrag is false. Defaults to 'both'.

Inherited from

Omit.inhibitOnDragAxis


isEnabled?

optional isEnabled: boolean | Subscribable<boolean>

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:79

Whether the button is enabled, or a subscribable which provides it. Disabled buttons cannot be touched, primed, pressed, or held. Defaults to true.

Inherited from

Omit.isEnabled


isHighlighted?

optional isHighlighted: boolean | Subscribable<boolean>

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:82

Whether the button is highlighted, or a subscribable which provides it. Defaults to false.

Inherited from

Omit.isHighlighted


isInList?

optional isInList: boolean

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcValueTouchButton.tsx:22

Whether the button is in a scrollable list. If true, will enable the inhibit on drag function unless otherwise specified by the inhibitOnDrag prop. Defaults to false.

Inherited from

Omit.isInList


isVisible?

optional isVisible: boolean | Subscribable<boolean>

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:85

Whether the button is visible. Defaults to true.

Inherited from

Omit.isVisible


label?

optional label: string | VNode | Subscribable<string>

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:94

The label for the button. Can be defined as either a static string, a subscribable which provides the label string, or a VNode. If not defined, the button will not have a label.

If the label is defined as a VNode, all first-level DisplayComponents in the VNode tree will be destroyed when the button is destroyed.

Inherited from

Omit.label


listDialogKey

listDialogKey: string

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:20

The key of the GTC list dialog the button will open as a selection list.


listParams

listParams: (state) => GtcListDialogParams<MutableSubscribableInputType<S>> | GtcListDialogParams<MutableSubscribableInputType<S>>

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:38

Parameters to pass to the selection list dialog, or a function which will return the parameters when called each time the list is opened.


listScrollAxis?

optional listScrollAxis: "x" | "y"

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcValueTouchButton.tsx:28

The scroll axis of the button's parent list. Ignored if isInList is false. Sets the button's inhibit on drag axis unless otherwise specified by the inhibitOnDragAxis prop. Defaults to y.

Inherited from

Omit.listScrollAxis


occlusionType?

optional occlusionType: GtcViewOcclusionType

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:23

The occlusion type applied to views beneath the popup. Defaults to 'darken'.


onCancelled()?

optional onCancelled: <B>(state, button) => void

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:49

A callback function which will be when the list was opened, and then cancelled.

Type Parameters

Type ParameterDefault type
B extends GtcListSelectTouchButton<S>GtcListSelectTouchButton<S>

Parameters

ParameterType
stateS
buttonB

Returns

void


onDestroy()?

optional onDestroy: () => void

Defined in: garminsdk/components/touchbutton/TouchButton.tsx:165

A callback function which will be called when the button is destroyed.

Returns

void

Inherited from

Omit.onDestroy


onHoldEnded()?

optional onHoldEnded: <B>(button, state, totalHoldDuration, endReason) => void

Defined in: garminsdk/components/touchbutton/ValueTouchButton.tsx:75

A function which is called when the button exits the held state.

Type Parameters

Type ParameterDefault type
B extends ValueTouchButton<S>ValueTouchButton<S>

Parameters

ParameterTypeDescription
buttonBThe button that was held.
stateSThe state that is bound to the button.
totalHoldDurationnumberThe total amount of time, in milliseconds, that the button was held.
endReasonTouchButtonHoldEndReasonThe reason that the button exited the held state.

Returns

void

Inherited from

Omit.onHoldEnded


onHoldStarted()?

optional onHoldStarted: <B>(button, state) => TouchButtonHoldAction

Defined in: garminsdk/components/touchbutton/ValueTouchButton.tsx:47

A function which is called when the button enters the held state. If not defined, then the button will default to taking no specific action when it enters the held state.

Type Parameters

Type ParameterDefault type
B extends ValueTouchButton<S>ValueTouchButton<S>

Parameters

ParameterTypeDescription
buttonBThe button that is held.
stateSThe state that is bound to the button.

Returns

TouchButtonHoldAction

The action to take. Ignored if the value is equal to TouchButtonHoldAction.EndHold.

Inherited from

Omit.onHoldStarted


onHoldTick()?

optional onHoldTick: <B>(button, state, dt, totalTime, timeSinceLastPress) => TouchButtonHoldAction

Defined in: garminsdk/components/touchbutton/ValueTouchButton.tsx:60

A function which is called every frame when the button is held. If not defined, then the button will default to taking no specific action with each frame tick.

Type Parameters

Type ParameterDefault type
B extends ValueTouchButton<S>ValueTouchButton<S>

Parameters

ParameterTypeDescription
buttonBThe button that is held.
stateSThe state that is bound to the button.
dtnumberThe elapsed time, in milliseconds, since the previous frame.
totalTimenumberThe total amount of time, in milliseconds, that the button has been held.
timeSinceLastPressnumberThe amount of time, in milliseconds, that the button has been held since the last time the button was pressed as a tick action.

Returns

TouchButtonHoldAction

The action to take.

Inherited from

Omit.onHoldTick


onSelected()?

optional onSelected: <B>(value, state, button) => void

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:44

A callback function which will be called every time a value is selected from the list. If not defined, selecting a value from the list will automatically set the button's bound state.

Type Parameters

Type ParameterDefault type
B extends GtcListSelectTouchButton<S>GtcListSelectTouchButton<S>

Parameters

ParameterType
valueMutableSubscribableInputType<S>
stateS
buttonB

Returns

void


onTouched()?

optional onTouched: <B>(button, state) => TouchButtonOnTouchedAction

Defined in: garminsdk/components/touchbutton/ValueTouchButton.tsx:30

A callback function which will be called every time the button is touched (i.e. a mouse down event on the button is detected). If not defined, then the button will default to entering the primed state when touched.

Type Parameters

Type ParameterDefault type
B extends ValueTouchButton<S>ValueTouchButton<S>

Parameters

ParameterTypeDescription
buttonBThe button that was touched.
stateSThe state that is bound to the button.

Returns

TouchButtonOnTouchedAction

The action to take as a result of the button being touched.

Inherited from

Omit.onTouched


ref?

optional ref: NodeReference<any>

Defined in: sdk/components/FSComponent.ts:125

A reference to the display component.

Inherited from

Omit.ref


renderValue?

optional renderValue: VNode | (stateValue) => string | VNode

Defined in: garminsdk/components/touchbutton/ValueTouchButton.tsx:21

A function which renders the value of the button's bound state, or a VNode which renders the value. If not defined, values are rendered into strings via default toString() behavior.

If the rendered value is a VNode, all first-level DisplayComponents in the VNode tree will be destroyed when a new value is rendered or when the button is destroyed.

Inherited from

Omit.renderValue


state

state: S

Defined in: workingtitle-instruments-g3000/html_ui/GTC/Components/TouchButton/GtcListSelectTouchButton.tsx:26

A mutable subscribable whose state will be bound to the button.