Winter Cardinal UI

Winter Cardinal UI - v0.414.0

Table of contents

References

Classes

Interfaces

Type Aliases

Variables

Functions

References

DButtonFileAs

Renames and re-exports UtilFileAs


DDialogAlign

Renames and re-exports UtilAttachAlign


DMenuAlign

Renames and re-exports UtilAttachAlign

Type Aliases

BuilderConstructor

Ƭ BuilderConstructor: (buffer: BuilderBuffer, vertexOffset: number, indexOffset: number, vertexCount: number, indexCount: number, pointCount: number, vcountPerPoint: number, icountPerPoint: number) => Builder

Type declaration

• (buffer, vertexOffset, indexOffset, vertexCount, indexCount, pointCount, vcountPerPoint, icountPerPoint): Builder

Parameters
Name Type
buffer BuilderBuffer
vertexOffset number
indexOffset number
vertexCount number
indexCount number
pointCount number
vcountPerPoint number
icountPerPoint number
Returns

Builder

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-of-any-uploaded.ts:15


BuilderFlag

Ƭ BuilderFlag: number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/builder.ts:21

src/main/typescript/wcardinal/ui/shape/variant/builder.ts:35


DAlignHorizontal

Ƭ DAlignHorizontal: typeof DAlignHorizontal[keyof typeof DAlignHorizontal]

Defined in

src/main/typescript/wcardinal/ui/d-align-horizontal.ts:6

src/main/typescript/wcardinal/ui/d-align-horizontal.ts:12


DAlignVertical

Ƭ DAlignVertical: typeof DAlignVertical[keyof typeof DAlignVertical]

Defined in

src/main/typescript/wcardinal/ui/d-align-vertical.ts:6

src/main/typescript/wcardinal/ui/d-align-vertical.ts:12


DAlignWith

Ƭ DAlignWith: typeof DAlignWith[keyof typeof DAlignWith]

Defined in

src/main/typescript/wcardinal/ui/d-align-with.ts:6

src/main/typescript/wcardinal/ui/d-align-with.ts:12


DAnimationOnEnd

Ƭ DAnimationOnEnd<TARGET>: (isReverse: boolean, animation: DAnimation<TARGET>) => void

Triggered when an animation ends.

Type parameters

Name
TARGET

Type declaration

▸ (isReverse, animation): void

Parameters
Name Type Description
isReverse boolean true if an animation is playing in reverse
animation DAnimation<TARGET> an instance
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-animation.ts:38


DAnimationOnStart

Ƭ DAnimationOnStart<TARGET>: (isReverse: boolean, animation: DAnimation<TARGET>) => void

A function called when an animation starts.

Type parameters

Name
TARGET

Type declaration

▸ (isReverse, animation): void

Parameters
Name Type Description
isReverse boolean true if an animation is playing in reverse
animation DAnimation<TARGET> an instance
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-animation.ts:15


DAnimationOnStop

Ƭ DAnimationOnStop<TARGET>: (isReverse: boolean, animation: DAnimation<TARGET>) => void

Triggered when an animation stops.

Type parameters

Name
TARGET

Type declaration

▸ (isReverse, animation): void

Parameters
Name Type Description
isReverse boolean true if an animation is playing in reverse
animation DAnimation<TARGET> an instance
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-animation.ts:46


DAnimationOnTime

Ƭ DAnimationOnTime<TARGET>: (time: number, isReverse: boolean, elapsedTime: number, animation: DAnimation<TARGET>) => void

A function called constantly when an animation is on a run.

Type parameters

Name
TARGET

Type declaration

▸ (time, isReverse, elapsedTime, animation): void

Parameters
Name Type Description
time number a timing value in a range [0, 1]
isReverse boolean true if an animation is playing in reverse
elapsedTime number an elapsed time since an animation has started
animation DAnimation<TARGET> an instance
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-animation.ts:25


DAnimationTiming

Ƭ DAnimationTiming<TARGET>: (time: number, animation: DAnimation<TARGET>) => number

An easing function.

Type parameters

Name
TARGET

Type declaration

▸ (time, animation): number

Parameters
Name Type Description
time number a normalized elapsed time
animation DAnimation<TARGET> an instance
Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-animation.ts:54


DBaseInteractive

Ƭ DBaseInteractive: number

Defined in

src/main/typescript/wcardinal/ui/d-base-interactive.ts:13

src/main/typescript/wcardinal/ui/d-base-interactive.ts:36


DBasePointCallback

Ƭ DBasePointCallback: (newX: number, newY: number, oldX: number, oldY: number) => any

Type declaration

▸ (newX, newY, oldX, oldY): any

Parameters
Name Type
newX number
newY number
oldX number
oldY number
Returns

any

Defined in

src/main/typescript/wcardinal/ui/d-base-point.ts:8


DBaseShadow

Ƭ DBaseShadow: "NONE" | "WEAK" | "DEFAULT" | DShadow

Defined in

src/main/typescript/wcardinal/ui/d-base.ts:356


DBaseStateMatcher

Ƭ DBaseStateMatcher: (state: string) => void | boolean

Type declaration

▸ (state): void | boolean

Parameters
Name Type
state string
Returns

void | boolean

Defined in

src/main/typescript/wcardinal/ui/d-base-state-matcher.ts:1


DBaseStateSetImplObservableOnChange

Ƭ DBaseStateSetImplObservableOnChange: (newState: DBaseStateSet, oldState: DBaseStateSet) => void

Type declaration

▸ (newState, oldState): void

Parameters
Name Type
newState DBaseStateSet
oldState DBaseStateSet
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-base-state-set-impl-observable.ts:9


DBorderMask

Ƭ DBorderMask: number

Defined in

src/main/typescript/wcardinal/ui/d-border-mask.ts:15

src/main/typescript/wcardinal/ui/d-border-mask.ts:40


DButtonBaseWhen

Ƭ DButtonBaseWhen: typeof DButtonBaseWhen[keyof typeof DButtonBaseWhen]

Defined in

src/main/typescript/wcardinal/ui/d-button-base-when.ts:9

src/main/typescript/wcardinal/ui/d-button-base-when.ts:17


DButtonFileChecker

Ƭ DButtonFileChecker: () => Promise<unknown> | boolean

Type declaration

▸ (): Promise<unknown> | boolean

Returns

Promise<unknown> | boolean

Defined in

src/main/typescript/wcardinal/ui/d-button-file.ts:32


DButtonSelectGetter

Ƭ DButtonSelectGetter<VALUE, DIALOG>: (dialog: DIALOG) => VALUE | null

A function to retrieve a selected value from a dialog.

Type parameters

Name
VALUE
DIALOG

Type declaration

▸ (dialog): VALUE | null

Parameters
Name Type
dialog DIALOG
Returns

VALUE | null

Defined in

src/main/typescript/wcardinal/ui/d-button-select.ts:23


DButtonSelectSetter

Ƭ DButtonSelectSetter<VALUE, DIALOG>: (dialog: DIALOG, value: VALUE | null) => void

A function to set a selecte value to a dialog. Called before opening a dialog.

Type parameters

Name
VALUE
DIALOG

Type declaration

▸ (dialog, value): void

Parameters
Name Type
dialog DIALOG
value VALUE | null
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-button-select.ts:29


DChartAxisBaseTextDirectionOption

Ƭ DChartAxisBaseTextDirectionOption: EShapeTextDirection | keyof typeof EShapeTextDirection

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-base-options.ts:29


DChartAxisBaseTextStyleOption

Ƭ DChartAxisBaseTextStyleOption: EShapeTextStyle | keyof typeof EShapeTextStyle

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-base-options.ts:27


DChartAxisBaseTextWeightOption

Ƭ DChartAxisBaseTextWeightOption: EShapeTextWeight | keyof typeof EShapeTextWeight

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-base-options.ts:25


DChartAxisPosition

Ƭ DChartAxisPosition: typeof DChartAxisPosition[keyof typeof DChartAxisPosition]

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-position.ts:6

src/main/typescript/wcardinal/ui/d-chart-axis-position.ts:13


DChartAxisTickPosition

Ƭ DChartAxisTickPosition: typeof DChartAxisTickPosition[keyof typeof DChartAxisTickPosition]

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-tick-position.ts:6

src/main/typescript/wcardinal/ui/d-chart-axis-tick-position.ts:11


DChartAxisTickPositionOption

Ƭ DChartAxisTickPositionOption: DChartAxisTickPosition | keyof typeof DChartAxisTickPosition

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-base-options.ts:74


DChartCoordinateDirection

Ƭ DChartCoordinateDirection: typeof DChartCoordinateDirection[keyof typeof DChartCoordinateDirection]

Defined in

src/main/typescript/wcardinal/ui/d-chart-coordinate-direction.ts:6

src/main/typescript/wcardinal/ui/d-chart-coordinate-direction.ts:11


DChartCoordinateTickMajorStepFunction

Ƭ DChartCoordinateTickMajorStepFunction: (domainMin: number, domainMax: number, majorCount: number) => number

Type declaration

▸ (domainMin, domainMax, majorCount): number

Parameters
Name Type
domainMin number
domainMax number
majorCount number
Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-chart-coordinate-tick-major-step-function.ts:6


DChartCoordinateTickMinorStepFunction

Ƭ DChartCoordinateTickMinorStepFunction: (majorStep: number, minorCount: number) => number

Type declaration

▸ (majorStep, minorCount): number

Parameters
Name Type
majorStep number
minorCount number
Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-chart-coordinate-tick-minor-step-function.ts:6


DChartSelectionPoint

Ƭ DChartSelectionPoint: typeof DChartSelectionPoint[keyof typeof DChartSelectionPoint]

Defined in

src/main/typescript/wcardinal/ui/d-chart-selection.ts:12

src/main/typescript/wcardinal/ui/d-chart-selection.ts:19


DChartSelectionShapeNewShape

Ƭ DChartSelectionShapeNewShape: (state: DBaseStateSet) => EShape

Type declaration

▸ (state): EShape

Parameters
Name Type
state DBaseStateSet
Returns

EShape

Defined in

src/main/typescript/wcardinal/ui/d-chart-selection-shape.ts:14


DChartSelectionStyle

Ƭ DChartSelectionStyle<CHART>: (shape: EShape, series: DChartSeries<CHART>) => void

Type parameters

Name Type
CHART extends DBase = DBase

Type declaration

▸ (shape, series): void

Parameters
Name Type
shape EShape
series DChartSeries<CHART>
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-chart-selection.ts:21


DChartSeriesScalar

Ƭ DChartSeriesScalar<T>: (index: number) => T

Type parameters

Name
T

Type declaration

▸ (index): T

Parameters
Name Type
index number
Returns

T

Defined in

src/main/typescript/wcardinal/ui/d-chart-series-scalar.ts:9


DColorType

Ƭ DColorType: typeof DColorType[keyof typeof DColorType]

Defined in

src/main/typescript/wcardinal/ui/d-color-type.ts:6

src/main/typescript/wcardinal/ui/d-color-type.ts:11


DCoordinatePosition

Ƭ DCoordinatePosition: number | string | "center" | "padding" | "CENTER" | "PADDING" | DScalarFunction | DScalar

One of the followings:

Defined in

src/main/typescript/wcardinal/ui/d-coordinate.ts:17


DCoordinateSize

Ƭ DCoordinateSize: "auto" | "AUTO" | DCoordinateSizeNoAuto

One of the followings:

Defined in

src/main/typescript/wcardinal/ui/d-coordinate.ts:35


DCoordinateSizeNoAuto

Ƭ DCoordinateSizeNoAuto: number | string | "100%" | "maximized" | "padding" | "MAXIMIZED" | "PADDING" | DScalarFunction | DScalar

Defined in

src/main/typescript/wcardinal/ui/d-coordinate.ts:37


DCornerMask

Ƭ DCornerMask: number

Defined in

src/main/typescript/wcardinal/ui/d-corner-mask.ts:15

src/main/typescript/wcardinal/ui/d-corner-mask.ts:28


DDiagramBaseControllerOpenType

Ƭ DDiagramBaseControllerOpenType: number

DDiagram controller open type.

Defined in

src/main/typescript/wcardinal/ui/d-diagram-base-controller.ts:18

src/main/typescript/wcardinal/ui/d-diagram-base-controller.ts:27


DDiagramCanvasEditorSnapGridSize

Ƭ DDiagramCanvasEditorSnapGridSize: (given: number, width: number, height: number) => number

Type declaration

▸ (given, width, height): number

Parameters
Name Type
given number
width number
height number
Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-diagram-canvas-editor-snap.ts:32


DDiagramCanvasTilePyramidFactory

Ƭ DDiagramCanvasTilePyramidFactory: (canvas: DDiagramCanvasBase<any, any>) => DMapTilePyramid

A tile pyramid factory.

Type declaration

▸ (canvas): DMapTilePyramid

Parameters
Name Type
canvas DDiagramCanvasBase<any, any>
Returns

DMapTilePyramid

Defined in

src/main/typescript/wcardinal/ui/d-diagram-canvas-tile.ts:14


DDiagramDataMapper

Ƭ DDiagramDataMapper: (value: EShapeDataValue, shape: EShape) => void

A data mapper.

Type declaration

▸ (value, shape): void

Parameters
Name Type
value EShapeDataValue
shape EShape
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-diagram-data-mapper.ts:14


DDiagramLayersLayer

Ƭ DDiagramLayersLayer: DDiagramLayersShapeContainer | EShape

Defined in

src/main/typescript/wcardinal/ui/d-diagram-layers.ts:19


DDiagramSerializedData

Ƭ DDiagramSerializedData: DDiagramSerializedDataWithoutMapping | DDiagramSerializedDataWithMapping

A serialized data.

Defined in

src/main/typescript/wcardinal/ui/d-diagram-serialized.ts:124


DDiagramSerializedDataMapping

Ƭ DDiagramSerializedDataMapping: number[]

A serialized data mapping. Each number at the index 2N+0 is a resource index number of the N-th mapping source. Each number at the index 2N+1 is a resource index number of the N-th mapping destination.

Defined in

src/main/typescript/wcardinal/ui/d-diagram-serialized.ts:97


DDiagramSerializedDataSystem

Ƭ DDiagramSerializedDataSystem: number[]

A serialized system data.

Defined in

src/main/typescript/wcardinal/ui/d-diagram-serialized.ts:90


DDiagramSerializedDataWithoutMapping

Ƭ DDiagramSerializedDataWithoutMapping: number[]

A serialized data without a mapping data. Each number is a resource index number of JSON.stringify(DDiagramSerializedDataValue).

Defined in

src/main/typescript/wcardinal/ui/d-diagram-serialized.ts:119


DDiagramSerializedSimpleData

Ƭ DDiagramSerializedSimpleData: Omit<DDiagramSerialized, "version" | "id" | "name" | "thumbnail">

Defined in

src/main/typescript/wcardinal/ui/d-diagram-serialized.ts:564


DDiagramSerializedSnapGrid

Ƭ DDiagramSerializedSnapGrid: DDiagramSerializedSnapGridWithoutVisibility | DDiagramSerializedSnapGridWithVisibility

Serialized grid snap settings with a visibility.

Defined in

src/main/typescript/wcardinal/ui/d-diagram-serialized.ts:505


DDialogCloseOn

Ƭ DDialogCloseOn: number

Defined in

src/main/typescript/wcardinal/ui/d-dialog-close-on.ts:6

src/main/typescript/wcardinal/ui/d-dialog-close-on.ts:12


DDialogGestureConstraint

Ƭ DDialogGestureConstraint: (target: DBase, layer: DApplicationLayerLike, x: number, y: number) => void

Type declaration

▸ (target, layer, x, y): void

Parameters
Name Type
target DBase
layer DApplicationLayerLike
x number
y number
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-dialog-gesture.ts:10


DDialogGestureMode

Ƭ DDialogGestureMode: typeof DDialogGestureMode[keyof typeof DDialogGestureMode]

Defined in

src/main/typescript/wcardinal/ui/d-dialog-gesture-mode.ts:6

src/main/typescript/wcardinal/ui/d-dialog-gesture-mode.ts:11


DDialogMode

Ƭ DDialogMode: typeof DDialogMode[keyof typeof DDialogMode]

Defined in

src/main/typescript/wcardinal/ui/d-dialog-mode.ts:9

src/main/typescript/wcardinal/ui/d-dialog-mode.ts:15


DDialogSelectItemIsEqual

Ƭ DDialogSelectItemIsEqual<VALUE>: (a: VALUE, b: VALUE, caller: any) => boolean

Type parameters

Name
VALUE

Type declaration

▸ (a, b, caller): boolean

Parameters
Name Type
a VALUE
b VALUE
caller any
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/d-dialog-select.ts:57


DDialogSelectItemToLabel

Ƭ DDialogSelectItemToLabel<VALUE>: (result: VALUE, caller: any) => string

Type parameters

Name
VALUE

Type declaration

▸ (result, caller): string

Parameters
Name Type
result VALUE
caller any
Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-dialog-select.ts:55


DDialogSelectSearchFunction

Ƭ DDialogSelectSearchFunction<VALUE, CATEGORY_ID>: (word: string, categoryId?: CATEGORY_ID | null) => Promise<VALUE[]>

DDialogSelect search function.

Type parameters

Name
VALUE
CATEGORY_ID

Type declaration

▸ (word, categoryId?): Promise<VALUE[]>

Parameters
Name Type
word string
categoryId? CATEGORY_ID | null
Returns

Promise<VALUE[]>

Defined in

src/main/typescript/wcardinal/ui/d-dialog-select-search-function.ts:9


DDynamicTextStyleWordWrap

Ƭ DDynamicTextStyleWordWrap: typeof DDynamicTextStyleWordWrap[keyof typeof DDynamicTextStyleWordWrap]

Defined in

src/main/typescript/wcardinal/ui/d-dynamic-text-style-word-wrap.ts:6

src/main/typescript/wcardinal/ui/d-dynamic-text-style-word-wrap.ts:12


DFontStyle

Ƭ DFontStyle: "normal" | "italic"

Defined in

src/main/typescript/wcardinal/ui/d-font.ts:8


DFontVariant

Ƭ DFontVariant: "normal" | "small-caps"

Defined in

src/main/typescript/wcardinal/ui/d-font.ts:25


DFontWeight

Ƭ DFontWeight: "normal" | "bold" | "bolder" | "lighter" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "800"

Defined in

src/main/typescript/wcardinal/ui/d-font.ts:10


DIndicatorProcessingState

Ƭ DIndicatorProcessingState: typeof DIndicatorProcessingState[keyof typeof DIndicatorProcessingState]

Defined in

src/main/typescript/wcardinal/ui/d-indicator-processing.ts:43

src/main/typescript/wcardinal/ui/d-indicator-processing.ts:50


DItemUpdaterInitItem

Ƭ DItemUpdaterInitItem<DATA, ITEM>: (item: ITEM, index: number, data: DATA) => ITEM

Type parameters

Name
DATA
ITEM

Type declaration

▸ (item, index, data): ITEM

Parameters
Name Type
item ITEM
index number
data DATA
Returns

ITEM

Defined in

src/main/typescript/wcardinal/ui/d-item-updater.ts:20


DItemUpdaterNewItem

Ƭ DItemUpdaterNewItem<DATA, ITEM>: (data: DATA) => ITEM

Type parameters

Name
DATA
ITEM

Type declaration

▸ (data): ITEM

Parameters
Name Type
data DATA
Returns

ITEM

Defined in

src/main/typescript/wcardinal/ui/d-item-updater.ts:18


DLayoutClearType

Ƭ DLayoutClearType: number

Defined in

src/main/typescript/wcardinal/ui/d-layout-clear-type.ts:9

src/main/typescript/wcardinal/ui/d-layout-clear-type.ts:16


DLayoutDirection

Ƭ DLayoutDirection: typeof DLayoutDirection[keyof typeof DLayoutDirection]

Defined in

src/main/typescript/wcardinal/ui/d-layout-direction.ts:6

src/main/typescript/wcardinal/ui/d-layout-direction.ts:11


DLinkChecker

Ƭ DLinkChecker: () => boolean | Promise<boolean>

Type declaration

▸ (): boolean | Promise<boolean>

Returns

boolean | Promise<boolean>

Defined in

src/main/typescript/wcardinal/ui/d-link.ts:25


DLinkMenuItemId

Ƭ DLinkMenuItemId: typeof DLinkMenuItemId[keyof typeof DLinkMenuItemId]

Defined in

src/main/typescript/wcardinal/ui/d-link-menu-item-id.ts:6

src/main/typescript/wcardinal/ui/d-link-menu-item-id.ts:12


DLinkMenuOptions

Ƭ DLinkMenuOptions: DMenuOptions<DLinkMenuItemId> | DMenu<DLinkMenuItemId>

Defined in

src/main/typescript/wcardinal/ui/d-link-menu.ts:13


DLinkTarget

Ƭ DLinkTarget: typeof DLinkTarget[keyof typeof DLinkTarget]

Defined in

src/main/typescript/wcardinal/ui/d-link-target.ts:6

src/main/typescript/wcardinal/ui/d-link-target.ts:12


DLinkTargetValue

Ƭ DLinkTargetValue: DLinkTarget | null | undefined | keyof typeof DLinkTarget

Defined in

src/main/typescript/wcardinal/ui/d-link.ts:23


DLinkUrlMaker

Ƭ DLinkUrlMaker: () => DLinkUrlValue | Promise<DLinkUrlValue>

Type declaration

▸ (): DLinkUrlValue | Promise<DLinkUrlValue>

Returns

DLinkUrlValue | Promise<DLinkUrlValue>

Defined in

src/main/typescript/wcardinal/ui/d-link.ts:21


DLinkUrlValue

Ƭ DLinkUrlValue: string | null | undefined

Defined in

src/main/typescript/wcardinal/ui/d-link.ts:19


DListDataIteratee

Ƭ DListDataIteratee<ITEM>: (item: ITEM, index: number) => void | boolean

Type parameters

Name
ITEM

Type declaration

▸ (item, index): void | boolean

Parameters
Name Type
item ITEM
index number
Returns

void | boolean

Defined in

src/main/typescript/wcardinal/ui/d-list-data.ts:10


DListDataSelectionType

Ƭ DListDataSelectionType: typeof DListDataSelectionType[keyof typeof DListDataSelectionType]

Defined in

src/main/typescript/wcardinal/ui/d-list-data-selection.ts:12

src/main/typescript/wcardinal/ui/d-list-data-selection.ts:18


DListItemLinkChecker

Ƭ DListItemLinkChecker<VALUE>: (value: VALUE) => boolean | Promise<boolean>

Type parameters

Name
VALUE

Type declaration

▸ (value): boolean | Promise<boolean>

Parameters
Name Type
value VALUE
Returns

boolean | Promise<boolean>

Defined in

src/main/typescript/wcardinal/ui/d-list-item-accessor.ts:19


DListItemToId

Ƭ DListItemToId<VALUE>: (value: VALUE) => unknown

Type parameters

Name
VALUE

Type declaration

▸ (value): unknown

Parameters
Name Type
value VALUE
Returns

unknown

Defined in

src/main/typescript/wcardinal/ui/d-list-item-accessor.ts:15


DListItemToImage

Ƭ DListItemToImage<VALUE>: (value: VALUE) => DisplayObject | Texture | null | undefined

Type parameters

Name
VALUE

Type declaration

▸ (value): DisplayObject | Texture | null | undefined

Parameters
Name Type
value VALUE
Returns

DisplayObject | Texture | null | undefined

Defined in

src/main/typescript/wcardinal/ui/d-list-item-accessor.ts:13


DListItemToLabel

Ƭ DListItemToLabel<VALUE>: (value: VALUE) => string | undefined

Type parameters

Name
VALUE

Type declaration

▸ (value): string | undefined

Parameters
Name Type
value VALUE
Returns

string | undefined

Defined in

src/main/typescript/wcardinal/ui/d-list-item-accessor.ts:9


DListItemToLinkUrl

Ƭ DListItemToLinkUrl<VALUE>: (value: VALUE) => DLinkUrlValue | Promise<DLinkUrlValue>

Type parameters

Name
VALUE

Type declaration

▸ (value): DLinkUrlValue | Promise<DLinkUrlValue>

Parameters
Name Type
value VALUE
Returns

DLinkUrlValue | Promise<DLinkUrlValue>

Defined in

src/main/typescript/wcardinal/ui/d-list-item-accessor.ts:17


DListItemToTitle

Ƭ DListItemToTitle<VALUE>: (value: VALUE) => string | undefined

Type parameters

Name
VALUE

Type declaration

▸ (value): string | undefined

Parameters
Name Type
value VALUE
Returns

string | undefined

Defined in

src/main/typescript/wcardinal/ui/d-list-item-accessor.ts:11


DMapTileUrlBuilder

Ƭ DMapTileUrlBuilder: (tz: number, tx: number, ty: number) => string

Type declaration

▸ (tz, tx, ty): string

Parameters
Name Type
tz number
tx number
ty number
Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-map-tile-url-builder.ts:6


DMenuItemCreator

Ƭ DMenuItemCreator: (options: DMenuItemOptionsUnion<any>, sticky: boolean) => DisplayObject | null

Type declaration

▸ (options, sticky): DisplayObject | null

Parameters
Name Type
options DMenuItemOptionsUnion<any>
sticky boolean
Returns

DisplayObject | null

Defined in

src/main/typescript/wcardinal/ui/d-menus.ts:10


DMenuItemLinkChecker

Ƭ DMenuItemLinkChecker: (item: DMenuItemLink) => boolean | Promise<boolean>

Type declaration

▸ (item): boolean | Promise<boolean>

Parameters
Name Type
item DMenuItemLink
Returns

boolean | Promise<boolean>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-link.ts:16


DMenuItemLinkUrlMaker

Ƭ DMenuItemLinkUrlMaker: (item: DMenuItemLink) => string | null | Promise<string | null>

Type declaration

▸ (item): string | null | Promise<string | null>

Parameters
Name Type
item DMenuItemLink
Returns

string | null | Promise<string | null>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-link.ts:15


DMenuItemOptionsUnion

Ƭ DMenuItemOptionsUnion<VALUE>: DMenuItemTextOptions<VALUE> | DMenuItemCheckOptions<VALUE> | DMenuItemMenuOptions<VALUE> | DMenuItemSeparatorOptions<VALUE> | DMenuItemExpandableOptions<VALUE> | DMenuItemLinkOptions<VALUE> | DMenuItemSpaceOptions

Type parameters

Name
VALUE

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-options-union.ts:14


DMenuMenuCreator

Ƭ DMenuMenuCreator: (options?: DMenuOptions) => DMenu<any>

Type declaration

▸ (options?): DMenu<any>

Parameters
Name Type
options? DMenuOptions
Returns

DMenu<any>

Defined in

src/main/typescript/wcardinal/ui/d-menus.ts:15


DMenuSidedSelectionType

Ƭ DMenuSidedSelectionType: typeof DMenuSidedSelectionType[keyof typeof DMenuSidedSelectionType]

Defined in

src/main/typescript/wcardinal/ui/d-menu-sided-selection.ts:14

src/main/typescript/wcardinal/ui/d-menu-sided-selection.ts:20


DPickerDatetimeDateDecorator

Ƭ DPickerDatetimeDateDecorator: (date: Date, button: DPickerDatetimeButtonDate) => void

Type declaration

▸ (date, button): void

Parameters
Name Type
date Date
button DPickerDatetimeButtonDate
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-picker-datetime.ts:26


DPickerDatetimeDayLabels

Ƭ DPickerDatetimeDayLabels: [string, string, string, string, string, string, string]

Defined in

src/main/typescript/wcardinal/ui/d-picker-datetime.ts:27


DPickerDatetimeLabelFormatter

Ƭ DPickerDatetimeLabelFormatter: (date: Date) => string

Type declaration

▸ (date): string

Parameters
Name Type
date Date
Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-picker-datetime.ts:25


DPickerDatetimeMask

Ƭ DPickerDatetimeMask: number

Defined in

src/main/typescript/wcardinal/ui/d-picker-datetime-mask.ts:11

src/main/typescript/wcardinal/ui/d-picker-datetime-mask.ts:21


DScalarExpressionNode

Ƭ DScalarExpressionNode: DScalarExpressionNodeParensesis | DScalarExpressionNodeUnary | DScalarExpressionNodeArithmetic | DScalarExpressionNodeFunction | DScalarExpressionNodeLiteral

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:127


DScalarExpressionNodeArithmeticOperator

Ƭ DScalarExpressionNodeArithmeticOperator: typeof SUB | typeof ADD | typeof MUL | typeof DIV

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:77


DScalarExpressionNodeOrToken

Ƭ DScalarExpressionNodeOrToken: DScalarExpressionToken | DScalarExpressionNodeOrTokenParensesis | DScalarExpressionNodeOrTokenUnary | DScalarExpressionNodeOrTokenArithmetic | DScalarExpressionNodeOrTokenFunction

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:94


DScalarExpressionNodeType

Ƭ DScalarExpressionNodeType: typeof DScalarExpressionNodeType[keyof typeof DScalarExpressionNodeType]

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:9

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:40


DScalarExpressionNodeTypeLiteral

Ƭ DScalarExpressionNodeTypeLiteral: typeof NUMBER | typeof PARENT | typeof SELF | typeof PADDING | typeof CURRENT

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:56


DScalarExpressionNodeTypeOperator

Ƭ DScalarExpressionNodeTypeOperator: typeof SUB_OR_MINUS | typeof ADD_OR_PLUS | typeof SUB | typeof ADD | typeof MUL | typeof DIV | typeof OPEN | typeof CLOSE | typeof MIN | typeof MAX | typeof COMMA

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:43


DScalarExpressionToken

Ƭ DScalarExpressionToken: DScalarExpressionNodeTypeOperator | [DScalarExpressionNodeTypeLiteral, number]

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:63


DScalarFunction

Ƭ DScalarFunction: (parent: number, self: number, padding: number, current: number) => number

A function returns a scalar value.

Type declaration

▸ (parent, self, padding, current): number

Parameters
Name Type Description
parent number a parent value
self number a self value
padding number a padding value
current number a current value
Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-scalar-function.ts:15


DStateAware

Ƭ DStateAware<R>: (state: DBaseStateSet) => R

A DBaseState-aware function returning R.

Type parameters

Name
R

Type declaration

▸ (state): R

Parameters
Name Type
state DBaseStateSet
Returns

R

Defined in

src/main/typescript/wcardinal/ui/d-state-aware.ts:11


DStateAwareOrValue

Ƭ DStateAwareOrValue<R>: DStateAware<R> | R

R or a DBaseState-aware function returning R.

Type parameters

Name
R

Defined in

src/main/typescript/wcardinal/ui/d-state-aware.ts:16


DStateAwareOrValueMightBe

Ƭ DStateAwareOrValueMightBe<R>: DStateAwareOrValue<R | undefined>

R or a DBaseState-aware function returning R. If a computed value is undefined, the computed value is supposed to be ignored.

Type parameters

Name
R

Defined in

src/main/typescript/wcardinal/ui/d-state-aware.ts:22


DTableBodyCellLinkChecker

Ƭ DTableBodyCellLinkChecker<ROW, VALUE>: (row: ROW, rowIndex: number, columnIndex: number, link: DTableBodyCell<ROW, VALUE | null>) => boolean | Promise<boolean>

Type parameters

Name
ROW
VALUE

Type declaration

▸ (row, rowIndex, columnIndex, link): boolean | Promise<boolean>

Parameters
Name Type
row ROW
rowIndex number
columnIndex number
link DTableBodyCell<ROW, VALUE | null>
Returns

boolean | Promise<boolean>

Defined in

src/main/typescript/wcardinal/ui/d-table-body-cell-link.ts:28


DTableBodyCellLinkUrlMaker

Ƭ DTableBodyCellLinkUrlMaker<ROW, VALUE>: (row: ROW, rowIndex: number, columnIndex: number, link: DTableBodyCell<ROW, VALUE | null>) => string | null | Promise<string | null>

Type parameters

Name
ROW
VALUE

Type declaration

▸ (row, rowIndex, columnIndex, link): string | null | Promise<string | null>

Parameters
Name Type
row ROW
rowIndex number
columnIndex number
link DTableBodyCell<ROW, VALUE | null>
Returns

string | null | Promise<string | null>

Defined in

src/main/typescript/wcardinal/ui/d-table-body-cell-link.ts:21


DTableBodyCellOnChange

Ƭ DTableBodyCellOnChange<ROW, VALUE, EMITTER>: (newValue: VALUE, oldValue: VALUE, row: ROW, rowIndex: number, columnIndex: number, column: DTableColumn<ROW, VALUE>, emitter: EMITTER) => void

Type parameters

Name Type
ROW ROW
VALUE unknown
EMITTER any

Type declaration

▸ (newValue, oldValue, row, rowIndex, columnIndex, column, emitter): void

Parameters
Name Type
newValue VALUE
oldValue VALUE
row ROW
rowIndex number
columnIndex number
column DTableColumn<ROW, VALUE>
emitter EMITTER
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-table-body-cell.ts:11


DTableBodyCellOptions

Ƭ DTableBodyCellOptions<ROW_VALUE>: DTableBodyCellTextOptions<ROW_VALUE> | DTableBodyCellInputTextOptions<ROW_VALUE> | DTableBodyCellInputIntegerOptions<ROW_VALUE> | DTableBodyCellInputRealOptions<ROW_VALUE> | DTableBodyCellIndexOptions<ROW_VALUE> | DTableBodyCellColorOptions<ROW_VALUE> | DTableBodyCellCheckOptions<ROW_VALUE> | DTableBodyCellSelectDialogOptions<ROW_VALUE> | DTableBodyCellSelectPromiseOptions<ROW_VALUE> | DTableBodyCellSelectMenuOptions<ROW_VALUE> | DTableBodyCellDateOptions<ROW_VALUE> | DTableBodyCellDatetimeOptions<ROW_VALUE> | DTableBodyCellTimeOptions<ROW_VALUE> | DTableBodyCellButtonOptions<ROW_VALUE> | DTableBodyCellLinkOptions<ROW_VALUE> | DTableBodyCellSelectMultipleOptions<ROW_VALUE> | DTableBodyCellTreeOptions<ROW_VALUE>

Type parameters

Name
ROW_VALUE

Defined in

src/main/typescript/wcardinal/ui/d-table-body-cell-options.ts:24


DTableBodyRowOnChange

Ƭ DTableBodyRowOnChange<ROW, VALUE, EMITTER>: (newValue: VALUE, oldValue: VALUE, row: ROW, rowIndex: number, columnIndex: number, column: DTableColumn<ROW, VALUE>, emitter: EMITTER) => void

Type parameters

Name Type
ROW ROW
VALUE unknown
EMITTER any

Type declaration

▸ (newValue, oldValue, row, rowIndex, columnIndex, column, emitter): void

Parameters
Name Type
newValue VALUE
oldValue VALUE
row ROW
rowIndex number
columnIndex number
column DTableColumn<ROW, VALUE>
emitter EMITTER
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-table-body-row.ts:55


DTableCategoryCellEdge

Ƭ DTableCategoryCellEdge: typeof DTableCategoryCellEdge[keyof typeof DTableCategoryCellEdge]

Defined in

src/main/typescript/wcardinal/ui/d-table-category-cell.ts:27

src/main/typescript/wcardinal/ui/d-table-category-cell.ts:34


DTableColumnEditable

Ƭ DTableColumnEditable<ROW_VALUE>: (row: ROW_VALUE, columnIndex: number) => boolean

Type parameters

Name
ROW_VALUE

Type declaration

▸ (row, columnIndex): boolean

Parameters
Name Type
row ROW_VALUE
columnIndex number
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/d-table-column-editing.ts:9


DTableColumnEditingFormatter

Ƭ DTableColumnEditingFormatter<CELL_VALUE>: (cell: CELL_VALUE) => string

Type parameters

Name
CELL_VALUE

Type declaration

▸ (cell): string

Parameters
Name Type
cell CELL_VALUE
Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-table-column-editing.ts:6


DTableColumnEditingUnformatter

Ƭ DTableColumnEditingUnformatter<CELL_VALUE>: (formatted: string) => CELL_VALUE

Type parameters

Name
CELL_VALUE

Type declaration

▸ (formatted): CELL_VALUE

Parameters
Name Type
formatted string
Returns

CELL_VALUE

Defined in

src/main/typescript/wcardinal/ui/d-table-column-editing.ts:7


DTableColumnEditingValidator

Ƭ DTableColumnEditingValidator<CELL_VALUE>: (cell: CELL_VALUE) => string | null

Type parameters

Name
CELL_VALUE

Type declaration

▸ (cell): string | null

Parameters
Name Type
cell CELL_VALUE
Returns

string | null

Defined in

src/main/typescript/wcardinal/ui/d-table-column-editing.ts:8


DTableColumnFormatter

Ƭ DTableColumnFormatter<CELL_VALUE, EMITTER>: (cell: CELL_VALUE, emitter: EMITTER) => string

Type parameters

Name Type
CELL_VALUE CELL_VALUE
EMITTER any

Type declaration

▸ (cell, emitter): string

Parameters
Name Type
cell CELL_VALUE
emitter EMITTER
Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-table-column-formatter.ts:6


DTableColumnGetter

Ƭ DTableColumnGetter<ROW_VALUE, CELL_VALUE>: (row: ROW_VALUE, columnIndex: number) => CELL_VALUE

Type parameters

Name
ROW_VALUE
CELL_VALUE

Type declaration

▸ (row, columnIndex): CELL_VALUE

Parameters
Name Type
row ROW_VALUE
columnIndex number
Returns

CELL_VALUE

Defined in

src/main/typescript/wcardinal/ui/d-table-column-getter.ts:6


DTableColumnIteratee

Ƭ DTableColumnIteratee<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>: (column: DTableColumn<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>, index: number) => boolean | void

Type parameters

Name Type
ROW_VALUE ROW_VALUE
CELL_VALUE CELL_VALUE
DIALOG_VALUE DIALOG_VALUE
DIALOG extends DTableColumnSelectingDialog<DIALOG_VALUE>

Type declaration

▸ (column, index): boolean | void

Parameters
Name Type
column DTableColumn<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>
index number
Returns

boolean | void

Defined in

src/main/typescript/wcardinal/ui/d-table-column-container.ts:5


DTableColumnRenderable

Ƭ DTableColumnRenderable<ROW_VALUE>: (row: ROW_VALUE, columnIndex: number) => boolean

Type parameters

Name
ROW_VALUE

Type declaration

▸ (row, columnIndex): boolean

Parameters
Name Type
row ROW_VALUE
columnIndex number
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/d-table-column-renderable.ts:6


DTableColumnSelectingGetter

Ƭ DTableColumnSelectingGetter<CELL_VALUE, DIALOG>: (dialog: DIALOG) => CELL_VALUE

Type parameters

Name
CELL_VALUE
DIALOG

Type declaration

▸ (dialog): CELL_VALUE

Parameters
Name Type
dialog DIALOG
Returns

CELL_VALUE

Defined in

src/main/typescript/wcardinal/ui/d-table-column-selecting.ts:10


DTableColumnSelectingSetter

Ƭ DTableColumnSelectingSetter<CELL_VALUE, DIALOG>: (dialog: DIALOG, cell: CELL_VALUE) => void

Type parameters

Name
CELL_VALUE
DIALOG

Type declaration

▸ (dialog, cell): void

Parameters
Name Type
dialog DIALOG
cell CELL_VALUE
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-table-column-selecting.ts:11


DTableColumnSetter

Ƭ DTableColumnSetter<ROW_VALUE, CELL_VALUE>: (row: ROW_VALUE, columnIndex: number, cell: CELL_VALUE) => void

Type parameters

Name
ROW_VALUE
CELL_VALUE

Type declaration

▸ (row, columnIndex, cell): void

Parameters
Name Type
row ROW_VALUE
columnIndex number
cell CELL_VALUE
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-table-column-setter.ts:6


DTableColumnStateModifier

Ƭ DTableColumnStateModifier<ROW_VALUE>: (row: ROW_VALUE, columnIndex: number, state: DBaseStateSet) => void

DTable column state modifier. This function is called on every cells of a column when the cell data is changed. The state given at the third parameter is a state of a cell.

Type parameters

Name
ROW_VALUE

Type declaration

▸ (row, columnIndex, state): void

Parameters
Name Type
row ROW_VALUE
columnIndex number
state DBaseStateSet
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-table-column-state.ts:13


DTableColumnType

Ƭ DTableColumnType: typeof DTableColumnType[keyof typeof DTableColumnType]

Defined in

src/main/typescript/wcardinal/ui/d-table-column-type.ts:6

src/main/typescript/wcardinal/ui/d-table-column-type.ts:25


DTableColumnUpdate

Ƭ DTableColumnUpdate: typeof DTableColumnUpdate[keyof typeof DTableColumnUpdate]

Defined in

src/main/typescript/wcardinal/ui/d-table-column-update.ts:8

src/main/typescript/wcardinal/ui/d-table-column-update.ts:14


DTableDataComparator

Ƭ DTableDataComparator<ROW>: DTableDataComparatorFunction<ROW> | DTableDataComparatorObject<ROW>

A row comparator.

Type parameters

Name
ROW

Defined in

src/main/typescript/wcardinal/ui/d-table-data-sorter.ts:28


DTableDataComparatorFunction

Ƭ DTableDataComparatorFunction<ROW>: (rowA: ROW, rowB: ROW, indexA: number, indexB: number) => number

A row comparator function.

Type parameters

Name
ROW

Type declaration

▸ (rowA, rowB, indexA, indexB): number

Parameters
Name Type
rowA ROW
rowB ROW
indexA number
indexB number
Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-table-data-sorter.ts:11


DTableDataEachIteratee

Ƭ DTableDataEachIteratee<ROW>: (row: ROW, index: number) => void | boolean

Type parameters

Name
ROW

Type declaration

▸ (row, index): void | boolean

Parameters
Name Type
row ROW
index number
Returns

void | boolean

Defined in

src/main/typescript/wcardinal/ui/d-table-data.ts:66


DTableDataFilterFunction

Ƭ DTableDataFilterFunction<ROW>: (row: ROW, index: number) => boolean

A filter function.

Type parameters

Name
ROW

Type declaration

▸ (row, index): boolean

Parameters
Name Type
row ROW
index number
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/d-table-data-filter.ts:11


DTableDataFilterer

Ƭ DTableDataFilterer<ROW>: DTableDataFilterFunction<ROW> | DTableDataFilterObject<ROW>

A filterer.

Type parameters

Name
ROW

Defined in

src/main/typescript/wcardinal/ui/d-table-data-filter.ts:23


DTableDataMappedEachIteratee

Ƭ DTableDataMappedEachIteratee<ROW>: (row: ROW, supplimental: DTableDataSupplimental | null, index: number, unmappedIndex: number) => void | boolean

Type parameters

Name
ROW

Type declaration

▸ (row, supplimental, index, unmappedIndex): void | boolean

Parameters
Name Type
row ROW
supplimental DTableDataSupplimental | null
index number
unmappedIndex number
Returns

void | boolean

Defined in

src/main/typescript/wcardinal/ui/d-table-data.ts:13


DTableDataOrder

Ƭ DTableDataOrder: typeof DTableDataOrder[keyof typeof DTableDataOrder]

Defined in

src/main/typescript/wcardinal/ui/d-table-data-sorter.ts:35

src/main/typescript/wcardinal/ui/d-table-data-sorter.ts:40


DTableDataSelectionCreator

Ƭ DTableDataSelectionCreator<NODE>: (parent: DTableDataSelectionParent<NODE>) => DTableDataSelection<NODE>

Type parameters

Name
NODE

Type declaration

▸ (parent): DTableDataSelection<NODE>

Parameters
Name Type
parent DTableDataSelectionParent<NODE>
Returns

DTableDataSelection<NODE>

Defined in

src/main/typescript/wcardinal/ui/d-table-data-selection.ts:110


DTableDataSelectionEachIteratee

Ƭ DTableDataSelectionEachIteratee: (index: number) => void | boolean

Type declaration

▸ (index): void | boolean

Parameters
Name Type
index number
Returns

void | boolean

Defined in

src/main/typescript/wcardinal/ui/d-table-data-selection.ts:46


DTableDataSelectionType

Ƭ DTableDataSelectionType: typeof DTableDataSelectionType[keyof typeof DTableDataSelectionType]

Defined in

src/main/typescript/wcardinal/ui/d-table-data-selection.ts:13

src/main/typescript/wcardinal/ui/d-table-data-selection.ts:19


DTableDataSupplimental

Ƭ DTableDataSupplimental: number

Defined in

src/main/typescript/wcardinal/ui/d-table-data.ts:11


DTableDataTreeItemAccessorHasChildren

Ƭ DTableDataTreeItemAccessorHasChildren<NODE>: (node: NODE, children?: NODE[] | null) => children is NODE[]

Type parameters

Name
NODE

Type declaration

▸ (node, children?): children is NODE[]

Parameters
Name Type
node NODE
children? NODE[] | null
Returns

children is NODE[]

Defined in

src/main/typescript/wcardinal/ui/d-table-data-tree-item-accessor.ts:10


DTableDataTreeItemAccessorToChildren

Ƭ DTableDataTreeItemAccessorToChildren<NODE>: (node: NODE) => NODE[] | null | undefined

Type parameters

Name
NODE

Type declaration

▸ (node): NODE[] | null | undefined

Parameters
Name Type
node NODE
Returns

NODE[] | null | undefined

Defined in

src/main/typescript/wcardinal/ui/d-table-data-tree-item-accessor.ts:8


DTableDataTreeItemAccessorToParent

Ƭ DTableDataTreeItemAccessorToParent<NODE>: (node: NODE) => NODE | null | undefined

Type parameters

Name
NODE

Type declaration

▸ (node): NODE | null | undefined

Parameters
Name Type
node NODE
Returns

NODE | null | undefined

Defined in

src/main/typescript/wcardinal/ui/d-table-data-tree-item-accessor.ts:6


DTableDataTreeSelectionCreator

Ƭ DTableDataTreeSelectionCreator<NODE>: (parent: DTableDataTreeSelectionParent<NODE>) => DTableDataTreeSelection<NODE>

Type parameters

Name
NODE

Type declaration

▸ (parent): DTableDataTreeSelection<NODE>

Parameters
Name Type
parent DTableDataTreeSelectionParent<NODE>
Returns

DTableDataTreeSelection<NODE>

Defined in

src/main/typescript/wcardinal/ui/d-table-data-tree-selection.ts:23


DTableHeaderCellEdge

Ƭ DTableHeaderCellEdge: typeof DTableHeaderCellEdge[keyof typeof DTableHeaderCellEdge]

Defined in

src/main/typescript/wcardinal/ui/d-table-header-cell.ts:35

src/main/typescript/wcardinal/ui/d-table-header-cell.ts:42


DTextPieceFormatter

Ƭ DTextPieceFormatter<VALUE>: (value: VALUE, caller: any) => string

Type parameters

Name
VALUE

Type declaration

▸ (value, caller): string

Parameters
Name Type
value VALUE
caller any
Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-text-piece.ts:17


DTreeDataSelectionType

Ƭ DTreeDataSelectionType: typeof DTreeDataSelectionType[keyof typeof DTreeDataSelectionType]

Defined in

src/main/typescript/wcardinal/ui/d-tree-data-selection.ts:13

src/main/typescript/wcardinal/ui/d-tree-data-selection.ts:19


DTreeNodeIteratee

Ƭ DTreeNodeIteratee<NODE>: (node: NODE, index: number, nodes: NODE[], parent: NODE | null) => boolean | void

Type parameters

Name Type
NODE extends DTreeNode

Type declaration

▸ (node, index, nodes, parent): boolean | void

Parameters
Name Type
node NODE
index number
nodes NODE[]
parent NODE | null
Returns

boolean | void

Defined in

src/main/typescript/wcardinal/ui/d-tree-node-iteratee.ts:8


DViewChecker

Ƭ DViewChecker: (e: WheelEvent | MouseEvent | TouchEvent, modifier: UtilGestureModifier, target: DBase) => boolean

Type declaration

▸ (e, modifier, target): boolean

Parameters
Name Type
e WheelEvent | MouseEvent | TouchEvent
modifier UtilGestureModifier
target DBase
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/d-view.ts:14


DViewConstraint

Ƭ DViewConstraint: (target: DViewTarget, x: number, y: number, scaleX: number, scaleY: number) => void

DView constraint.

Type declaration

▸ (target, x, y, scaleX, scaleY): void

Parameters
Name Type
target DViewTarget
x number
y number
scaleX number
scaleY number
Returns

void

Defined in

src/main/typescript/wcardinal/ui/d-view-constraint.ts:11


DViewToTarget

Ƭ DViewToTarget: (parent: DBase) => DViewTarget | null

Type declaration

▸ (parent): DViewTarget | null

Parameters
Name Type
parent DBase
Returns

DViewTarget | null

Defined in

src/main/typescript/wcardinal/ui/d-view-to-target.ts:17


DeepPartial

Ƭ DeepPartial<T>: { [P in keyof T]?: DeepPartial<T[P]> }

Type parameters

Name
T

Defined in

src/main/typescript/wcardinal/ui/util/deep-partial.ts:6


DynamicFontAtlasCharacterType

Ƭ DynamicFontAtlasCharacterType: number

Defined in

src/main/typescript/wcardinal/ui/util/dynamic-font-atlas-character-type.ts:19

src/main/typescript/wcardinal/ui/util/dynamic-font-atlas-character-type.ts:34


DynamicFontAtlasCharacters

Ƭ DynamicFontAtlasCharacters: Record<string, DynamicFontAtlasCharacter>

Defined in

src/main/typescript/wcardinal/ui/util/dynamic-font-atlas-characters.ts:8


EShapeAcceptorEdgeSide

Ƭ EShapeAcceptorEdgeSide: typeof EShapeAcceptorEdgeSide[keyof typeof EShapeAcceptorEdgeSide]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-side.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-side.ts:15


EShapeAcceptorEdgeType

Ƭ EShapeAcceptorEdgeType: typeof EShapeAcceptorEdgeType[keyof typeof EShapeAcceptorEdgeType]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-type.ts:12


EShapeAcceptorType

Ƭ EShapeAcceptorType: typeof EShapeAcceptorType[keyof typeof EShapeAcceptorType]

Deprecated

in favor of EShapeAcceptorEdgeType.

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-type.ts:11

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-type.ts:16


EShapeActionExpression

Ƭ EShapeActionExpression<T>: (shape: EShape, time: number, environment: EShapeActionEnvironment) => T

EShape action expression.

In action expressions, all the properties in EShape, EShapeState and EShapeActionEnvironment can be accessed directly. For instance, the string isClicked is a valid expression as EShapeState has EShapeStateSet#isClicked and is equivalent to shape.state.isClicked.

Type parameters

Name
T

Type declaration

▸ (shape, time, environment): T

Parameters
Name Type
shape EShape
time number
environment EShapeActionEnvironment
Returns

T

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-expression.ts:15


EShapeActionExpressionWithParameter

Ƭ EShapeActionExpressionWithParameter<T, P>: (shape: EShape, time: number, environment: EShapeActionEnvironment, parameter: P) => T

EShape action expression with one parameter.

In action expressions, all the properties in EShape, EShapeState and EShapeActionEnvironment can be accessed directly. For instance, the string isClicked is a valid expression as EShapeState has EShapeStateSet#isClicked and is equivalent to shape.state.isClicked. In addition to that, the parameter passed to this function can be used in action expressions. The name of the variable containing that parameter depends on actions.

Type parameters

Name
T
P

Type declaration

▸ (shape, time, environment, parameter): T

Parameters
Name Type
shape EShape
time number
environment EShapeActionEnvironment
parameter P
Returns

T

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-expression-with-parameter.ts:17


EShapeActionOpenDialogOpener

Ƭ EShapeActionOpenDialogOpener: (target: string, argument: unknown, shape: EShape) => void

Type declaration

▸ (target, argument, shape): void

Parameters
Name Type
target string
argument unknown
shape EShape
Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-open-dialog-opener.ts:8


EShapeActionOpenOpener

Ƭ EShapeActionOpenOpener: (target: unknown, inNewWindow: boolean, shape: EShape) => void

Type declaration

▸ (target, inNewWindow, shape): void

Parameters
Name Type
target unknown
inNewWindow boolean
shape EShape
Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-open-opener.ts:8


EShapeActionValueBlinkSerialized

Ƭ EShapeActionValueBlinkSerialized: [typeof BLINK, number, typeof COLOR_FILL | typeof COLOR_STROKE, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-blink.ts:21


EShapeActionValueBlinkType

Ƭ EShapeActionValueBlinkType: typeof EShapeActionValueBlinkType[keyof typeof EShapeActionValueBlinkType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-blink-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-blink-type.ts:15


EShapeActionValueChangeColorBrightnessSerialized

Ƭ EShapeActionValueChangeColorBrightnessSerialized: [typeof CHANGE_COLOR, number, EShapeActionValueChangeColorType, typeof BRIGHTNESS, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-brightness.ts:18


EShapeActionValueChangeColorBrightnessSerializedLegacy

Ƭ EShapeActionValueChangeColorBrightnessSerializedLegacy: [typeof CHANGE_COLOR_LEGACY, number, EShapeActionValueChangeColorTypeLegacy, typeof BRIGHTNESS, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-brightness.ts:26


EShapeActionValueChangeColorCodeSerialized

Ƭ EShapeActionValueChangeColorCodeSerialized: [typeof CHANGE_COLOR, number, EShapeActionValueChangeColorType, typeof CODE, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-code.ts:18


EShapeActionValueChangeColorCodeSerializedLegacy

Ƭ EShapeActionValueChangeColorCodeSerializedLegacy: [typeof CHANGE_COLOR_LEGACY, number, EShapeActionValueChangeColorTypeLegacy, typeof CODE, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-code.ts:28


EShapeActionValueChangeColorSerialized

Ƭ EShapeActionValueChangeColorSerialized: [typeof CHANGE_COLOR, number, EShapeActionValueChangeColorType, EShapeActionValueChangeColorTargetColorOrAlpha, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color.ts:23


EShapeActionValueChangeColorSerializedLegacy

Ƭ EShapeActionValueChangeColorSerializedLegacy: [typeof CHANGE_COLOR_LEGACY, number, EShapeActionValueChangeColorTypeLegacy, EShapeActionValueChangeColorTargetColorOrAlpha, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color.ts:33


EShapeActionValueChangeColorTarget

Ƭ EShapeActionValueChangeColorTarget: typeof EShapeActionValueChangeColorTarget[keyof typeof EShapeActionValueChangeColorTarget]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-target.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-target.ts:14


EShapeActionValueChangeColorTargetColorOrAlpha

Ƭ EShapeActionValueChangeColorTargetColorOrAlpha: typeof COLOR_AND_ALPHA | typeof COLOR | typeof ALPHA

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color.ts:18


EShapeActionValueChangeColorType

Ƭ EShapeActionValueChangeColorType: number

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type.ts:11

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type.ts:21


EShapeActionValueChangeColorTypeLegacy

Ƭ EShapeActionValueChangeColorTypeLegacy: typeof EShapeActionValueChangeColorTypeLegacy[keyof typeof EShapeActionValueChangeColorTypeLegacy]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type-legacy.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type-legacy.ts:15


EShapeActionValueChangeCursorSerialized

Ƭ EShapeActionValueChangeCursorSerialized: [typeof CHANGE_CURSOR, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-cursor.ts:14


EShapeActionValueChangeTextSerialized

Ƭ EShapeActionValueChangeTextSerialized: [typeof CHANGE_TEXT, number, EShapeActionValueChangeTextType, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-text.ts:16


EShapeActionValueChangeTextType

Ƭ EShapeActionValueChangeTextType: typeof EShapeActionValueChangeTextType[keyof typeof EShapeActionValueChangeTextType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-text-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-text-type.ts:11


EShapeActionValueDeserializer

Ƭ EShapeActionValueDeserializer: (serialized: number[], manager: EShapeResourceManagerDeserialization) => EShapeActionValue | null

Type declaration

▸ (serialized, manager): EShapeActionValue | null

Parameters
Name Type
serialized number[]
manager EShapeResourceManagerDeserialization
Returns

EShapeActionValue | null

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-deserializers.ts:9


EShapeActionValueEmitEventSerialized

Ƭ EShapeActionValueEmitEventSerialized: [typeof EMIT_EVENT, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-emit-event.ts:14


EShapeActionValueGestureOperationType

Ƭ EShapeActionValueGestureOperationType: number

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-operation-type.ts:9

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-operation-type.ts:16


EShapeActionValueGestureSerialized

Ƭ EShapeActionValueGestureSerialized: EShapeActionValueGestureSerializedLegacy | EShapeActionValueGestureSerializedNew

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture.ts:36


EShapeActionValueGestureSerializedLegacy

Ƭ EShapeActionValueGestureSerializedLegacy: [typeof MISC, number, typeof GESTURE | typeof GESTURE_LAYER, EShapeActionValueGestureOperationType, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture.ts:18


EShapeActionValueGestureSerializedNew

Ƭ EShapeActionValueGestureSerializedNew: [typeof GESTURE, number, EShapeActionValueGestureType, EShapeActionValueGestureOperationType, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture.ts:27


EShapeActionValueGestureType

Ƭ EShapeActionValueGestureType: typeof EShapeActionValueGestureType[keyof typeof EShapeActionValueGestureType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-type.ts:11


EShapeActionValueMiscExecuteSerialized

Ƭ EShapeActionValueMiscExecuteSerialized: [typeof MISC, number, typeof EXECUTE, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-misc-execute.ts:15


EShapeActionValueMiscSerialized

Ƭ EShapeActionValueMiscSerialized: [typeof MISC, number, EShapeActionValueMiscSubtype, number, EShapeActionValueOnInputAction, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-misc.ts:34


EShapeActionValueMiscSubtype

Ƭ EShapeActionValueMiscSubtype: typeof INPUT_TEXT | typeof INPUT_INTEGER | typeof INPUT_REAL | typeof EMIT_EVENT | typeof WRITE_BOTH | typeof WRITE_LOCAL | typeof WRITE_REMOTE | typeof HTML_ELEMENT | typeof HTML_ELEMENT_WITHOUT_POINTER_EVENTS

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-misc.ts:23


EShapeActionValueMiscType

Ƭ EShapeActionValueMiscType: typeof EShapeActionValueMiscType[keyof typeof EShapeActionValueMiscType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-misc-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-misc-type.ts:25


EShapeActionValueOnInputAction

Ƭ EShapeActionValueOnInputAction: typeof EShapeActionValueOnInputAction[keyof typeof EShapeActionValueOnInputAction]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-on-input-action.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-on-input-action.ts:13


EShapeActionValueOpenDialogExtensionSerialized

Ƭ EShapeActionValueOpenDialogExtensionSerialized: EShapeActionValueOpenDialogExtensionSerialized1 | EShapeActionValueOpenDialogExtensionSerialized2

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog-extension.ts:38


EShapeActionValueOpenDialogExtensionSerialized1

Ƭ EShapeActionValueOpenDialogExtensionSerialized1: [typeof OPEN, number, typeof DIALOG, number, 0, -1, EShapeActionValueOpenDialogType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog-extension.ts:17


EShapeActionValueOpenDialogExtensionSerialized2

Ƭ EShapeActionValueOpenDialogExtensionSerialized2: [typeof OPEN, number, typeof DIALOG, number, 0, -1, EShapeActionValueOpenDialogType, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog-extension.ts:27


EShapeActionValueOpenDialogSerialized

Ƭ EShapeActionValueOpenDialogSerialized: EShapeActionValueOpenDialogSerializedLegacy | EShapeActionValueOpenDialogSerializedNew | EShapeActionValueOpenDialogSerializedNewWithRange

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog.ts:73


EShapeActionValueOpenDialogSerializedLegacy

Ƭ EShapeActionValueOpenDialogSerializedLegacy: [typeof OPEN, number, typeof DIALOG_TEXT | typeof DIALOG_INTEGER | typeof DIALOG_REAL | typeof DIALOG_BOOLEAN | typeof DIALOG_DATE | typeof DIALOG_TIME | typeof DIALOG_DATETIME, number, EShapeActionValueOnInputAction, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog.ts:24


EShapeActionValueOpenDialogSerializedNew

Ƭ EShapeActionValueOpenDialogSerializedNew: [typeof OPEN, number, typeof DIALOG, number, EShapeActionValueOnInputAction, number, EShapeActionValueOpenDialogTypeNew]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog.ts:50


EShapeActionValueOpenDialogSerializedNewWithRange

Ƭ EShapeActionValueOpenDialogSerializedNewWithRange: [typeof OPEN, number, typeof DIALOG, number, EShapeActionValueOnInputAction, number, EShapeActionValueOpenDialogTypeNew, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog.ts:60


EShapeActionValueOpenDialogType

Ƭ EShapeActionValueOpenDialogType: number

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog-type.ts:18


EShapeActionValueOpenDialogTypeNew

Ƭ EShapeActionValueOpenDialogTypeNew: typeof TEXT | typeof INTEGER | typeof REAL | typeof BOOLEAN | typeof DATE | typeof TIME | typeof DATETIME

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog.ts:41


EShapeActionValueOpenSerialized

Ƭ EShapeActionValueOpenSerialized: EShapeActionValueOpenSerializedNew | EShapeActionValueOpenSerializedLegacy

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open.ts:38


EShapeActionValueOpenSerializedLegacy

Ƭ EShapeActionValueOpenSerializedLegacy: [typeof OPEN, number, typeof DIAGRAM_LEGACY | typeof PAGE_LEGACY | typeof PAGE_INPLACE_LEGACY, number, EShapeActionValueOnInputAction, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open.ts:17


EShapeActionValueOpenSerializedNew

Ƭ EShapeActionValueOpenSerializedNew: [typeof OPEN, number, typeof DIAGRAM | typeof PAGE, number, 0 | 1]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open.ts:30


EShapeActionValueOpenType

Ƭ EShapeActionValueOpenType: number

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-type.ts:8

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-type.ts:35


EShapeActionValueShowHideLayerSerialized

Ƭ EShapeActionValueShowHideLayerSerialized: [typeof SHOW_HIDE, number, typeof LAYER, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-show-hide-layer.ts:15


EShapeActionValueShowHideSerialized

Ƭ EShapeActionValueShowHideSerialized: [typeof SHOW_HIDE, number, EShapeActionValueShowHideType]

Deprecated

in favor of EShapeActionValueShowHideShapeSerialized.

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-show-hide.ts:17


EShapeActionValueShowHideShapeSerialized

Ƭ EShapeActionValueShowHideShapeSerialized: [typeof SHOW_HIDE, number, typeof SHAPE]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-show-hide-shape.ts:15


EShapeActionValueShowHideType

Ƭ EShapeActionValueShowHideType: typeof EShapeActionValueShowHideType[keyof typeof EShapeActionValueShowHideType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-show-hide-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-show-hide-type.ts:15


EShapeActionValueTransformMoveSerialized

Ƭ EShapeActionValueTransformMoveSerialized: [typeof TRANSFORM, number, typeof MOVE, EShapeActionValueTransformMoveType, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-move.ts:22


EShapeActionValueTransformMoveType

Ƭ EShapeActionValueTransformMoveType: typeof EShapeActionValueTransformMoveType[keyof typeof EShapeActionValueTransformMoveType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-move-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-move-type.ts:15


EShapeActionValueTransformResizeSerialized

Ƭ EShapeActionValueTransformResizeSerialized: [typeof TRANSFORM, number, typeof RESIZE, EShapeActionValueTransformResizeType, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-resize.ts:22


EShapeActionValueTransformResizeType

Ƭ EShapeActionValueTransformResizeType: typeof EShapeActionValueTransformResizeType[keyof typeof EShapeActionValueTransformResizeType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-resize-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-resize-type.ts:15


EShapeActionValueTransformRotateSerialized

Ƭ EShapeActionValueTransformRotateSerialized: [typeof TRANSFORM, number, typeof ROTATE, EShapeActionValueTransformRotateType, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-rotate.ts:18


EShapeActionValueTransformRotateType

Ƭ EShapeActionValueTransformRotateType: typeof EShapeActionValueTransformRotateType[keyof typeof EShapeActionValueTransformRotateType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-rotate-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-rotate-type.ts:11


EShapeActionValueTransformType

Ƭ EShapeActionValueTransformType: typeof EShapeActionValueTransformType[keyof typeof EShapeActionValueTransformType]

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-type.ts:12


EShapeActionValueType

Ƭ EShapeActionValueType: number

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-type.ts:23


EShapeBarPosition

Ƭ EShapeBarPosition: typeof EShapeBarPosition[keyof typeof EShapeBarPosition]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-bar-position.ts:6

src/main/typescript/wcardinal/ui/shape/variant/e-shape-bar-position.ts:13


EShapeCapability

Ƭ EShapeCapability: typeof EShapeCapability[keyof typeof EShapeCapability]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-capability.ts:51

src/main/typescript/wcardinal/ui/shape/e-shape-capability.ts:191


EShapeConnectorBodySerialized

Ƭ EShapeConnectorBodySerialized: number[]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-connector-body.ts:10


EShapeConnectorEdgeContainerSerialized

Ƭ EShapeConnectorEdgeContainerSerialized: [number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-connector-edge-container.ts:12


EShapeConnectorEdgeSerialized

Ƭ EShapeConnectorEdgeSerialized: [number | null, number, number, number, number, number?, number?, (number | null)?, (number | null)?, number?]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-connector-edge.ts:15


EShapeCopyPart

Ƭ EShapeCopyPart: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-copy-part.ts:17

src/main/typescript/wcardinal/ui/shape/e-shape-copy-part.ts:34


EShapeCorner

Ƭ EShapeCorner: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-corner.ts:11

src/main/typescript/wcardinal/ui/shape/e-shape-corner.ts:24


EShapeDataMappingValue

Ƭ EShapeDataMappingValue: [string, string, string]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-mapping.ts:9


EShapeDataValueFormatter

Ƭ EShapeDataValueFormatter: (value: unknown) => unknown

Type declaration

▸ (value): unknown

Parameters
Name Type
value unknown
Returns

unknown

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-formatter.ts:6


EShapeDataValueOrder

Ƭ EShapeDataValueOrder: typeof EShapeDataValueOrder[keyof typeof EShapeDataValueOrder]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-order.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-order.ts:11


EShapeDataValueRangeType

Ƭ EShapeDataValueRangeType: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-range.ts:12

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-range.ts:19


EShapeDataValueScope

Ƭ EShapeDataValueScope: typeof EShapeDataValueScope[keyof typeof EShapeDataValueScope]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-scope.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-scope.ts:26


EShapeDataValueState

Ƭ EShapeDataValueState: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-state.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-state.ts:49


EShapeDataValueType

Ƭ EShapeDataValueType: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-type.ts:21


EShapeDeserializer

Ƭ EShapeDeserializer: (item: DDiagramSerializedItem, manager: EShapeResourceManagerDeserialization) => Promise<EShape> | EShape | null

A shape deserializer

Type declaration

▸ (item, manager): Promise<EShape> | EShape | null

Parameters
Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
Returns

Promise<EShape> | EShape | null

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-deserializers.ts:14


EShapeLineBaseHitPart

Ƭ EShapeLineBaseHitPart: typeof EShapeLineBaseHitPart[keyof typeof EShapeLineBaseHitPart]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-base-hit-part.ts:6

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-base-hit-part.ts:15


EShapeLineBasePointsHitTester

Ƭ EShapeLineBasePointsHitTester<RESULT>: (x: number, y: number, p0x: number, p0y: number, p1x: number, p1y: number, index: number, threshold: number, result: RESULT) => boolean

Type parameters

Name
RESULT

Type declaration

▸ (x, y, p0x, p0y, p1x, p1y, index, threshold, result): boolean

Parameters
Name Type
x number
y number
p0x number
p0y number
p1x number
p1y number
index number
threshold number
result RESULT
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-base-points-hit-tester.ts:6


EShapeLineBasePointsHitTesterToRange

Ƭ EShapeLineBasePointsHitTesterToRange: (x: number, y: number, threshold: number, values: number[], result: [number, number]) => [number, number]

Type declaration

▸ (x, y, threshold, values, result): [number, number]

Parameters
Name Type
x number
y number
threshold number
values number[]
result [number, number]
Returns

[number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-base-points-hit-tester-to-range.ts:6


EShapeLineBasePointsHitTesterToThreshold

Ƭ EShapeLineBasePointsHitTesterToThreshold: (size: number, scale: number, offset: number) => number

Type declaration

▸ (size, scale, offset): number

Parameters
Name Type
size number
scale number
offset number
Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-base-points-hit-tester-to-threshold.ts:6


EShapeLineOfAnyPointsHitTester

Ƭ EShapeLineOfAnyPointsHitTester<RESULT>: (x: number, y: number, ax: number, ay: number, ox: number, oy: number, px: number, py: number, sw: number, ss: number, sa: number, index: number, threshold: number, result: RESULT) => boolean

Type parameters

Name
RESULT

Type declaration

▸ (x, y, ax, ay, ox, oy, px, py, sw, ss, sa, index, threshold, result): boolean

Parameters
Name Type
x number
y number
ax number
ay number
ox number
oy number
px number
py number
sw number
ss number
sa number
index number
threshold number
result RESULT
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-of-any-points-hit-tester.ts:6


EShapeLineOfAnyPointsHitTesterToRange

Ƭ EShapeLineOfAnyPointsHitTesterToRange: (x: number, y: number, ax: number, ay: number, ox: number, oy: number, threshold: number, values: number[], result: [number, number]) => [number, number]

Type declaration

▸ (x, y, ax, ay, ox, oy, threshold, values, result): [number, number]

Parameters
Name Type
x number
y number
ax number
ay number
ox number
oy number
threshold number
values number[]
result [number, number]
Returns

[number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-of-any-points-hit-tester-to-range.ts:6


EShapeLineOfAnyPointsHitTesterToThreshold

Ƭ EShapeLineOfAnyPointsHitTesterToThreshold: (size: number, scale: number, offset: number) => number

Type declaration

▸ (size, scale, offset): number

Parameters
Name Type
size number
scale number
offset number
Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-of-any-points-hit-tester-to-threshold.ts:6


EShapeLineOfAnyValue

Ƭ EShapeLineOfAnyValue: null | number | number[] | (index: number) => number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-of-any-value.ts:6


EShapeLinePointsSerialized

Ƭ EShapeLinePointsSerialized: [number[], number[], number, number?]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-points.ts:26


EShapeLockPart

Ƭ EShapeLockPart: number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-lock-part.ts:1

src/main/typescript/wcardinal/ui/shape/variant/e-shape-lock-part.ts:12


EShapeOnDeserialized

Ƭ EShapeOnDeserialized: (item: DDiagramSerializedItem, shape: EShape, mapping: EShapeUuidMapping, manager: EShapeResourceManagerDeserialization) => void

A handler which is called after the deserializations of all the shapes are completed.

Type declaration

▸ (item, shape, mapping, manager): void

Parameters
Name Type
item DDiagramSerializedItem
shape EShape
mapping EShapeUuidMapping
manager EShapeResourceManagerDeserialization
Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-deserializers.ts:27


EShapePointsFormatted

Ƭ EShapePointsFormatted: EShapePointsFormattedWithBoundary | EShapePointsFormattedWithoutBoundary

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-formatted.ts:8


EShapePointsFormattedBoundary

Ƭ EShapePointsFormattedBoundary: [number, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-formatted.ts:12


EShapePointsFormatter

Ƭ EShapePointsFormatter: (length: number, values: number[], segments: number[], style: EShapePointsStyle, result: EShapePointsFormattedWithoutBoundary) => EShapePointsFormattedWithoutBoundary

Type declaration

▸ (length, values, segments, style, result): EShapePointsFormattedWithoutBoundary

Parameters
Name Type
length number
values number[]
segments number[]
style EShapePointsStyle
result EShapePointsFormattedWithoutBoundary
Returns

EShapePointsFormattedWithoutBoundary

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-formatter.ts:9


EShapePointsMarkerContainerSerialized

Ƭ EShapePointsMarkerContainerSerialized: [number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-marker-container.ts:10


EShapePointsMarkerSerizlized

Ƭ EShapePointsMarkerSerizlized: [EShapePointsMarkerType, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-marker.ts:12


EShapePointsMarkerType

Ƭ EShapePointsMarkerType: typeof EShapePointsMarkerType[keyof typeof EShapePointsMarkerType]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-marker-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-points-marker-type.ts:13


EShapePointsStyle

Ƭ EShapePointsStyle: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-style.ts:40

src/main/typescript/wcardinal/ui/shape/e-shape-points-style.ts:100


EShapePointsStyleOption

Ƭ EShapePointsStyleOption: EShapePointsStyle | keyof typeof EShapePointsStyle | keyof typeof EShapePointsStyle[]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-styles.ts:5


EShapeResourceManagerDeserializationMode

Ƭ EShapeResourceManagerDeserializationMode: typeof EShapeResourceManagerDeserializationMode[keyof typeof EShapeResourceManagerDeserializationMode]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-resource-manager-deserialization-mode.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-resource-manager-deserialization-mode.ts:12


EShapeRuntimeConstructor

Ƭ EShapeRuntimeConstructor: (shape: EShape) => EShapeRuntime

Type declaration

• (shape): EShapeRuntime

Parameters
Name Type
shape EShape
Returns

EShapeRuntime

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-runtimes.ts:9


EShapeRuntimeReset

Ƭ EShapeRuntimeReset: typeof EShapeRuntimeReset[keyof typeof EShapeRuntimeReset]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-runtime-reset.ts:14

src/main/typescript/wcardinal/ui/shape/e-shape-runtime-reset.ts:34


EShapeStrokeSide

Ƭ EShapeStrokeSide: typeof EShapeStrokeSide[keyof typeof EShapeStrokeSide]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-side.ts:11

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-side.ts:24


EShapeStrokeStyle

Ƭ EShapeStrokeStyle: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-style.ts:18

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-style.ts:38


EShapeTextAlignHorizontal

Ƭ EShapeTextAlignHorizontal: typeof EShapeTextAlignHorizontal[keyof typeof EShapeTextAlignHorizontal]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-horizontal.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-horizontal.ts:14


EShapeTextAlignVertical

Ƭ EShapeTextAlignVertical: typeof EShapeTextAlignVertical[keyof typeof EShapeTextAlignVertical]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-vertical.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-vertical.ts:14


EShapeTextAtlasCharacters

Ƭ EShapeTextAtlasCharacters: Record<string, EShapeTextAtlasCharacter>

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:59


EShapeTextDirection

Ƭ EShapeTextDirection: typeof EShapeTextDirection[keyof typeof EShapeTextDirection]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text-direction.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-text-direction.ts:13


EShapeTextStyle

Ƭ EShapeTextStyle: typeof EShapeTextStyle[keyof typeof EShapeTextStyle]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:22

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:27


EShapeTextWeight

Ƭ EShapeTextWeight: typeof EShapeTextWeight[keyof typeof EShapeTextWeight]

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:15

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:20


EShapeType

Ƭ EShapeType: number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-type.ts:36


EShapeUploadedConstructor

Ƭ EShapeUploadedConstructor<T>: (buffer: EShapeBuffer, voffset: number, ioffset: number, tvcount: number, ticount: number, vcount: number, icount: number) => T

Type parameters

Name
T

Type declaration

• (buffer, voffset, ioffset, tvcount, ticount, vcount, icount): T

Parameters
Name Type
buffer EShapeBuffer
voffset number
ioffset number
tvcount number
ticount number
vcount number
icount number
Returns

T

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-uploaded-constructor.ts:8


EShapeUploadedCreator

Ƭ EShapeUploadedCreator: (buffer: EShapeBuffer, shape: EShape, voffset: number, ioffset: number, antialiasWeight: number) => EShapeUploaded | null

Type declaration

▸ (buffer, shape, voffset, ioffset, antialiasWeight): EShapeUploaded | null

Parameters
Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number
Returns

EShapeUploaded | null

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-uploadeds.ts:10


ESnapperModifierAnchor

Ƭ ESnapperModifierAnchor: typeof ESnapperModifierAnchor[keyof typeof ESnapperModifierAnchor]

Defined in

src/main/typescript/wcardinal/ui/snapper/e-snapper.ts:21

src/main/typescript/wcardinal/ui/snapper/e-snapper.ts:34


ESnapperTargetValueType

Ƭ ESnapperTargetValueType: typeof ESnapperTargetValueType[keyof typeof ESnapperTargetValueType]

Defined in

src/main/typescript/wcardinal/ui/snapper/e-snapper-target-value.ts:8

src/main/typescript/wcardinal/ui/snapper/e-snapper-target-value.ts:13


NumberFormatterFunction

Ƭ NumberFormatterFunction: (target: number, step: number) => string

Type declaration

▸ (target, step): string

Parameters
Name Type
target number
step number
Returns

string

Defined in

src/main/typescript/wcardinal/ui/util/number-formatter-function.ts:6


UtilAttachAlign

Ƭ UtilAttachAlign: typeof UtilAttachAlign[keyof typeof UtilAttachAlign]

Defined in

src/main/typescript/wcardinal/ui/util/util-attach.ts:14

src/main/typescript/wcardinal/ui/util/util-attach.ts:40


UtilClickOutsideOnClick

Ƭ UtilClickOutsideOnClick: (e: InteractionEvent) => void

Type declaration

▸ (e): void

Parameters
Name Type
e InteractionEvent
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-click-outside.ts:10


UtilFileAs

Ƭ UtilFileAs: typeof UtilFileAs[keyof typeof UtilFileAs]

Defined in

src/main/typescript/wcardinal/ui/util/util-file-opener.ts:9

src/main/typescript/wcardinal/ui/util/util-file-opener.ts:17


UtilFileOnOpen

Ƭ UtilFileOnOpen<RESULT, EMITTER>: (result: RESULT, file: File, emitter: EMITTER) => void

An open event handler.

Type parameters

Name
RESULT
EMITTER

Type declaration

▸ (result, file, emitter): void

Parameters
Name Type Description
result RESULT a file contents
file File an opened file
emitter EMITTER an emitter
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-file-opener.ts:30


UtilGestureChecker

Ƭ UtilGestureChecker<TARGET>: (e: InteractionEvent, modifier: UtilGestureModifier, target: TARGET) => boolean

Type parameters

Name
TARGET

Type declaration

▸ (e, modifier, target): boolean

Parameters
Name Type
e InteractionEvent
modifier UtilGestureModifier
target TARGET
Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture.ts:32


UtilGestureEasingOnEnd

Ƭ UtilGestureEasingOnEnd: () => void

Type declaration

▸ (): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture-easing.ts:12


UtilGestureEasingOnMove

Ƭ UtilGestureEasingOnMove: (dx: number, dy: number, ds: number, time: number) => void

Type declaration

▸ (dx, dy, ds, time): void

Parameters
Name Type
dx number
dy number
ds number
time number
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture-easing.ts:11


UtilGestureMode

Ƭ UtilGestureMode: typeof UtilGestureMode[keyof typeof UtilGestureMode]

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture-mode.ts:6

src/main/typescript/wcardinal/ui/util/util-gesture-mode.ts:12


UtilGestureModifier

Ƭ UtilGestureModifier: number

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture-modifier.ts:13

src/main/typescript/wcardinal/ui/util/util-gesture-modifier.ts:25


UtilGestureModifierEvent

Ƭ UtilGestureModifierEvent: WheelEvent | MouseEvent | TouchEvent | InteractionEvent

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture-modifiers.ts:9


UtilGestureOnEasingEnd

Ƭ UtilGestureOnEasingEnd<TARGET>: (target: TARGET) => void

Type parameters

Name
TARGET

Type declaration

▸ (target): void

Parameters
Name Type
target TARGET
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture.ts:31


UtilGestureOnEasingStart

Ƭ UtilGestureOnEasingStart<TARGET>: (target: TARGET) => void

Type parameters

Name
TARGET

Type declaration

▸ (target): void

Parameters
Name Type
target TARGET
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture.ts:30


UtilGestureOnEnd

Ƭ UtilGestureOnEnd<TARGET>: (target: TARGET) => void

Type parameters

Name
TARGET

Type declaration

▸ (target): void

Parameters
Name Type
target TARGET
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture.ts:28


UtilGestureOnMove

Ƭ UtilGestureOnMove<TARGET>: (target: TARGET, dx: number, dy: number, x: number, y: number, ds: number) => void

Type parameters

Name
TARGET

Type declaration

▸ (target, dx, dy, x, y, ds): void

Parameters
Name Type
target TARGET
dx number
dy number
x number
y number
ds number
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture.ts:19


UtilGestureOnStart

Ƭ UtilGestureOnStart<TARGET>: (target: TARGET) => void

Type parameters

Name
TARGET

Type declaration

▸ (target): void

Parameters
Name Type
target TARGET
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture.ts:27


UtilGestureOnStop

Ƭ UtilGestureOnStop<TARGET>: (target: TARGET) => void

Type parameters

Name
TARGET

Type declaration

▸ (target): void

Parameters
Name Type
target TARGET
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture.ts:29


UtilHtmlElementCreator

Ƭ UtilHtmlElementCreator<T>: (container: HTMLElement) => T | null

Type parameters

Name Type
T extends HTMLElement

Type declaration

▸ (container): T | null

Parameters
Name Type
container HTMLElement
Returns

T | null

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element.ts:32


UtilHtmlElementPadding

Ƭ UtilHtmlElementPadding: UtilHtmlElementPaddingVH | UtilHtmlElementPaddingLTRB

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element.ts:30


UtilHtmlElementStyler

Ƭ UtilHtmlElementStyler<T>: (target: T, state: DBaseStateSet, padding: UtilHtmlElementPadding | null, elementRect: Rectangle | null, elementMatrix: Matrix | null, clipperRect: Rectangle | null, clipperEx: UtilHtmlElementClipperEx | null | undefined) => void

Type parameters

Name Type
T extends HTMLElement

Type declaration

▸ (target, state, padding, elementRect, elementMatrix, clipperRect, clipperEx): void

Parameters
Name Type
target T
state DBaseStateSet
padding UtilHtmlElementPadding | null
elementRect Rectangle | null
elementMatrix Matrix | null
clipperRect Rectangle | null
clipperEx UtilHtmlElementClipperEx | null | undefined
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element.ts:33


UtilHtmlElementStylerAfter

Ƭ UtilHtmlElementStylerAfter: (target: HTMLDivElement) => void

Type declaration

▸ (target): void

Parameters
Name Type
target HTMLDivElement
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element.ts:44


UtilHtmlElementStylerBefore

Ƭ UtilHtmlElementStylerBefore: (target: HTMLDivElement) => void

Type declaration

▸ (target): void

Parameters
Name Type
target HTMLDivElement
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element.ts:43


UtilHtmlElementToMatrix

Ƭ UtilHtmlElementToMatrix: () => Matrix | null

Type declaration

▸ (): Matrix | null

Returns

Matrix | null

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element.ts:50


UtilHtmlElementToRect

Ƭ UtilHtmlElementToRect: (resolution: number, work: Point, result: Rectangle) => Rectangle | null

Type declaration

▸ (resolution, work, result): Rectangle | null

Parameters
Name Type
resolution number
work Point
result Rectangle
Returns

Rectangle | null

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element.ts:45


UtilHtmlElementWhen

Ƭ UtilHtmlElementWhen: typeof UtilHtmlElementWhen[keyof typeof UtilHtmlElementWhen]

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element-when.ts:9

src/main/typescript/wcardinal/ui/util/util-html-element-when.ts:32


UtilPointerEventOnClick

Ƭ UtilPointerEventOnClick: (e: InteractionEvent, isSimulated: boolean) => void

Type declaration

▸ (e, isSimulated): void

Parameters
Name Type
e InteractionEvent
isSimulated boolean
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-pointer-event.ts:9


UtilPointerEventOnDblClick

Ƭ UtilPointerEventOnDblClick: (e: MouseEvent | TouchEvent, isSimulated: boolean) => void

Type declaration

▸ (e, isSimulated): void

Parameters
Name Type
e MouseEvent | TouchEvent
isSimulated boolean
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-pointer-event.ts:11


UtilWheelEventHandler

Ƭ UtilWheelEventHandler: (e: WheelEvent | Event) => void

Type declaration

▸ (e): void

Parameters
Name Type
e WheelEvent | Event
Returns

void

Defined in

src/main/typescript/wcardinal/ui/util/util-wheel-event.ts:11


UtilWheelEventName

Ƭ UtilWheelEventName: "wheel" | "mousewheel" | "DOMMouseScroll" | "MozMousePixelScroll"

Defined in

src/main/typescript/wcardinal/ui/util/util-wheel-event.ts:9

Variables

BAR_INDEX_COUNT

Const BAR_INDEX_COUNT: 2

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-bar.ts:11


BAR_VERTEX_COUNT

Const BAR_VERTEX_COUNT: 4

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-bar.ts:10


BuilderFlag

Const BuilderFlag: Object

Type declaration

Name Type
ALL number
COLOR 4
INDEX 16
NONE 0
STEP 2
UV 8
VERTEX 1
VERTEX_AND_STEP number
VERTEX_STEP_AND_UV number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/builder.ts:21

src/main/typescript/wcardinal/ui/shape/variant/builder.ts:35


CIRCLE_INDEX_COUNT

Const CIRCLE_INDEX_COUNT: 8

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-circle.ts:8


CIRCLE_VERTEX_COUNT

Const CIRCLE_VERTEX_COUNT: 9

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-circle.ts:7


CIRCLE_WORLD_SIZE

Const CIRCLE_WORLD_SIZE: [number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-circle.ts:9


DAlignHorizontal

Const DAlignHorizontal: Object

Type declaration

Name Type
CENTER 1
LEFT 0
RIGHT 2

Defined in

src/main/typescript/wcardinal/ui/d-align-horizontal.ts:6

src/main/typescript/wcardinal/ui/d-align-horizontal.ts:12


DAlignVertical

Const DAlignVertical: Object

Type declaration

Name Type
BOTTOM 2
MIDDLE 1
TOP 0

Defined in

src/main/typescript/wcardinal/ui/d-align-vertical.ts:6

src/main/typescript/wcardinal/ui/d-align-vertical.ts:12


DAlignWith

Const DAlignWith: Object

Type declaration

Name Type
BORDER 2
PADDING 1
TEXT 0

Defined in

src/main/typescript/wcardinal/ui/d-align-with.ts:6

src/main/typescript/wcardinal/ui/d-align-with.ts:12


DBaseInteractive

Const DBaseInteractive: Object

DBase interactivity. Mouse / touch events are triggered only on interactive objects.

Type declaration

Name Type Description
BOTH number Interactive. And also children are interactive.
CHILDREN 2 -
NONE 0 Not interactive.
SELF 1 -

Defined in

src/main/typescript/wcardinal/ui/d-base-interactive.ts:13

src/main/typescript/wcardinal/ui/d-base-interactive.ts:36


DBaseState

Const DBaseState: Object

Type declaration

Name Type
ACTIVE string
ALTERNATED string
CHANGED string
DISABLED string
FAILED string
FOCUSED string
FOCUS_REVERSE string
FOCUS_ROOT string
GESTURING string
HOVERED string
INVALID string
NEW_WINDOW string
PRESSED string
PROCESSING string
READ_ONLY string
SUCCEEDED string
UNFOCUSABLE string
WARNED string

Defined in

src/main/typescript/wcardinal/ui/d-base-state.ts:6


DBorderMask

Const DBorderMask: Object

A border mask. Borders on masked parts are not rendered.

Type declaration

Name Type
ALL number
BOTTOM 4
BOTTOM_LEFT number
LEFT 8
NONE 0
NOT_BOTTOM number
NOT_LEFT number
NOT_RIGHT number
NOT_TOP number
RIGHT 2
RIGHT_BOTTOM number
RIGHT_LEFT number
TOP 1
TOP_BOTTOM number
TOP_LEFT number
TOP_RIGHT number

Defined in

src/main/typescript/wcardinal/ui/d-border-mask.ts:15

src/main/typescript/wcardinal/ui/d-border-mask.ts:40


DButtonBaseWhen

Const DButtonBaseWhen: Object

DButtonBase option when to activate a button.

Type declaration

Name Type Description
CLICKED 0 Activates when clicked
DOUBLE_CLICKED 1 Activates when double clicked

Defined in

src/main/typescript/wcardinal/ui/d-button-base-when.ts:9

src/main/typescript/wcardinal/ui/d-button-base-when.ts:17


DChartAxisPosition

Const DChartAxisPosition: Object

Type declaration

Name Type
BOTTOM 1
LEFT 2
RIGHT 3
TOP 0

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-position.ts:6

src/main/typescript/wcardinal/ui/d-chart-axis-position.ts:13


DChartAxisTickPosition

Const DChartAxisTickPosition: Object

Type declaration

Name Type
INSIDE 0
OUTSIDE 1

Defined in

src/main/typescript/wcardinal/ui/d-chart-axis-tick-position.ts:6

src/main/typescript/wcardinal/ui/d-chart-axis-tick-position.ts:11


DChartCoordinateDirection

Const DChartCoordinateDirection: Object

Type declaration

Name Type
X 0
Y 1

Defined in

src/main/typescript/wcardinal/ui/d-chart-coordinate-direction.ts:6

src/main/typescript/wcardinal/ui/d-chart-coordinate-direction.ts:11


DChartSelectionPoint

Const DChartSelectionPoint: Object

Type declaration

Name Type
CLOSER 2
INTERSECTION 3
NEXT 1
PREVIOUS 0

Defined in

src/main/typescript/wcardinal/ui/d-chart-selection.ts:12

src/main/typescript/wcardinal/ui/d-chart-selection.ts:19


DColorType

Const DColorType: Object

Type declaration

Name Type
CUSTOM 0
STANDARD 1

Defined in

src/main/typescript/wcardinal/ui/d-color-type.ts:6

src/main/typescript/wcardinal/ui/d-color-type.ts:11


DCornerMask

Const DCornerMask: Object

A corner mask. Masked corners are rendered as if the corner radius is zero.

Type declaration

Name Type
ALL number
BOTTOM number
BOTTOM_LEFT 4
BOTTOM_RIGHT 8
LEFT number
NONE 0
RIGHT number
TOP number
TOP_LEFT 1
TOP_RIGHT 2

Defined in

src/main/typescript/wcardinal/ui/d-corner-mask.ts:15

src/main/typescript/wcardinal/ui/d-corner-mask.ts:28


DDiagramBaseControllerOpenType

Const DDiagramBaseControllerOpenType: Object

DDiagram controller open type.

Type declaration

Name Type
DIAGRAM 0
EXTENSION 1000
PAGE 1

Defined in

src/main/typescript/wcardinal/ui/d-diagram-base-controller.ts:18

src/main/typescript/wcardinal/ui/d-diagram-base-controller.ts:27


DDiagramSerializedVersion

Const DDiagramSerializedVersion: number = 1

Defined in

src/main/typescript/wcardinal/ui/d-diagram-serialized.ts:21


DDialogCloseOn

Const DDialogCloseOn: Object

Type declaration

Name Type
CLICK_OUTSIDE 2
ESC 1
NONE 0

Defined in

src/main/typescript/wcardinal/ui/d-dialog-close-on.ts:6

src/main/typescript/wcardinal/ui/d-dialog-close-on.ts:12


DDialogGestureMode

Const DDialogGestureMode: Object

Type declaration

Name Type
CLEAN 1
DIRTY 0

Defined in

src/main/typescript/wcardinal/ui/d-dialog-gesture-mode.ts:6

src/main/typescript/wcardinal/ui/d-dialog-gesture-mode.ts:11


DDialogMode

Const DDialogMode: Object

DDialog mode options.

Type declaration

Name Type
MENU 2
MODAL 0
MODELESS 1

Defined in

src/main/typescript/wcardinal/ui/d-dialog-mode.ts:9

src/main/typescript/wcardinal/ui/d-dialog-mode.ts:15


DDialogState

Const DDialogState: Object

Type declaration

Name Type
MENU string
MODAL string
MODELESS string

Defined in

src/main/typescript/wcardinal/ui/d-dialog-state.ts:6


DDynamicTextStyleWordWrap

Const DDynamicTextStyleWordWrap: Object

Type declaration

Name Type
BREAK_ALL 2
NONE 0
NORMAL 1

Defined in

src/main/typescript/wcardinal/ui/d-dynamic-text-style-word-wrap.ts:6

src/main/typescript/wcardinal/ui/d-dynamic-text-style-word-wrap.ts:12


DHtmlElementState

Const DHtmlElementState: Object

Type declaration

Name Type
NO_POINTER_EVENTS string

Defined in

src/main/typescript/wcardinal/ui/d-html-element-state.ts:6


DIndicatorProcessingState

Const DIndicatorProcessingState: Object

Type declaration

Name Type
INITIAL 0
REJECTED 3
RESOLVED 2
STARTED 1

Defined in

src/main/typescript/wcardinal/ui/d-indicator-processing.ts:43

src/main/typescript/wcardinal/ui/d-indicator-processing.ts:50


DLayoutClearType

Const DLayoutClearType: Object

Type declaration

Name Type
AFTER 2
BEFORE 1
BOTH number
NONE 0

Defined in

src/main/typescript/wcardinal/ui/d-layout-clear-type.ts:9

src/main/typescript/wcardinal/ui/d-layout-clear-type.ts:16


DLayoutDirection

Const DLayoutDirection: Object

Type declaration

Name Type
HORIZONTAL 1
VERTICAL 0

Defined in

src/main/typescript/wcardinal/ui/d-layout-direction.ts:6

src/main/typescript/wcardinal/ui/d-layout-direction.ts:11


DLinkMenuItemId

Const DLinkMenuItemId: Object

Type declaration

Name Type
COPY_LINK_ADDRESS 2
OPEN_LINK 0
OPEN_LINK_IN_NEW_WINDOW 1

Defined in

src/main/typescript/wcardinal/ui/d-link-menu-item-id.ts:6

src/main/typescript/wcardinal/ui/d-link-menu-item-id.ts:12


DLinkTarget

Const DLinkTarget: Object

Type declaration

Name Type
AUTO 0
NEW_WINDOW 2
THIS_WINDOW 1

Defined in

src/main/typescript/wcardinal/ui/d-link-target.ts:6

src/main/typescript/wcardinal/ui/d-link-target.ts:12


DListDataSelectionType

Const DListDataSelectionType: Object

DListDataSelection type.

Type declaration

Name Type
MULTIPLE 2
NONE 0
SINGLE 1

Defined in

src/main/typescript/wcardinal/ui/d-list-data-selection.ts:12

src/main/typescript/wcardinal/ui/d-list-data-selection.ts:18


DMenuSidedSelectionType

Const DMenuSidedSelectionType: Object

Type declaration

Name Type
NONE 0
SINGLE 1
SINGLE_ONCE 2

Defined in

src/main/typescript/wcardinal/ui/d-menu-sided-selection.ts:14

src/main/typescript/wcardinal/ui/d-menu-sided-selection.ts:20


DPickerDatetimeMask

Const DPickerDatetimeMask: Object

Type declaration

Name Type
ALL number
DATE 1
HOURS 2
MINUTES 4
NONE 0
SECONDS 8
TIME number

Defined in

src/main/typescript/wcardinal/ui/d-picker-datetime-mask.ts:11

src/main/typescript/wcardinal/ui/d-picker-datetime-mask.ts:21


DScalarExpressionNodeType

Const DScalarExpressionNodeType: Object

Type declaration

Name Type
ADD 7
ADD_OR_PLUS 3
CLOSE 1
COMMA 13
CURRENT 17
DIV 10
MAX 12
MIN 11
MINUS 6
MUL 9
NUMBER 18
OPEN 0
PADDING 16
PARENSESIS 2
PARENT 14
PLUS 5
SELF 15
SUB 8
SUB_OR_MINUS 4

Defined in

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:9

src/main/typescript/wcardinal/ui/d-scalar-expression.ts:40


DTableCategoryCellEdge

Const DTableCategoryCellEdge: Object

Type declaration

Name Type
BOTH 3
LEFT 1
NONE 0
RIGHT 2

Defined in

src/main/typescript/wcardinal/ui/d-table-category-cell.ts:27

src/main/typescript/wcardinal/ui/d-table-category-cell.ts:34


DTableColumnType

Const DTableColumnType: Object

Type declaration

Name Type
ACTION 12
BUTTON 7
CHECK 4
CHECK_SINGLE 5
COLOR 6
DATE 9
DATETIME 10
INDEX 0
INTEGER 2
LINK 13
REAL 3
SELECT 8
TEXT 1
TEXT_AREA 15
TIME 11
TREE 14

Defined in

src/main/typescript/wcardinal/ui/d-table-column-type.ts:6

src/main/typescript/wcardinal/ui/d-table-column-type.ts:25


DTableColumnUpdate

Const DTableColumnUpdate: Object

An update region when table cells get edited.

Type declaration

Name Type
ALL 2
CELL 0
ROW 1

Defined in

src/main/typescript/wcardinal/ui/d-table-column-update.ts:8

src/main/typescript/wcardinal/ui/d-table-column-update.ts:14


DTableDataOrder

Const DTableDataOrder: Object

A sort order.

Type declaration

Name Type
ASCENDING 0
DESCENDING 1

Defined in

src/main/typescript/wcardinal/ui/d-table-data-sorter.ts:35

src/main/typescript/wcardinal/ui/d-table-data-sorter.ts:40


DTableDataSelectionType

Const DTableDataSelectionType: Object

DTableDataSelection type.

Type declaration

Name Type
MULTIPLE 2
NONE 0
SINGLE 1

Defined in

src/main/typescript/wcardinal/ui/d-table-data-selection.ts:13

src/main/typescript/wcardinal/ui/d-table-data-selection.ts:19


DTableHeaderCellEdge

Const DTableHeaderCellEdge: Object

Type declaration

Name Type
BOTH 3
LEFT 1
NONE 0
RIGHT 2

Defined in

src/main/typescript/wcardinal/ui/d-table-header-cell.ts:35

src/main/typescript/wcardinal/ui/d-table-header-cell.ts:42


DTableState

Const DTableState: Object

DTable states.

Type declaration

Name Type Description
CHECKABLE string Header cells of checkable columns.
END string End cells in rows.
FROZEN string Cells of frozen columns.
FROZEN_END string Cells of a right-most frozen column.
HAS_CHILDREN string Tree cells with child cells.
HOVERED_ON_EDGE string Header or category cells hovered on their edges.
OPENED string Tree cells opened.
RESIZING string Header or category of being resized.
SELECTABLE string Selectable row
SORTABLE string Header cells of sortable columns.
SORTED_ASCENDING string Header cells of columns sorted in the ascending order.
SORTED_DESCENDING string Header cells of columns sorted in the descending order.
START string Start cells in rows.

Defined in

src/main/typescript/wcardinal/ui/d-table-state.ts:9


DThemeDarkAtlas

Const DThemeDarkAtlas: UtilSvgAtlasBuilder

Defined in

src/main/typescript/wcardinal/ui/theme/dark/d-theme-dark-atlas.ts:9


DThemeWhiteAtlas

Const DThemeWhiteAtlas: UtilSvgAtlasBuilder

Defined in

src/main/typescript/wcardinal/ui/theme/white/d-theme-white-atlas.ts:9


DTreeDataSelectionType

Const DTreeDataSelectionType: Object

DTreeDataSelection type.

Type declaration

Name Type
MULTIPLE 2
NONE 0
SINGLE 1

Defined in

src/main/typescript/wcardinal/ui/d-tree-data-selection.ts:13

src/main/typescript/wcardinal/ui/d-tree-data-selection.ts:19


DTreeItemState

Const DTreeItemState: Object

Tree item states.

Type declaration

Name Type Description
HAS_CHILDREN string A node has children.
OPENED string A node is opened.

Defined in

src/main/typescript/wcardinal/ui/d-tree-item-state.ts:9


DynamicFontAtlasCharacterType

Const DynamicFontAtlasCharacterType: Object

Type declaration

Name Type
LETTER 8
LETTER_NB number
LETTER_R number
LETTER_RNB number
NON_BREAKING 2
RESERVED 1
SPACE 4
SPACE_NB number
SPACE_R number
SPACE_RNB number

Defined in

src/main/typescript/wcardinal/ui/util/dynamic-font-atlas-character-type.ts:19

src/main/typescript/wcardinal/ui/util/dynamic-font-atlas-character-type.ts:34


EShapeAcceptorEdgeSide

Const EShapeAcceptorEdgeSide: Object

Type declaration

Name Type
ALL number
BOTTOM number
LEFT number
NONE number
RIGHT number
TOP number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-side.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-side.ts:15


EShapeAcceptorEdgeType

Const EShapeAcceptorEdgeType: Object

Type declaration

Name Type
ALL 3
HEAD 2
TAIL 1

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-edge-type.ts:12


EShapeAcceptorType

Const EShapeAcceptorType: Object = EShapeAcceptorEdgeType

Deprecated

in favor of EShapeAcceptorEdgeType.

Type declaration

Name Type
ALL 3
HEAD 2
TAIL 1

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-type.ts:11

src/main/typescript/wcardinal/ui/shape/e-shape-acceptor-type.ts:16


EShapeActionEnvironment

EShapeActionEnvironment: EShapeActionEnvironment

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-environment.ts:13

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-environment.ts:23


EShapeActionOpenOpeners

Const EShapeActionOpenOpeners: Record<number, EShapeActionOpenOpener> = {}

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-open-openers.ts:8


EShapeActionValueBlinkType

Const EShapeActionValueBlinkType: Object

Type declaration

Name Type
BRIGHTEN 1
COLOR_FILL 4
COLOR_STROKE 5
DARKEN 2
OPACITY 3
VISIBILITY 0

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-blink-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-blink-type.ts:15


EShapeActionValueChangeColorTarget

Const EShapeActionValueChangeColorTarget: Object

Type declaration

Name Type
ALPHA 2
BRIGHTNESS 4
CODE 3
COLOR 1
COLOR_AND_ALPHA 0

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-target.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-target.ts:14


EShapeActionValueChangeColorType

Const EShapeActionValueChangeColorType: Object

Type declaration

Name Type
ALL number
FILL 1
FILL_AND_STROKE number
NONE 0
STROKE 2
TEXT 4
TEXT_OUTLINE 8

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type.ts:11

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type.ts:21


EShapeActionValueChangeColorTypeLegacy

Const EShapeActionValueChangeColorTypeLegacy: Object

Type declaration

Name Type
ALL 5
FILL 0
FILL_AND_STROKE 2
STROKE 1
TEXT 3
TEXT_OUTLINE 4

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type-legacy.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-color-type-legacy.ts:15


EShapeActionValueChangeTextType

Const EShapeActionValueChangeTextType: Object

Type declaration

Name Type
NUMBER 1
TEXT 0

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-text-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-change-text-type.ts:11


EShapeActionValueDeserializers

Const EShapeActionValueDeserializers: Record<number, EShapeActionValueDeserializer | undefined> = {}

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-deserializers.ts:14


EShapeActionValueGestureOperationType

Const EShapeActionValueGestureOperationType: Object

Type declaration

Name Type
ALL number
DRAG 1
NONE 0
PINCH 2

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-operation-type.ts:9

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-operation-type.ts:16


EShapeActionValueGestureType

Const EShapeActionValueGestureType: Object

Type declaration

Name Type
LAYER 1
SHAPE 0

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-gesture-type.ts:11


EShapeActionValueMiscType

Const EShapeActionValueMiscType: Object

Type declaration

Name Type Description
EMIT_EVENT 3 -
EXECUTE 12 -
GESTURE 11 Deprecated in favor of EShapeActionValueType’s GESTURE
GESTURE_LAYER 10 Deprecated in favor of EShapeActionValueType’s GESTURE
HTML_ELEMENT 7 -
HTML_ELEMENT_WITHOUT_POINTER_EVENTS 8 -
INPUT_INTEGER 1 -
INPUT_REAL 2 -
INPUT_TEXT 0 -
SHOW_HIDE_LAYER 9 Deprecated in favor of EShapeActionValueShowHideType’s LAYER
WRITE_BOTH 4 -
WRITE_LOCAL 5 -
WRITE_REMOTE 6 -

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-misc-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-misc-type.ts:25


EShapeActionValueOnInputAction

Const EShapeActionValueOnInputAction: Object

Type declaration

Name Type
EMIT_EVENT 0
WRITE_BOTH 1
WRITE_LOCAL 2
WRITE_REMOTE 3

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-on-input-action.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-on-input-action.ts:13


EShapeActionValueOpenDialogType

Const EShapeActionValueOpenDialogType: Object

Type declaration

Name Type
BOOLEAN 3
DATE 4
DATETIME 6
EXTENSION 1000
INTEGER 1
REAL 2
TEXT 0
TIME 5

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-dialog-type.ts:18


EShapeActionValueOpenType

Const EShapeActionValueOpenType: Object

Type declaration

Name Type Description
DIAGRAM 10 -
DIAGRAM_LEGACY 0 Deprecated in favor of DIAGRAM
DIALOG 12 -
DIALOG_BOOLEAN 6 Deprecated in favor of DIALOG
DIALOG_DATE 7 Deprecated in favor of DIALOG
DIALOG_DATETIME 9 Deprecated in favor of DIALOG
DIALOG_INTEGER 4 Deprecated in favor of DIALOG
DIALOG_REAL 5 Deprecated in favor of DIALOG
DIALOG_TEXT 3 Deprecated in favor of DIALOG
DIALOG_TIME 8 Deprecated in favor of DIALOG
EXTENSION 1000 -
PAGE 11 -
PAGE_INPLACE_LEGACY 2 Deprecated in favor of PAGE
PAGE_LEGACY 1 Deprecated in favor of PAGE

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-type.ts:8

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-open-type.ts:35


EShapeActionValueShowHideType

Const EShapeActionValueShowHideType: Object

Type declaration

Name Type Description
LAYER 3 -
SHAPE 2 -
SHAPE_HIDE 1 Deprecated in favor of SHAPE
SHAPE_SHOW 0 Deprecated in favor of SHAPE

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-show-hide-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-show-hide-type.ts:15


EShapeActionValueTransformMoveType

Const EShapeActionValueTransformMoveType: Object

Type declaration

Name Type
ABSOLUTE_X 2
ABSOLUTE_Y 3
FORWARD_OR_BACKWARD 4
LEFT_OR_RIGHT 5
RELATIVE_X 0
RELATIVE_Y 1

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-move-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-move-type.ts:15


EShapeActionValueTransformResizeType

Const EShapeActionValueTransformResizeType: Object

Type declaration

Name Type
ABSOLUTE_HEIGHT 4
ABSOLUTE_SIZE 3
ABSOLUTE_WIDTH 5
RELATIVE_HEIGHT 1
RELATIVE_SIZE 0
RELATIVE_WIDTH 2

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-resize-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-resize-type.ts:15


EShapeActionValueTransformRotateType

Const EShapeActionValueTransformRotateType: Object

Type declaration

Name Type
ABSOLUTE 1
RELATIVE 0

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-rotate-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-rotate-type.ts:11


EShapeActionValueTransformType

Const EShapeActionValueTransformType: Object

Type declaration

Name Type
MOVE 1
RESIZE 0
ROTATE 2

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-transform-type.ts:12


EShapeActionValueType

Const EShapeActionValueType: Object

Type declaration

Name Type Description
BLINK 1 -
CHANGE_COLOR 9 -
CHANGE_COLOR_LEGACY 5 Deprecated in favor of EShapeActionValueType’s CHANGE_COLOR
CHANGE_CURSOR 7 -
CHANGE_TEXT 6 -
EMIT_EVENT 4 Deprecated in favor of EShapeActionValueMiscType’s MISC
EXTENSION 1000 -
GESTURE 10 -
MISC 8 -
OPEN 3 -
SHOW_HIDE 0 -
TRANSFORM 2 -

Defined in

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-type.ts:6

src/main/typescript/wcardinal/ui/shape/action/e-shape-action-value-type.ts:23


EShapeBarPosition

Const EShapeBarPosition: Object

Type declaration

Name Type
BOTTOM 3
LEFT 1
RIGHT 2
TOP 0

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-bar-position.ts:6

src/main/typescript/wcardinal/ui/shape/variant/e-shape-bar-position.ts:13


EShapeCapability

Const EShapeCapability: Object

Type declaration

Name Type Description
ACTION 65536 -
ALIGN 0 Deprecated
ALL number -
BORDER_RADIUS 4096 -
CHILDREN 524288 -
CONNECTOR number -
COORDINATE number -
CURSOR 131072 -
DATA 32768 -
DATA_MAPPING 1048576 -
EMBEDDED number -
EMBEDDED_ACCEPTOR_EDGE number -
FILL 512 -
GROUP number -
GROUPING 128 -
HEIGHT 8 -
ID 1 -
LAYER 262144 -
LINE 2097152 -
LINE_HEAD 8388608 -
LINE_TAIL 4194304 -
NONE 0 -
ORDER_IN_LAYER 262144 -
POSITION 2 -
PRIMITIVE number -
REPLACING 64 -
ROTATION 16 -
SHAPE number -
SKEW 32 -
STROKE 1024 -
STROKE_SIDE 2048 -
TAG 32768 Deprecated in favor of DATA
TEXT 8192 -
TEXTURE 16384 -
UNGROUPING 256 -
WIDTH 4 -

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-capability.ts:51

src/main/typescript/wcardinal/ui/shape/e-shape-capability.ts:191


EShapeCopyPart

Const EShapeCopyPart: Object

Type declaration

Name Type Description
ACTION 8 -
ALL number -
CAPABILITY 512 -
CONNECTOR 256 -
DATA 128 -
IMAGE 64 -
NONE 0 -
POINTS 16 -
SIZE 2 -
STATE 32 -
STYLE 4 -
TAG 128 Deprecated in favor of DATA
TRANSFORM 1 -

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-copy-part.ts:17

src/main/typescript/wcardinal/ui/shape/e-shape-copy-part.ts:34


EShapeCorner

Const EShapeCorner: Object

Type declaration

Name Type
ALL number
BOTTOM number
BOTTOM_LEFT 4
BOTTOM_RIGHT 8
LEFT number
NONE 0
RIGHT number
TOP number
TOP_LEFT 1
TOP_RIGHT 2

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-corner.ts:11

src/main/typescript/wcardinal/ui/shape/e-shape-corner.ts:24


EShapeDataValueOrder

Const EShapeDataValueOrder: Object

Type declaration

Name Type
ASCENDING 0
DESCENDING 1

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-order.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-order.ts:11


EShapeDataValueRangeType

Const EShapeDataValueRangeType: Object

Type declaration

Name Type
FROM 1
FROM_TO number
NONE 0
TO 2

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-range.ts:12

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-range.ts:19


EShapeDataValueScope

Const EShapeDataValueScope: Object

Type declaration

Name Type Description
PRIVATE 0 A private data is accessible only from inside the graphic that this data belongs to. The data is not accessible from anywhere outside the graphic.
PROTECTED 2 A protected data is accessible only from inside graphics. Unlike the private data, the protected data is also accessible from parent graphics containing the graphic that this data belongs to.
PUBLIC 1 A public data is accessible from anywhere outside graphics.

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-scope.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-scope.ts:26


EShapeDataValueState

Const EShapeDataValueState: Object

Type declaration

Name Type Description
BAD_REQUEST 2 The settings or something provided by clients are considered incorrect.
FORBIDDEN 5 A client is not allowed to access this data.
FOUND 0 The request succeeded.
NOT_DEFINED 6 The server can not find the definition of the requested data.
NOT_FOUND 1 The server can not find the requested data.
SERVER_ERROR 3 The server has encountered unknown errors.
SERVICE_UNAVAILABLE 4 The server is not ready to handle the request.
UNKNOWN -1 The data status is not known. This is the default state.

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-state.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-state.ts:49


EShapeDataValueType

Const EShapeDataValueType: Object

Type declaration

Name Type
BOOLEAN 7
BOOLEAN_ARRAY 8
EXTENSION 1000
NUMBER 0
NUMBER_ARRAY 1
OBJECT 4
OBJECT_ARRAY 5
STRING 2
STRING_ARRAY 3
TICKER 6

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-data-value-type.ts:21


EShapeDeserializers

Const EShapeDeserializers: Record<number, EShapeDeserializer | undefined> = {}

Mappings of shape types and deserializers.

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-deserializers.ts:22


EShapeLayerState

Const EShapeLayerState: Object

Type declaration

Name Type
DRAGGABLE string
INTERACTIVE string
INVISIBLE string
PINCHABLE string

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-layer-state.ts:6


EShapeLineBaseHitPart

Const EShapeLineBaseHitPart: Object

Type declaration

Name Type
CHILDREN 5
LINE 1
MARKER_HEAD 3
MARKER_TAIL 2
NONE 0
TEXT 4

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-base-hit-part.ts:6

src/main/typescript/wcardinal/ui/shape/variant/e-shape-line-base-hit-part.ts:15


EShapeLockPart

Const EShapeLockPart: Object

Type declaration

Name Type
ALL 31
CONNECTOR 16
TRANSFORM 7
TRANSFORM_AND_UPLOADED 15
TRANSFORM_CHILD 1
TRANSFORM_PARENT 4
TRANSFORM_THIS 2
UPLOADED 8

Defined in

src/main/typescript/wcardinal/ui/shape/variant/e-shape-lock-part.ts:1

src/main/typescript/wcardinal/ui/shape/variant/e-shape-lock-part.ts:12


EShapeOnDeserializeds

Const EShapeOnDeserializeds: Record<number, EShapeOnDeserialized | undefined> = {}

Mappings of shape types and onDeserialized handlers.

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-deserializers.ts:37


EShapePointsMarkerType

Const EShapePointsMarkerType: Object

Type declaration

Name Type
CIRCLE 1
NONE 0
RECTANGLE 3
TRIANGLE 2

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-marker-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-points-marker-type.ts:13


EShapePointsStyle

Const EShapePointsStyle: Object

EShape point style.

Type declaration

Name Type Description
CLOSED 1 -
CURVE number Deprecated in favor of CURVE_SPLINE.
CURVE_BEZIER_QUADRATIC number -
CURVE_SPLINE number -
DASHED 128 -
DASHED_DENSELY 256 -
DASHED_LOOSELY 512 -
DASHED_MASK number Deprecated in favor of EShapeStrokeStyle.
DOTTED 16 -
DOTTED_DENSELY 32 -
DOTTED_LOOSELY 64 -
DOTTED_MASK number Deprecated in favor of EShapeStrokeStyle.
FORMATTER_CURVE 1 Deprecated in favor of FORMATTER_CURVE_SPLINE.
FORMATTER_CURVE_BEZIER_QUADRATIC 2 -
FORMATTER_CURVE_SPLINE 1 -
FORMATTER_EXTENSION_HIGHEST 1023 -
FORMATTER_EXTENSION_LOWEST 512 -
FORMATTER_MASK 1047552 -
FORMATTER_SHIFT 10 -
NONE 0 -
NON_EXPANDING_WIDTH 2 -
NON_SCALING_DOT_AND_DASH 8 -
NON_SCALING_MASK number Deprecated in favor of EShapeStrokeStyle.
NON_SHRINKING_WIDTH 4 -

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-style.ts:40

src/main/typescript/wcardinal/ui/shape/e-shape-points-style.ts:100


EShapeResourceManagerDeserializationMode

Const EShapeResourceManagerDeserializationMode: Object

Type declaration

Name Type
EDITOR 2
EDITOR_DATA_MAPPED 1
VIEWER 0

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-resource-manager-deserialization-mode.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-resource-manager-deserialization-mode.ts:12


EShapeRuntimeReset

Const EShapeRuntimeReset: Object

Type declaration

Name Type
COLOR number
COLOR_FILL 8
COLOR_FILL_AND_STROKE number
COLOR_STROKE 16
COLOR_TEXT 32
COLOR_TEXT_OUTLINE 64
CURSOR 2048
HEIGHT 256
NONE 0
POSITION number
POSITION_X 1
POSITION_Y 2
ROTATION 4
SIZE number
TEXT 1024
VISIBILITY 128
WIDTH 512

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-runtime-reset.ts:14

src/main/typescript/wcardinal/ui/shape/e-shape-runtime-reset.ts:34


EShapeRuntimes

Const EShapeRuntimes: Record<number, EShapeRuntimeConstructor | undefined> = {}

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-runtimes.ts:11


EShapeState

Const EShapeState: Object

Type declaration

Name Type
ACTIVATED string
CLICKED string
DBL_CLICKED string
DEACTIVATED string
DOWN string
RIGHT_CLICKED string
RIGHT_DOWN string
RIGHT_PRESSED string
RIGHT_UP string
RIGHT_UP_OUTSIDE string
UP string
UP_OUTSIDE string

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-state.ts:6


EShapeStrokeSide

Const EShapeStrokeSide: Object

Type declaration

Name Type
ALL number
BOTTOM 4
BOTTOM_OR_LEFT number
BOTTOM_OR_RIGHT number
LEFT 8
NONE 0
RIGHT 2
TOP 1
TOP_OR_LEFT number
TOP_OR_RIGHT number

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-side.ts:11

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-side.ts:24


EShapeStrokeStyle

Const EShapeStrokeStyle: Object

Type declaration

Name Type
DASHED 128
DASHED_DENSELY 256
DASHED_LOOSELY 512
DASHED_MASK number
DOTTED 16
DOTTED_DENSELY 32
DOTTED_LOOSELY 64
DOTTED_MASK number
NONE 0
NON_EXPANDING_WIDTH 2
NON_SCALING number
NON_SCALING_DOT_AND_DASH 8
NON_SCALING_MASK number
NON_SHRINKING_WIDTH 4

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-style.ts:18

src/main/typescript/wcardinal/ui/shape/e-shape-stroke-style.ts:38


EShapeTextAlignHorizontal

Const EShapeTextAlignHorizontal: Object

Type declaration

Name Type
CENTER 1
LEFT 0
OUTSIDE_LEFT 3
OUTSIDE_RIGHT 4
RIGHT 2

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-horizontal.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-horizontal.ts:14


EShapeTextAlignVertical

Const EShapeTextAlignVertical: Object

Type declaration

Name Type
BOTTOM 2
MIDDLE 1
OUTSIDE_BOTTOM 4
OUTSIDE_TOP 3
TOP 0

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-vertical.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-text-align-vertical.ts:14


EShapeTextDirection

Const EShapeTextDirection: Object

Type declaration

Name Type
BOTTOM_TO_TOP 2
LEFT_TO_RIGHT 0
RIGHT_TO_LEFT 3
TOP_TO_BOTTOM 1

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text-direction.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-text-direction.ts:13


EShapeTextStyle

Const EShapeTextStyle: Object

Type declaration

Name Type
ITALIC 1
NORMAL 0

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:22

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:27


EShapeTextWeight

Const EShapeTextWeight: Object

Type declaration

Name Type
BOLD 1
NORMAL 0

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:15

src/main/typescript/wcardinal/ui/shape/e-shape-text.ts:20


EShapeType

Const EShapeType: Object

Type declaration

Name Type
BAR 9
BUTTON 20
CIRCLE 0
CONNECTOR_ELBOW 23
CONNECTOR_LINE 22
EMBEDDED 18
EMBEDDED_ACCEPTOR_EDGE 25
EMBEDDED_LAYER 19
EXTENSION 1000
GROUP 8
GROUP_SHADOWED 12
IMAGE 6
IMAGE_SDF 7
LABEL 10
LINE 5
LINE_OF_CIRCLES 13
LINE_OF_RECTANGLES 14
LINE_OF_RECTANGLE_ROUNDEDS 15
LINE_OF_TRIANGLES 16
LINE_OF_TRIANGLE_ROUNDEDS 17
NULL 11
RECTANGLE 1
RECTANGLE_PIVOTED 21
RECTANGLE_ROUNDED 2
SEMICIRCLE 24
TRIANGLE 3
TRIANGLE_ROUNDED 4

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-type.ts:6

src/main/typescript/wcardinal/ui/shape/e-shape-type.ts:36


EShapeUploadeds

Const EShapeUploadeds: Record<number, EShapeUploadedCreator | undefined> = {}

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-uploadeds.ts:18


ESnapperModifierAnchor

Const ESnapperModifierAnchor: Object

Type declaration

Name Type
BOTTOM_CENTER 7
BOTTOM_LEFT 6
BOTTOM_RIGHT 8
MIDDLE_LEFT 4
MIDDLE_RIGHT 5
NONE 0
ROTATION 9
TOP_CENTER 2
TOP_LEFT 1
TOP_RIGHT 3

Defined in

src/main/typescript/wcardinal/ui/snapper/e-snapper.ts:21

src/main/typescript/wcardinal/ui/snapper/e-snapper.ts:34


ESnapperTargetValueType

Const ESnapperTargetValueType: Object

Type declaration

Name Type
HORIZONTAL 0
VERTICAL 1

Defined in

src/main/typescript/wcardinal/ui/snapper/e-snapper-target-value.ts:8

src/main/typescript/wcardinal/ui/snapper/e-snapper-target-value.ts:13


IMAGE_SDF_INDEX_COUNT

Const IMAGE_SDF_INDEX_COUNT: 8

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-image-sdf.ts:8


IMAGE_SDF_VERTEX_COUNT

Const IMAGE_SDF_VERTEX_COUNT: 9

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-image-sdf.ts:7


IMAGE_SDF_WORLD_SIZE

Const IMAGE_SDF_WORLD_SIZE: [number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-image-sdf.ts:9


RECTANGLE_INDEX_COUNT

Const RECTANGLE_INDEX_COUNT: 8

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle.ts:9


RECTANGLE_ROUNDED_INDEX_COUNT

Const RECTANGLE_ROUNDED_INDEX_COUNT: 24

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle-rounded.ts:9


RECTANGLE_ROUNDED_VERTEX_COUNT

Const RECTANGLE_ROUNDED_VERTEX_COUNT: 44

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle-rounded.ts:8


RECTANGLE_ROUNDED_WORLD_SIZE

Const RECTANGLE_ROUNDED_WORLD_SIZE: [number, number, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle-rounded.ts:10


RECTANGLE_VERTEX_COUNT

Const RECTANGLE_VERTEX_COUNT: 16

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle.ts:8


RECTANGLE_WORLD_SIZE

Const RECTANGLE_WORLD_SIZE: [number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle.ts:10


SEMICIRCLE_INDEX_COUNT

Const SEMICIRCLE_INDEX_COUNT: 4

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-semicircle.ts:8


SEMICIRCLE_VERTEX_COUNT

Const SEMICIRCLE_VERTEX_COUNT: 6

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-semicircle.ts:7


SEMICIRCLE_WORLD_SIZE

Const SEMICIRCLE_WORLD_SIZE: [number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-semicircle.ts:9


TEXT_FMIN

Const TEXT_FMIN: number = 0.00001

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:22


TEXT_INDEX_COUNT

Const TEXT_INDEX_COUNT: 2

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:20


TEXT_INDEX_COUNT_SHIFT

Const TEXT_INDEX_COUNT_SHIFT: 1

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:21


TEXT_VERTEX_COUNT

Const TEXT_VERTEX_COUNT: 4

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:18


TEXT_VERTEX_COUNT_SHIFT

Const TEXT_VERTEX_COUNT_SHIFT: 2

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:19


TRIANGLE_INDEX_COUNT

Const TRIANGLE_INDEX_COUNT: 3

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle.ts:8


TRIANGLE_ROUNDED_INDEX_COUNT

Const TRIANGLE_ROUNDED_INDEX_COUNT: 15

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle-rounded.ts:9


TRIANGLE_ROUNDED_VERTEX_COUNT

Const TRIANGLE_ROUNDED_VERTEX_COUNT: 22

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle-rounded.ts:8


TRIANGLE_ROUNDED_WORLD_SIZE

Const TRIANGLE_ROUNDED_WORLD_SIZE: [number, number, number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle-rounded.ts:10


TRIANGLE_VERTEX_COUNT

Const TRIANGLE_VERTEX_COUNT: 7

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle.ts:7


TRIANGLE_WORLD_SIZE

Const TRIANGLE_WORLD_SIZE: [number, number, number]

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle.ts:9


UtilAttachAlign

Const UtilAttachAlign: Object

Type declaration

Name Type
BOTTOM 12
BOTTOM_CENTER 14
BOTTOM_LEFT 13
BOTTOM_RIGHT 15
LEFT 4
LEFT_BOTTOM 7
LEFT_MIDDLE 6
LEFT_TOP 5
NONE 17
OVER 16
RIGHT 8
RIGHT_BOTTOM 11
RIGHT_MIDDLE 10
RIGHT_TOP 9
TOP 0
TOP_CENTER 2
TOP_LEFT 1
TOP_RIGHT 3

Defined in

src/main/typescript/wcardinal/ui/util/util-attach.ts:14

src/main/typescript/wcardinal/ui/util/util-attach.ts:40


UtilFileAs

Const UtilFileAs: Object

An output format.

Type declaration

Name Type
ARRAY_BUTTER 3
BINARY_STRING 2
DATA_URL 1
FILE 4
TEXT 0

Defined in

src/main/typescript/wcardinal/ui/util/util-file-opener.ts:9

src/main/typescript/wcardinal/ui/util/util-file-opener.ts:17


UtilGestureMode

Const UtilGestureMode: Object

Type declaration

Name Type
OFF 0
ON 1
TOUCH 2

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture-mode.ts:6

src/main/typescript/wcardinal/ui/util/util-gesture-mode.ts:12


UtilGestureModifier

Const UtilGestureModifier: Object

Type declaration

Name Type
ALT 4
AND 8
CTRL 1
NONE 0
NOT_NONE number
OR 16
SHIFT 2

Defined in

src/main/typescript/wcardinal/ui/util/util-gesture-modifier.ts:13

src/main/typescript/wcardinal/ui/util/util-gesture-modifier.ts:25


UtilHtmlElementWhen

Const UtilHtmlElementWhen: Object

DHtmlElement option when to show a HTML element

Type declaration

Name Type Description
ALWAYS 3 Always shows a HTML element.
CLICKED 0 Shows a HTML element when clicked.
DOUBLE_CLICKED 1 Shows a HTML element when double clicked.
FOCUSED 2 Shows a HTML element when focused. And also shows when clicked if focused.

Defined in

src/main/typescript/wcardinal/ui/util/util-html-element-when.ts:9

src/main/typescript/wcardinal/ui/util/util-html-element-when.ts:32

Functions

DChartColorSet1

DChartColorSet1(index): number

Parameters

Name Type
index number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-chart-color-set.ts:24


DChartColorSet2

DChartColorSet2(index): number

Parameters

Name Type
index number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/d-chart-color-set.ts:28


DMapTileUrlBuilderKokudo

DMapTileUrlBuilderKokudo(tz, tx, ty): string

Parameters

Name Type
tz number
tx number
ty number

Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-map-tile-pyramids.ts:13


DMapTileUrlBuilderOsm

DMapTileUrlBuilderOsm(tz, tx, ty): string

Parameters

Name Type
tz number
tx number
ty number

Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-map-tile-pyramids.ts:27


DMapTileUrlBuilderOsmfj

DMapTileUrlBuilderOsmfj(tz, tx, ty): string

Parameters

Name Type
tz number
tx number
ty number

Returns

string

Defined in

src/main/typescript/wcardinal/ui/d-map-tile-pyramids.ts:35


DMenuItemCheckIsCompatible

DMenuItemCheckIsCompatible<VALUE>(options): options is DMenuItemCheckOptions<VALUE, DThemeMenuItemCheck>

Type parameters

Name
VALUE

Parameters

Name Type
options DMenuItemOptionsUnion<VALUE>

Returns

options is DMenuItemCheckOptions<VALUE, DThemeMenuItemCheck>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-check-is-compatible.ts:9


DMenuItemExpandableIsCompatible

DMenuItemExpandableIsCompatible<VALUE>(options): options is DMenuItemExpandableOptions<VALUE, DThemeMenuItemExpandable>

Type parameters

Name
VALUE

Parameters

Name Type
options DMenuItemOptionsUnion<VALUE>

Returns

options is DMenuItemExpandableOptions<VALUE, DThemeMenuItemExpandable>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-expandable-is-compatible.ts:9


DMenuItemLinkIsCompatible

DMenuItemLinkIsCompatible<VALUE>(options): options is DMenuItemLinkOptions<VALUE, DThemeMenuItemLink>

Type parameters

Name
VALUE

Parameters

Name Type
options DMenuItemOptionsUnion<VALUE>

Returns

options is DMenuItemLinkOptions<VALUE, DThemeMenuItemLink>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-link-is-compatible.ts:9


DMenuItemMenuIsCompatible

DMenuItemMenuIsCompatible<VALUE>(options): options is DMenuItemMenuOptions<VALUE, DThemeMenuItemMenu>

Type parameters

Name
VALUE

Parameters

Name Type
options DMenuItemOptionsUnion<VALUE>

Returns

options is DMenuItemMenuOptions<VALUE, DThemeMenuItemMenu>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-menu-is-compatible.ts:9


DMenuItemMenuToSubMenuOptions

DMenuItemMenuToSubMenuOptions<VALUE>(options, sticky): DMenuItemMenuOptions<VALUE, DThemeMenuItemMenu>

Type parameters

Name
VALUE

Parameters

Name Type
options DMenuItemMenuOptions<VALUE, DThemeMenuItemMenu>
sticky boolean

Returns

DMenuItemMenuOptions<VALUE, DThemeMenuItemMenu>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-menu-to-sub-menu-options.ts:10


DMenuItemSeparatorIsCompatible

DMenuItemSeparatorIsCompatible(options): options is DMenuItemSeparatorOptions<unknown, DThemeMenuItemSeparator>

Parameters

Name Type
options DMenuItemOptionsUnion<unknown>

Returns

options is DMenuItemSeparatorOptions<unknown, DThemeMenuItemSeparator>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-separator.ts:19


DMenuItemSpaceIsCompatible

DMenuItemSpaceIsCompatible<VALUE>(options): options is DMenuItemSpaceOptions<DThemeMenuItemSpace>

Type parameters

Name
VALUE

Parameters

Name Type
options DMenuItemOptionsUnion<VALUE>

Returns

options is DMenuItemSpaceOptions<DThemeMenuItemSpace>

Defined in

src/main/typescript/wcardinal/ui/d-menu-item-space-is-compatible.ts:9


buildBarIndex

buildBarIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-bar.ts:16


buildBarUv

buildBarUv(uvs, voffset, textureUvs): void

Parameters

Name Type
uvs Float32Array
voffset number
textureUvs TextureUvs

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-bar.ts:123


buildBarVertexStep

buildBarVertexStep(vertices, steps, voffset, pointValues, pointsSize, strokeWidth, strokeStyle, internalTransform): void

Parameters

Name Type
vertices Float32Array
steps Float32Array
voffset number
pointValues number[]
pointsSize number
strokeWidth number
strokeStyle number
internalTransform Matrix

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-bar.ts:31


buildCircleIndex

buildCircleIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-circle.ts:12


buildCircleStep

buildCircleStep(steps, voffset, strokeWidth, strokeStyle, worldSize): void

Parameters

Name Type
steps Float32Array
voffset number
strokeWidth number
strokeStyle number
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-circle.ts:122


buildCircleUv

buildCircleUv(uvs, voffset, textureUvs): void

Parameters

Name Type
uvs Float32Array
voffset number
textureUvs TextureUvs

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-circle.ts:205


buildCircleVertex

buildCircleVertex(vertices, voffset, originX, originY, sizeX, sizeY, strokeAlign, strokeWidth, internalTransform, worldSize): void

Parameters

Name Type
vertices Float32Array
voffset number
originX number
originY number
sizeX number
sizeY number
strokeAlign number
strokeWidth number
internalTransform Matrix
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-circle.ts:51


buildColor

buildColor(fillColor, fillAlpha, strokeColor, strokeAlpha, voffset, vcount, colors): void

Parameters

Name Type
fillColor number
fillAlpha number
strokeColor number
strokeAlpha number
voffset number
vcount number
colors Float32Array

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-color.ts:3


buildImageSdfIndex

buildImageSdfIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-image-sdf.ts:12


buildImageSdfStep

buildImageSdfStep(steps, voffset, strokeAlign, strokeWidth, strokeStyle, textureWidth, textureHeight, worldSize): void

Parameters

Name Type
steps Float32Array
voffset number
strokeAlign number
strokeWidth number
strokeStyle number
textureWidth number
textureHeight number
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-image-sdf.ts:47


buildImageSdfUv

buildImageSdfUv(uvs, voffset, textureUv): void

Parameters

Name Type
uvs Float32Array
voffset number
textureUv TextureUvs

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-image-sdf.ts:196


buildImageSdfVertex

buildImageSdfVertex(vertices, voffset, originX, originY, sizeX, sizeY, internalTransform, worldSize): void

Parameters

Name Type
vertices Float32Array
voffset number
originX number
originY number
sizeX number
sizeY number
internalTransform Matrix
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-image-sdf.ts:131


buildLineIndex

buildLineIndex(indices, voffset, ioffset, icount): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number
icount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line.ts:40


buildLineOfAnyColor

buildLineOfAnyColor(vo, vcpp, pf, ps, pc, colors, ife, ise, cfd, afd, csd, asd): void

Build a vertex buffer of colors.

Parameters

Name Type Description
vo number Vertex pffset
vcpp number Vertex count per point
pf EShapeLineOfAnyPointsFill Point Fill
ps EShapeLineOfAnyPointsStroke Point stroke
pc number Point count
colors Float32Array Vertex buffer of colors
ife boolean True if fills are enabled
ise boolean True if strokes are enabled
cfd number Default fill color
afd number Default fill alpha
csd number Default stroke color
asd number Default stroke alpha

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line-of-any.ts:25


buildLineUv

buildLineUv(uvs, steps, voffset, vcount, textureUvs, length): void

Parameters

Name Type
uvs Float32Array
steps Float32Array
voffset number
vcount number
textureUvs TextureUvs
length number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line.ts:61


buildLineVertexStep

buildLineVertexStep(vertices, steps, voffset, vcount, pointCount, pointsClosed, pointValues, pointSegments, strokeWidth, strokeStyle, internalTransform): number

Parameters

Name Type
vertices Float32Array
steps Float32Array
voffset number
vcount number
pointCount number
pointsClosed boolean
pointValues number[]
pointSegments number[]
strokeWidth number
strokeStyle number
internalTransform Matrix

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line.ts:99


buildNullIndex

buildNullIndex(indices, voffset, ioffset, icount): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number
icount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-null.ts:1


buildNullStep

buildNullStep(steps, voffset, vcount): void

Parameters

Name Type
steps Float32Array
voffset number
vcount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-null.ts:21


buildNullUv

buildNullUv(uvs, voffset, vcount): void

Parameters

Name Type
uvs Float32Array
voffset number
vcount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-null.ts:32


buildNullVertex

buildNullVertex(vertices, voffset, vcount): void

Parameters

Name Type
vertices Float32Array
voffset number
vcount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-null.ts:14


buildRectangleIndex

buildRectangleIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle.ts:13


buildRectangleRoundedIndex

buildRectangleRoundedIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle-rounded.ts:15


buildRectangleRoundedStep

buildRectangleRoundedStep(steps, voffset, strokeWidth, strokeSide, strokeStyle, corner, worldSize): void

Parameters

Name Type
steps Float32Array
voffset number
strokeWidth number
strokeSide number
strokeStyle number
corner number
worldSize [number, number, number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle-rounded.ts:414


buildRectangleRoundedUv

buildRectangleRoundedUv(uvs, voffset, textureUvs, worldSize): void

Parameters

Name Type
uvs Float32Array
voffset number
textureUvs TextureUvs
worldSize [number, number, number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle-rounded.ts:910


buildRectangleRoundedVertex

buildRectangleRoundedVertex(vertices, voffset, originX, originY, sizeX, sizeY, strokeAlign, strokeWidth, radius, internalTransform, worldSize): void

Parameters

Name Type
vertices Float32Array
voffset number
originX number
originY number
sizeX number
sizeY number
strokeAlign number
strokeWidth number
radius number
internalTransform Matrix
worldSize [number, number, number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle-rounded.ts:131


buildRectangleStep

buildRectangleStep(voffset, steps, strokeWidth, strokeSide, strokeStyle, worldSize): void

Parameters

Name Type
voffset number
steps Float32Array
strokeWidth number
strokeSide number
strokeStyle number
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle.ts:166


buildRectangleUv

buildRectangleUv(uvs, voffset, textureUvs): void

Parameters

Name Type
uvs Float32Array
voffset number
textureUvs TextureUvs

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle.ts:320


buildRectangleVertex

buildRectangleVertex(vertices, voffset, originX, originY, sizeX, sizeY, strokeAlign, strokeWidth, internalTransform, worldSize): void

Parameters

Name Type
vertices Float32Array
voffset number
originX number
originY number
sizeX number
sizeY number
strokeAlign number
strokeWidth number
internalTransform Matrix
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-rectangle.ts:59


buildSemicircleIndex

buildSemicircleIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-semicircle.ts:12


buildSemicircleStep

buildSemicircleStep(steps, voffset, strokeWidth, strokeStyle, worldSize): void

Parameters

Name Type
steps Float32Array
voffset number
strokeWidth number
strokeStyle number
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-semicircle.ts:95


buildSemicircleUv

buildSemicircleUv(uvs, voffset, textureUvs): void

Parameters

Name Type
uvs Float32Array
voffset number
textureUvs TextureUvs

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-semicircle.ts:157


buildSemicircleVertex

buildSemicircleVertex(vertices, voffset, originX, originY, sizeX, sizeY, strokeAlign, strokeWidth, internalTransform, worldSize): void

Parameters

Name Type
vertices Float32Array
voffset number
originX number
originY number
sizeX number
sizeY number
strokeAlign number
strokeWidth number
internalTransform Matrix
worldSize [number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-semicircle.ts:35


buildTextIndex

buildTextIndex(indices, voffset, ioffset, icount): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number
icount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:30


buildTextStep

buildTextStep(steps, voffset, vcount, textAtlas, textSize, textOutlineWidth, textWeight, scaleX, scaleY): void

Parameters

Name Type
steps Float32Array
voffset number
vcount number
textAtlas undefined | EShapeTextAtlas
textSize number
textOutlineWidth number
textWeight EShapeTextWeight
scaleX number
scaleY number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:51


buildTextVertex

buildTextVertex(vertices, uvs, voffset, vcount, originX, originY, sizeX, sizeY, textAtlas, textSize, textValue, textStyle, textAlignHorizontal, textAlignVertical, textOffsetHorizontal, textOffsetVertical, textSpacingHorizontal, textSpacingVertical, textDirection, textPaddingHorizontal, textPaddingVertical, textClipping, textFitting, textWorld, textureUvs, internalTransform): void

Parameters

Name Type
vertices Float32Array
uvs Float32Array
voffset number
vcount number
originX number
originY number
sizeX number
sizeY number
textAtlas EShapeTextAtlas
textSize number
textValue string
textStyle EShapeTextStyle
textAlignHorizontal EShapeTextAlignHorizontal
textAlignVertical EShapeTextAlignVertical
textOffsetHorizontal number
textOffsetVertical number
textSpacingHorizontal number
textSpacingVertical number
textDirection EShapeTextDirection
textPaddingHorizontal number
textPaddingVertical number
textClipping boolean
textFitting boolean
textWorld number[]
textureUvs TextureUvs
internalTransform Matrix

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:412


buildTriangleIndex

buildTriangleIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle.ts:12


buildTriangleRoundedIndex

buildTriangleRoundedIndex(indices, voffset, ioffset): void

Parameters

Name Type
indices Uint16Array | Uint32Array
voffset number
ioffset number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle-rounded.ts:15


buildTriangleRoundedStep

buildTriangleRoundedStep(steps, voffset, strokeWidth, strokeStyle, corner, radius, worldSize): void

Parameters

Name Type
steps Float32Array
voffset number
strokeWidth number
strokeStyle number
corner number
radius number
worldSize [number, number, number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle-rounded.ts:228


buildTriangleRoundedUv

buildTriangleRoundedUv(uvs, voffset, textureUvs, radius, worldSize): void

Parameters

Name Type
uvs Float32Array
voffset number
textureUvs TextureUvs
radius number
worldSize [number, number, number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle-rounded.ts:539


buildTriangleRoundedVertex

buildTriangleRoundedVertex(vertices, voffset, originX, originY, sizeX, sizeY, strokeAlign, strokeWidth, radius, internalTransform, worldSize): void

Parameters

Name Type
vertices Float32Array
voffset number
originX number
originY number
sizeX number
sizeY number
strokeAlign number
strokeWidth number
radius number
internalTransform Matrix
worldSize [number, number, number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle-rounded.ts:88


buildTriangleStep

buildTriangleStep(steps, voffset, strokeWidth, strokeStyle, worldSize): void

Parameters

Name Type
steps Float32Array
voffset number
strokeWidth number
strokeStyle number
worldSize [number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle.ts:100


buildTriangleUv

buildTriangleUv(uvs, textureUvs, voffset, worldSize): void

Parameters

Name Type
uvs Float32Array
textureUvs TextureUvs
voffset number
worldSize [number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle.ts:174


buildTriangleVertex

buildTriangleVertex(vertices, voffset, originX, originY, sizeX, sizeY, strokeAlign, strokeWidth, internalTransform, worldSize): void

Parameters

Name Type
vertices Float32Array
voffset number
originX number
originY number
sizeX number
sizeY number
strokeAlign number
strokeWidth number
internalTransform Matrix
worldSize [number, number, number]

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-triangle.ts:32


copyIndex

copyIndex(indices, vcountPerPoint, ioffset, icountPerPoint, pointCount): void

Parameters

Name Type
indices Uint16Array | Uint32Array
vcountPerPoint number
ioffset number
icountPerPoint number
pointCount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/copy-index.ts:6


copyStep

copyStep(steps, voffset, vcountPerPoint, pointCount): void

Parameters

Name Type
steps Float32Array
voffset number
vcountPerPoint number
pointCount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/copy-step.ts:6


copyUvs

copyUvs(uvs, voffset, vcountPerPoint, pointCount): void

Parameters

Name Type
uvs Float32Array
voffset number
vcountPerPoint number
pointCount number

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/copy-uv.ts:6


copyVertex

copyVertex(vertices, internalTransform, voffset, vcountPerPoint, pointCount, pointsValues, pointOffset): void

Parameters

Name Type
vertices Float32Array
internalTransform Matrix
voffset number
vcountPerPoint number
pointCount number
pointsValues number[]
pointOffset EShapeLineOfAnyPointsPoint

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/copy-vertex.ts:9


createBarUploaded

createBarUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-bar-uploaded.ts:14


createButtonUploaded

createButtonUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-button-uploaded.ts:11


createCircleUploaded

createCircleUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-circle-uploaded.ts:14


createGroupUploaded

createGroupUploaded(buffer, shape, voffset, ioffset): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-group-uploaded.ts:12


createImage

createImage(dataUrl): Promise<EShapeImage>

Parameters

Name Type
dataUrl string

Returns

Promise<EShapeImage>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-image.ts:9


createImageSdf

createImageSdf(dataUrl, convertToSdf): Promise<EShapeImageSdf>

Parameters

Name Type
dataUrl string
convertToSdf boolean

Returns

Promise<EShapeImageSdf>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-image-sdf.ts:10


createImageSdfUploaded

createImageSdfUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-image-sdf-uploaded.ts:14


createLabelUploaded

createLabelUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-label-uploaded.ts:13


createLine

createLine(points, segments, strokeWidth, pointsStyle): EShapeLine

Parameters

Name Type
points number[]
segments number[]
strokeWidth number
pointsStyle number

Returns

EShapeLine

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line.ts:5


createLineOfAnyUploaded

createLineOfAnyUploaded(buffer, shape, voffset, vcountPerPoint, ioffset, icountPerPoint, antialiasWeight, constructor): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
vcountPerPoint number
ioffset number
icountPerPoint number
antialiasWeight number
constructor BuilderConstructor

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-of-any-uploaded.ts:26


createLineOfCirclesUploaded

createLineOfCirclesUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-of-circles-uploaded.ts:13


createLineOfRectangleRoundedsUploaded

createLineOfRectangleRoundedsUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-of-rectangle-roundeds-uploaded.ts:16


createLineOfRectanglesUploaded

createLineOfRectanglesUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-of-rectangles-uploaded.ts:13


createLineOfTriangleRoundedsUploaded

createLineOfTriangleRoundedsUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-of-triangle-roundeds-uploaded.ts:16


createLineOfTrianglesUploaded

createLineOfTrianglesUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-of-triangles-uploaded.ts:13


createLineUploaded

createLineUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploadedImpl

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploadedImpl

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-line-uploaded.ts:93


createNullUploaded

createNullUploaded(buffer, shape, voffset, ioffset): null | EShapeUploadedImpl

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number

Returns

null | EShapeUploadedImpl

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-null-uploaded.ts:11


createRectanglePivotedUploaded

createRectanglePivotedUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-rectangle-pivoted-uploaded.ts:14


createRectangleRoundedUploaded

createRectangleRoundedUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-rectangle-rounded-uploaded.ts:17


createRectangleUploaded

createRectangleUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-rectangle-uploaded.ts:14


createSemicircleUploaded

createSemicircleUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-semicircle-uploaded.ts:14


createTriangleRoundedUploaded

createTriangleRoundedUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-triangle-rounded-uploaded.ts:17


createTriangleUploaded

createTriangleUploaded(buffer, shape, voffset, ioffset, antialiasWeight): null | EShapeUploaded

Parameters

Name Type
buffer EShapeBuffer
shape EShape
voffset number
ioffset number
antialiasWeight number

Returns

null | EShapeUploaded

Defined in

src/main/typescript/wcardinal/ui/shape/variant/create-triangle-uploaded.ts:14


dThemeDarkEnUsDialogProcessingMessage

dThemeDarkEnUsDialogProcessingMessage(state): string

Parameters

Name Type
state DBaseStateSet

Returns

string

Defined in

src/main/typescript/wcardinal/ui/theme/dark/d-theme-dark-en-us-dialog-processing.ts:11


dThemeDarkJaJpDialogProcessingMessage

dThemeDarkJaJpDialogProcessingMessage(state): string

Parameters

Name Type
state DBaseStateSet

Returns

string

Defined in

src/main/typescript/wcardinal/ui/theme/dark/d-theme-dark-ja-jp-dialog-processing.ts:11


dThemeWhiteEnUsDialogProcessingMessage

dThemeWhiteEnUsDialogProcessingMessage(state): string

Parameters

Name Type
state DBaseStateSet

Returns

string

Defined in

src/main/typescript/wcardinal/ui/theme/white/d-theme-white-en-us-dialog-processing.ts:11


dThemeWhiteJaJpDialogProcessingMessage

dThemeWhiteJaJpDialogProcessingMessage(state): string

Parameters

Name Type
state DBaseStateSet

Returns

string

Defined in

src/main/typescript/wcardinal/ui/theme/white/d-theme-white-ja-jp-dialog-processing.ts:11


deserialize

deserialize(item, manager): EShape | Promise<EShape>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization

Returns

EShape | Promise<EShape>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize.ts:12


deserializeActionValue

deserializeActionValue(serialized, manager): null | EShapeActionValue

Parameters

Name Type
serialized number[]
manager EShapeResourceManagerDeserialization

Returns

null | EShapeActionValue

Defined in

src/main/typescript/wcardinal/ui/shape/action/deserialize-action-value.ts:36


deserializeAll

deserializeAll(serializeds, manager): null | Promise<EShape[]>

Parameters

Name Type
serializeds DDiagramSerializedItem[]
manager EShapeResourceManagerDeserialization

Returns

null | Promise<EShape[]>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-all.ts:14


deserializeBar

deserializeBar(item, manager, shape?): EShapeBar | Promise<EShapeBar>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeBar

Returns

EShapeBar | Promise<EShapeBar>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-bar.ts:12


deserializeBase

deserializeBase<SHAPE>(item, manager, result): SHAPE | Promise<SHAPE>

Type parameters

Name Type
SHAPE extends EShape

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
result SHAPE

Returns

SHAPE | Promise<SHAPE>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-base.ts:58


deserializeButton

deserializeButton(item, manager, shape?): EShapeButton | Promise<EShapeButton>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeButton

Returns

EShapeButton | Promise<EShapeButton>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-button.ts:11


deserializeCircle

deserializeCircle(item, manager, shape?): EShapeCircle | Promise<EShapeCircle>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeCircle

Returns

EShapeCircle | Promise<EShapeCircle>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-circle.ts:11


deserializeConnectorElbow

deserializeConnectorElbow(item, manager, shape?): EShapeConnectorLine | Promise<EShapeConnectorLine>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeConnectorLine

Returns

EShapeConnectorLine | Promise<EShapeConnectorLine>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-connector-elbow.ts:12


deserializeConnectorLine

deserializeConnectorLine(item, manager, shape?): EShapeConnectorLine | Promise<EShapeConnectorLine>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeConnectorLine

Returns

EShapeConnectorLine | Promise<EShapeConnectorLine>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-connector-line.ts:15


deserializeEmbedded

deserializeEmbedded(item, manager, creator?): null | EShapeEmbedded | Promise<EShapeEmbedded>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
creator? (name: string, manager: EShapeResourceManagerDeserialization) => EShapeEmbedded

Returns

null | EShapeEmbedded | Promise<EShapeEmbedded>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-embedded.ts:140


deserializeEmbeddedAcceptorEdge

deserializeEmbeddedAcceptorEdge(item, manager, shape?): EShapeEmbeddedAcceptorEdge | Promise<EShapeEmbeddedAcceptorEdge>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeEmbeddedAcceptorEdge

Returns

EShapeEmbeddedAcceptorEdge | Promise<EShapeEmbeddedAcceptorEdge>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-embedded-acceptor-edge.ts:30


deserializeEmbeddedLayer

deserializeEmbeddedLayer(serialized, manager, width, height, creator?): EShapeEmbeddedLayer

Parameters

Name Type
serialized DDiagramSerializedLayer
manager EShapeResourceManagerDeserialization
width number
height number
creator? (name: string, manager: EShapeResourceManagerDeserialization) => EShapeEmbeddedLayer

Returns

EShapeEmbeddedLayer

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-embedded-layer.ts:31


deserializeGradient

deserializeGradient(index, manager, result): void

Parameters

Name Type
index number
manager EShapeResourceManagerDeserialization
result EShape

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-gradient.ts:40


deserializeGroup

deserializeGroup(item, manager, shape?): EShapeGroup | Promise<EShapeGroup>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeGroup

Returns

EShapeGroup | Promise<EShapeGroup>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-group.ts:11


deserializeGroupShadowed

deserializeGroupShadowed(item, manager, shape?): EShapeGroupShadowed | Promise<EShapeGroupShadowed>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeGroupShadowed

Returns

EShapeGroupShadowed | Promise<EShapeGroupShadowed>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-group-shadowed.ts:11


deserializeImage

deserializeImage(item, manager, shape?): EShapeImage | Promise<EShapeImage>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeImage

Returns

EShapeImage | Promise<EShapeImage>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-image.ts:11


deserializeImageSdf

deserializeImageSdf(item, manager, shape?): EShapeImageSdf | Promise<EShapeImageSdf>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeImageSdf

Returns

EShapeImageSdf | Promise<EShapeImageSdf>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-image-sdf.ts:11


deserializeLabel

deserializeLabel(item, manager, shape?): EShapeLabel | Promise<EShapeLabel>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeLabel

Returns

EShapeLabel | Promise<EShapeLabel>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-label.ts:11


deserializeLine

deserializeLine(item, manager, shape?): EShapeLine | Promise<EShapeLine>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeLine

Returns

EShapeLine | Promise<EShapeLine>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-line.ts:12


deserializeLineOfCircles

deserializeLineOfCircles(item, manager, shape?): EShapeLineOfCircles | Promise<EShapeLineOfCircles>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeLineOfCircles

Returns

EShapeLineOfCircles | Promise<EShapeLineOfCircles>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-line-of-circles.ts:11


deserializeLineOfRectangleRoundeds

deserializeLineOfRectangleRoundeds(item, manager, shape?): EShapeLineOfRectangleRoundeds | Promise<EShapeLineOfRectangleRoundeds>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeLineOfRectangleRoundeds

Returns

EShapeLineOfRectangleRoundeds | Promise<EShapeLineOfRectangleRoundeds>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-line-of-rectangle-roundeds.ts:11


deserializeLineOfRectangles

deserializeLineOfRectangles(item, manager, shape?): EShapeLineOfRectangles | Promise<EShapeLineOfRectangles>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeLineOfRectangles

Returns

EShapeLineOfRectangles | Promise<EShapeLineOfRectangles>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-line-of-rectangles.ts:11


deserializeLineOfTriangleRoundeds

deserializeLineOfTriangleRoundeds(item, manager, shape?): EShapeLineOfTriangleRoundeds | Promise<EShapeLineOfTriangleRoundeds>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeLineOfTriangleRoundeds

Returns

EShapeLineOfTriangleRoundeds | Promise<EShapeLineOfTriangleRoundeds>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-line-of-triangle-roundeds.ts:11


deserializeLineOfTriangles

deserializeLineOfTriangles(item, manager, shape?): EShapeLineOfTriangles | Promise<EShapeLineOfTriangles>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeLineOfTriangles

Returns

EShapeLineOfTriangles | Promise<EShapeLineOfTriangles>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-line-of-triangles.ts:11


deserializeNull

deserializeNull(item, manager, shape?): EShapeNull | Promise<EShapeNull>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeNull

Returns

EShapeNull | Promise<EShapeNull>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-null.ts:11


deserializeRectangle

deserializeRectangle(item, manager, shape?): EShapeRectangle | Promise<EShapeRectangle>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeRectangle

Returns

EShapeRectangle | Promise<EShapeRectangle>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-rectangle.ts:11


deserializeRectanglePivoted

deserializeRectanglePivoted(item, manager, shape?): EShapeRectanglePivoted | Promise<EShapeRectanglePivoted>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeRectanglePivoted

Returns

EShapeRectanglePivoted | Promise<EShapeRectanglePivoted>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-rectangle-pivoted.ts:11


deserializeRectangleRounded

deserializeRectangleRounded(item, manager, shape?): EShapeRectangleRounded | Promise<EShapeRectangleRounded>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeRectangleRounded

Returns

EShapeRectangleRounded | Promise<EShapeRectangleRounded>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-rectangle-rounded.ts:11


deserializeSemicircle

deserializeSemicircle(item, manager, shape?): EShapeSemicircle | Promise<EShapeSemicircle>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeSemicircle

Returns

EShapeSemicircle | Promise<EShapeSemicircle>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-semicircle.ts:11


deserializeTriangle

deserializeTriangle(item, manager, shape?): EShapeTriangle | Promise<EShapeTriangle>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeTriangle

Returns

EShapeTriangle | Promise<EShapeTriangle>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-triangle.ts:11


deserializeTriangleRounded

deserializeTriangleRounded(item, manager, shape?): EShapeTriangleRounded | Promise<EShapeTriangleRounded>

Parameters

Name Type
item DDiagramSerializedItem
manager EShapeResourceManagerDeserialization
shape? EShapeTriangleRounded

Returns

EShapeTriangleRounded | Promise<EShapeTriangleRounded>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-triangle-rounded.ts:11


eShapePointsFormatterCurve

eShapePointsFormatterCurve(length, values, segments, style, result): EShapePointsFormattedWithoutBoundary

Parameters

Name Type
length number
values number[]
segments number[]
style number
result EShapePointsFormattedWithoutBoundary

Returns

EShapePointsFormattedWithoutBoundary

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-formatter-curve.ts:12


eShapePointsFormatterCurveBezierQuadratic

eShapePointsFormatterCurveBezierQuadratic(length, values, segments, style, result): EShapePointsFormattedWithoutBoundary

Parameters

Name Type
length number
values number[]
segments number[]
style number
result EShapePointsFormattedWithoutBoundary

Returns

EShapePointsFormattedWithoutBoundary

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-formatter-curve-bezier-quadratic.ts:294


hitTestBBox

hitTestBBox(x, y, ax, ay): boolean

Parameters

Name Type
x number
y number
ax number
ay number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-bbox.ts:6


hitTestCircle

hitTestCircle(shape, x, y, ax, ay, sw, ss): boolean

Parameters

Name Type
shape EShape
x number
y number
ax number
ay number
sw number
ss number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-circle.ts:8


hitTestRectangle

hitTestRectangle(shape, x, y, ax, ay, sw, ss): boolean

Parameters

Name Type
shape EShape
x number
y number
ax number
ay number
sw number
ss number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-rectangle.ts:10


hitTestRectangleRounded

hitTestRectangleRounded(shape, x, y, ax, ay, sw, ss): boolean

Parameters

Name Type
shape EShape
x number
y number
ax number
ay number
sw number
ss number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-rectangle-rounded.ts:65


hitTestSemicircle

hitTestSemicircle(shape, x, y, ax, ay, sw, ss): boolean

Parameters

Name Type
shape EShape
x number
y number
ax number
ay number
sw number
ss number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-semicircle.ts:9


hitTestTriangle

hitTestTriangle(shape, x, y, ax, ay, sw, ss): boolean

Parameters

Name Type
shape EShape
x number
y number
ax number
ay number
sw number
ss number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-triangle.ts:22


hitTestTriangleFilled

hitTestTriangleFilled(x, y, a, ay1, ay2): boolean

Parameters

Name Type
x number
y number
a number
ay1 number
ay2 number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-triangle.ts:8


hitTestTriangleRounded

hitTestTriangleRounded(shape, x, y, ax, ay, sw, ss): boolean

Parameters

Name Type
shape EShape
x number
y number
ax number
ay number
sw number
ss number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/hit-test-triangle-rounded.ts:86


isArray

isArray(arg): arg is any[]

Parameters

Name Type
arg any

Returns

arg is any[]

Defined in

src/main/typescript/wcardinal/ui/util/is-array.ts:6


isFunction

isFunction(target): target is Function

Parameters

Name Type
target unknown

Returns

target is Function

Defined in

src/main/typescript/wcardinal/ui/util/is-function.ts:7


isNaN

isNaN(target): boolean

Parameters

Name Type
target number

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/util/is-nan.ts:6


isNumber

isNumber(target): target is number

Parameters

Name Type
target unknown

Returns

target is number

Defined in

src/main/typescript/wcardinal/ui/util/is-number.ts:6


isObject

isObject(target): target is Record<string, unknown>

Parameters

Name Type
target any

Returns

target is Record<string, unknown>

Defined in

src/main/typescript/wcardinal/ui/util/is-object.ts:6


isShapeClipperExLoaded

isShapeClipperExLoaded(): boolean

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-clipper-ex.ts:12


isStatic

isStatic(value): boolean

Parameters

Name Type
value EShapeLineOfAnyValue

Returns

boolean

Defined in

src/main/typescript/wcardinal/ui/shape/variant/is-static.ts:9


isString

isString(target): target is string

Parameters

Name Type
target unknown

Returns

target is string

Defined in

src/main/typescript/wcardinal/ui/util/is-string.ts:6


loadAll

loadAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/load/load-all.ts:9


loadMenuItem

loadMenuItem(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/load/load-menu-item.ts:21


loadMenuItemAll

loadMenuItemAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/load/load-menu-item-all.ts:11


loadMenuItemExpandable

loadMenuItemExpandable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/load/load-menu-item-expandable.ts:22


loadMenuSidedItem

loadMenuSidedItem(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/load/load-menu-sided-item.ts:22


loadMenuSidedItemExpandable

loadMenuSidedItemExpandable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/load/load-menu-sided-item-expandable.ts:25


loadShapeAll

loadShapeAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-all.ts:31


loadShapeBar

loadShapeBar(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-bar.ts:12


loadShapeButton

loadShapeButton(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-button.ts:16


loadShapeCircle

loadShapeCircle(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-circle.ts:12


loadShapeClipperEx

loadShapeClipperEx(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-clipper-ex.ts:8


loadShapeConnectorElbow

loadShapeConnectorElbow(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-connector-elbow.ts:15


loadShapeConnectorLine

loadShapeConnectorLine(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-connector-line.ts:17


loadShapeEmbedded

loadShapeEmbedded(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-embedded.ts:17


loadShapeGroup

loadShapeGroup(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-group.ts:14


loadShapeGroupShadowed

loadShapeGroupShadowed(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-group-shadowed.ts:14


loadShapeImage

loadShapeImage(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-image.ts:12


loadShapeLabel

loadShapeLabel(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-label.ts:12


loadShapeLine

loadShapeLine(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-line.ts:12


loadShapeLineOfCircles

loadShapeLineOfCircles(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-line-of-circles.ts:12


loadShapeLineOfRectangleRoundeds

loadShapeLineOfRectangleRoundeds(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-line-of-rectangle-roundeds.ts:14


loadShapeLineOfRectangles

loadShapeLineOfRectangles(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-line-of-rectangles.ts:14


loadShapeLineOfTriangleRoundeds

loadShapeLineOfTriangleRoundeds(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-line-of-triangle-roundeds.ts:14


loadShapeLineOfTriangles

loadShapeLineOfTriangles(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-line-of-triangles.ts:12


loadShapeNull

loadShapeNull(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-null.ts:12


loadShapeRectangle

loadShapeRectangle(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-rectangle.ts:14


loadShapeRectangleRounded

loadShapeRectangleRounded(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-rectangle-rounded.ts:14


loadShapeSemicircle

loadShapeSemicircle(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-semicircle.ts:12


loadShapeTriangle

loadShapeTriangle(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-triangle.ts:12


loadShapeTriangleRounded

loadShapeTriangleRounded(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/load/load-shape-triangle-rounded.ts:14


loadThemeDark

loadThemeDark(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark.ts:9


loadThemeDarkBase

loadThemeDarkBase(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-base.ts:9


loadThemeDarkBoard

loadThemeDarkBoard(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-board.ts:9


loadThemeDarkButton

loadThemeDarkButton(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button.ts:9


loadThemeDarkButtonAmbient

loadThemeDarkButtonAmbient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-ambient.ts:9


loadThemeDarkButtonCheck

loadThemeDarkButtonCheck(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-check.ts:9


loadThemeDarkButtonCheckRight

loadThemeDarkButtonCheckRight(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-check-right.ts:9


loadThemeDarkButtonDanger

loadThemeDarkButtonDanger(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-danger.ts:9


loadThemeDarkButtonFile

loadThemeDarkButtonFile(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-file.ts:9


loadThemeDarkButtonLink(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-link.ts:9


loadThemeDarkButtonPrimary

loadThemeDarkButtonPrimary(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-primary.ts:9


loadThemeDarkButtonRadio

loadThemeDarkButtonRadio(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-radio.ts:9


loadThemeDarkButtonRadioRight

loadThemeDarkButtonRadioRight(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-radio-right.ts:9


loadThemeDarkButtonSecondary

loadThemeDarkButtonSecondary(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-button-secondary.ts:9


loadThemeDarkCanvasContainer

loadThemeDarkCanvasContainer(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-canvas-container.ts:10


loadThemeDarkChart

loadThemeDarkChart(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-chart.ts:22


loadThemeDarkColor

loadThemeDarkColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-color.ts:10


loadThemeDarkDialog

loadThemeDarkDialog(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-dialog.ts:9


loadThemeDarkDialogFitted

loadThemeDarkDialogFitted(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-dialog-fitted.ts:10


loadThemeDarkDialogInputBoolean

loadThemeDarkDialogInputBoolean(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-dialog-input-boolean.ts:9


loadThemeDarkDialogInputInteger

loadThemeDarkDialogInputInteger(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-dialog-input-integer.ts:9


loadThemeDarkDialogInputReal

loadThemeDarkDialogInputReal(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-dialog-input-real.ts:9


loadThemeDarkDialogInputText

loadThemeDarkDialogInputText(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-dialog-input-text.ts:9


loadThemeDarkDropdown

loadThemeDarkDropdown(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-dropdown.ts:9


loadThemeDarkEnUsAll

loadThemeDarkEnUsAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-all.ts:42


loadThemeDarkEnUsButtonAll

loadThemeDarkEnUsButtonAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-button-all.ts:24


loadThemeDarkEnUsButtonColor

loadThemeDarkEnUsButtonColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-button-color.ts:10


loadThemeDarkEnUsButtonColorGradient

loadThemeDarkEnUsButtonColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-button-color-gradient.ts:10


loadThemeDarkEnUsButtonDate

loadThemeDarkEnUsButtonDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-button-date.ts:10


loadThemeDarkEnUsButtonDatetime

loadThemeDarkEnUsButtonDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-button-datetime.ts:10


loadThemeDarkEnUsButtonSelect

loadThemeDarkEnUsButtonSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-button-select.ts:10


loadThemeDarkEnUsButtonTime

loadThemeDarkEnUsButtonTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-button-time.ts:10


loadThemeDarkEnUsDiagram

loadThemeDarkEnUsDiagram(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-diagram.ts:12


loadThemeDarkEnUsDiagramEditor

loadThemeDarkEnUsDiagramEditor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-diagram-editor.ts:13


loadThemeDarkEnUsDialogAll

loadThemeDarkEnUsDialogAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-all.ts:26


loadThemeDarkEnUsDialogColor

loadThemeDarkEnUsDialogColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-color.ts:10


loadThemeDarkEnUsDialogColorGradient

loadThemeDarkEnUsDialogColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-color-gradient.ts:10


loadThemeDarkEnUsDialogConfirm

loadThemeDarkEnUsDialogConfirm(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-confirm.ts:10


loadThemeDarkEnUsDialogConfirmDelete

loadThemeDarkEnUsDialogConfirmDelete(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-confirm-delete.ts:9


loadThemeDarkEnUsDialogConfirmDiscard

loadThemeDarkEnUsDialogConfirmDiscard(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-confirm-discard.ts:9


loadThemeDarkEnUsDialogDate

loadThemeDarkEnUsDialogDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-date.ts:10


loadThemeDarkEnUsDialogDatetime

loadThemeDarkEnUsDialogDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-datetime.ts:10


loadThemeDarkEnUsDialogLayered

loadThemeDarkEnUsDialogLayered(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-layered.ts:14


loadThemeDarkEnUsDialogMessage

loadThemeDarkEnUsDialogMessage(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-message.ts:9


loadThemeDarkEnUsDialogProcessing

loadThemeDarkEnUsDialogProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-processing.ts:10


loadThemeDarkEnUsDialogSaveAs

loadThemeDarkEnUsDialogSaveAs(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-save-as.ts:9


loadThemeDarkEnUsDialogSelect

loadThemeDarkEnUsDialogSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-select.ts:11


loadThemeDarkEnUsDialogTime

loadThemeDarkEnUsDialogTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-dialog-time.ts:10


loadThemeDarkEnUsIndicatorProcessing

loadThemeDarkEnUsIndicatorProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-indicator-processing.ts:9


loadThemeDarkEnUsInputAll

loadThemeDarkEnUsInputAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-input-all.ts:15


loadThemeDarkEnUsInputBoolean

loadThemeDarkEnUsInputBoolean(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-input-boolean.ts:11


loadThemeDarkEnUsLink(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-link.ts:9


loadThemeDarkEnUsNote

loadThemeDarkEnUsNote(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-note.ts:15


loadThemeDarkEnUsPickerColor

loadThemeDarkEnUsPickerColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-picker-color.ts:9


loadThemeDarkEnUsPickerColorGradient

loadThemeDarkEnUsPickerColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-picker-color-gradient.ts:10


loadThemeDarkEnUsPickerDate

loadThemeDarkEnUsPickerDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-picker-date.ts:10


loadThemeDarkEnUsPickerDatetime

loadThemeDarkEnUsPickerDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-picker-datetime.ts:16


loadThemeDarkEnUsPickerTime

loadThemeDarkEnUsPickerTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-picker-time.ts:9


loadThemeDarkEnUsShapePointsFormatter

loadThemeDarkEnUsShapePointsFormatter(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-shape-points-formatter.ts:9


loadThemeDarkEnUsTable

loadThemeDarkEnUsTable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-en-us-table.ts:51


loadThemeDarkExpandable

loadThemeDarkExpandable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-expandable.ts:10


loadThemeDarkHtmlElement

loadThemeDarkHtmlElement(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-html-element.ts:9


loadThemeDarkImage

loadThemeDarkImage(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-image.ts:9


loadThemeDarkInputAndLabel

loadThemeDarkInputAndLabel(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-input-and-label.ts:9


loadThemeDarkInputInteger

loadThemeDarkInputInteger(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-input-integer.ts:9


loadThemeDarkInputLabel

loadThemeDarkInputLabel(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-input-label.ts:9


loadThemeDarkInputReal

loadThemeDarkInputReal(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-input-real.ts:9


loadThemeDarkInputSearch

loadThemeDarkInputSearch(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-input-search.ts:9


loadThemeDarkInputText

loadThemeDarkInputText(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-input-text.ts:9


loadThemeDarkInputTextArea

loadThemeDarkInputTextArea(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-input-text-area.ts:9


loadThemeDarkJaJpAll

loadThemeDarkJaJpAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-all.ts:42


loadThemeDarkJaJpButtonAll

loadThemeDarkJaJpButtonAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-button-all.ts:24


loadThemeDarkJaJpButtonColor

loadThemeDarkJaJpButtonColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-button-color.ts:10


loadThemeDarkJaJpButtonColorGradient

loadThemeDarkJaJpButtonColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-button-color-gradient.ts:10


loadThemeDarkJaJpButtonDate

loadThemeDarkJaJpButtonDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-button-date.ts:10


loadThemeDarkJaJpButtonDatetime

loadThemeDarkJaJpButtonDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-button-datetime.ts:10


loadThemeDarkJaJpButtonSelect

loadThemeDarkJaJpButtonSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-button-select.ts:10


loadThemeDarkJaJpButtonTime

loadThemeDarkJaJpButtonTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-button-time.ts:10


loadThemeDarkJaJpDiagram

loadThemeDarkJaJpDiagram(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-diagram.ts:12


loadThemeDarkJaJpDiagramEditor

loadThemeDarkJaJpDiagramEditor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-diagram-editor.ts:13


loadThemeDarkJaJpDialogAll

loadThemeDarkJaJpDialogAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-all.ts:26


loadThemeDarkJaJpDialogColor

loadThemeDarkJaJpDialogColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-color.ts:10


loadThemeDarkJaJpDialogColorGradient

loadThemeDarkJaJpDialogColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-color-gradient.ts:10


loadThemeDarkJaJpDialogConfirm

loadThemeDarkJaJpDialogConfirm(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-confirm.ts:10


loadThemeDarkJaJpDialogConfirmDelete

loadThemeDarkJaJpDialogConfirmDelete(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-confirm-delete.ts:9


loadThemeDarkJaJpDialogConfirmDiscard

loadThemeDarkJaJpDialogConfirmDiscard(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-confirm-discard.ts:9


loadThemeDarkJaJpDialogDate

loadThemeDarkJaJpDialogDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-date.ts:10


loadThemeDarkJaJpDialogDatetime

loadThemeDarkJaJpDialogDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-datetime.ts:10


loadThemeDarkJaJpDialogLayered

loadThemeDarkJaJpDialogLayered(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-layered.ts:14


loadThemeDarkJaJpDialogMessage

loadThemeDarkJaJpDialogMessage(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-message.ts:9


loadThemeDarkJaJpDialogProcessing

loadThemeDarkJaJpDialogProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-processing.ts:10


loadThemeDarkJaJpDialogSaveAs

loadThemeDarkJaJpDialogSaveAs(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-save-as.ts:9


loadThemeDarkJaJpDialogSelect

loadThemeDarkJaJpDialogSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-select.ts:11


loadThemeDarkJaJpDialogTime

loadThemeDarkJaJpDialogTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-dialog-time.ts:10


loadThemeDarkJaJpIndicatorProcessing

loadThemeDarkJaJpIndicatorProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-indicator-processing.ts:9


loadThemeDarkJaJpInputAll

loadThemeDarkJaJpInputAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-input-all.ts:15


loadThemeDarkJaJpInputBoolean

loadThemeDarkJaJpInputBoolean(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-input-boolean.ts:11


loadThemeDarkJaJpLink(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-link.ts:9


loadThemeDarkJaJpNote

loadThemeDarkJaJpNote(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-note.ts:15


loadThemeDarkJaJpPickerColor

loadThemeDarkJaJpPickerColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-picker-color.ts:9


loadThemeDarkJaJpPickerColorGradient

loadThemeDarkJaJpPickerColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-picker-color-gradient.ts:10


loadThemeDarkJaJpPickerDate

loadThemeDarkJaJpPickerDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-picker-date.ts:10


loadThemeDarkJaJpPickerDatetime

loadThemeDarkJaJpPickerDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-picker-datetime.ts:16


loadThemeDarkJaJpPickerTime

loadThemeDarkJaJpPickerTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-picker-time.ts:9


loadThemeDarkJaJpShapePointsFormatter

loadThemeDarkJaJpShapePointsFormatter(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-shape-points-formatter.ts:9


loadThemeDarkJaJpTable

loadThemeDarkJaJpTable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-ja-jp-table.ts:51


loadThemeDarkLayout

loadThemeDarkLayout(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-layout.ts:12


loadThemeDarkList

loadThemeDarkList(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-list.ts:11


loadThemeDarkMenu

loadThemeDarkMenu(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-menu.ts:25


loadThemeDarkMenuBar

loadThemeDarkMenuBar(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-menu-bar.ts:11


loadThemeDarkMenuSided

loadThemeDarkMenuSided(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-menu-sided.ts:23


loadThemeDarkPagination

loadThemeDarkPagination(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-pagination.ts:16


loadThemeDarkPane

loadThemeDarkPane(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-pane.ts:11


loadThemeDarkScrollBar

loadThemeDarkScrollBar(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-scroll-bar.ts:10


loadThemeDarkSelect

loadThemeDarkSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-select.ts:11


loadThemeDarkShape

loadThemeDarkShape(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-shape.ts:9


loadThemeDarkShapeActionValue

loadThemeDarkShapeActionValue(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-shape-action-value.ts:9


loadThemeDarkSlider

loadThemeDarkSlider(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-slider.ts:17


loadThemeDarkText

loadThemeDarkText(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-text.ts:9


loadThemeDarkTree

loadThemeDarkTree(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-tree.ts:12


loadThemeDarkView

loadThemeDarkView(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/dark/load/load-theme-dark-view.ts:9


loadThemeWhite

loadThemeWhite(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white.ts:9


loadThemeWhiteBase

loadThemeWhiteBase(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-base.ts:9


loadThemeWhiteBoard

loadThemeWhiteBoard(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-board.ts:9


loadThemeWhiteButton

loadThemeWhiteButton(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button.ts:9


loadThemeWhiteButtonAmbient

loadThemeWhiteButtonAmbient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-ambient.ts:9


loadThemeWhiteButtonCheck

loadThemeWhiteButtonCheck(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-check.ts:9


loadThemeWhiteButtonCheckRight

loadThemeWhiteButtonCheckRight(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-check-right.ts:9


loadThemeWhiteButtonDanger

loadThemeWhiteButtonDanger(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-danger.ts:9


loadThemeWhiteButtonFile

loadThemeWhiteButtonFile(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-file.ts:9


loadThemeWhiteButtonLink(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-link.ts:9


loadThemeWhiteButtonPrimary

loadThemeWhiteButtonPrimary(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-primary.ts:9


loadThemeWhiteButtonRadio

loadThemeWhiteButtonRadio(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-radio.ts:9


loadThemeWhiteButtonRadioRight

loadThemeWhiteButtonRadioRight(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-radio-right.ts:9


loadThemeWhiteButtonSecondary

loadThemeWhiteButtonSecondary(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-button-secondary.ts:9


loadThemeWhiteCanvasContainer

loadThemeWhiteCanvasContainer(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-canvas-container.ts:10


loadThemeWhiteChart

loadThemeWhiteChart(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-chart.ts:22


loadThemeWhiteColor

loadThemeWhiteColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-color.ts:10


loadThemeWhiteDialog

loadThemeWhiteDialog(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-dialog.ts:9


loadThemeWhiteDialogFitted

loadThemeWhiteDialogFitted(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-dialog-fitted.ts:10


loadThemeWhiteDialogInputBoolean

loadThemeWhiteDialogInputBoolean(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-dialog-input-boolean.ts:9


loadThemeWhiteDialogInputInteger

loadThemeWhiteDialogInputInteger(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-dialog-input-integer.ts:9


loadThemeWhiteDialogInputReal

loadThemeWhiteDialogInputReal(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-dialog-input-real.ts:9


loadThemeWhiteDialogInputText

loadThemeWhiteDialogInputText(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-dialog-input-text.ts:9


loadThemeWhiteDropdown

loadThemeWhiteDropdown(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-dropdown.ts:9


loadThemeWhiteEnUsAll

loadThemeWhiteEnUsAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-all.ts:42


loadThemeWhiteEnUsButtonAll

loadThemeWhiteEnUsButtonAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-button-all.ts:24


loadThemeWhiteEnUsButtonColor

loadThemeWhiteEnUsButtonColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-button-color.ts:10


loadThemeWhiteEnUsButtonColorGradient

loadThemeWhiteEnUsButtonColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-button-color-gradient.ts:10


loadThemeWhiteEnUsButtonDate

loadThemeWhiteEnUsButtonDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-button-date.ts:10


loadThemeWhiteEnUsButtonDatetime

loadThemeWhiteEnUsButtonDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-button-datetime.ts:10


loadThemeWhiteEnUsButtonSelect

loadThemeWhiteEnUsButtonSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-button-select.ts:10


loadThemeWhiteEnUsButtonTime

loadThemeWhiteEnUsButtonTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-button-time.ts:10


loadThemeWhiteEnUsDiagram

loadThemeWhiteEnUsDiagram(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-diagram.ts:12


loadThemeWhiteEnUsDiagramEditor

loadThemeWhiteEnUsDiagramEditor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-diagram-editor.ts:13


loadThemeWhiteEnUsDialogAll

loadThemeWhiteEnUsDialogAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-all.ts:26


loadThemeWhiteEnUsDialogColor

loadThemeWhiteEnUsDialogColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-color.ts:10


loadThemeWhiteEnUsDialogColorGradient

loadThemeWhiteEnUsDialogColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-color-gradient.ts:10


loadThemeWhiteEnUsDialogConfirm

loadThemeWhiteEnUsDialogConfirm(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-confirm.ts:10


loadThemeWhiteEnUsDialogConfirmDelete

loadThemeWhiteEnUsDialogConfirmDelete(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-confirm-delete.ts:9


loadThemeWhiteEnUsDialogConfirmDiscard

loadThemeWhiteEnUsDialogConfirmDiscard(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-confirm-discard.ts:9


loadThemeWhiteEnUsDialogDate

loadThemeWhiteEnUsDialogDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-date.ts:10


loadThemeWhiteEnUsDialogDatetime

loadThemeWhiteEnUsDialogDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-datetime.ts:10


loadThemeWhiteEnUsDialogLayered

loadThemeWhiteEnUsDialogLayered(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-layered.ts:14


loadThemeWhiteEnUsDialogMessage

loadThemeWhiteEnUsDialogMessage(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-message.ts:9


loadThemeWhiteEnUsDialogProcessing

loadThemeWhiteEnUsDialogProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-processing.ts:10


loadThemeWhiteEnUsDialogSaveAs

loadThemeWhiteEnUsDialogSaveAs(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-save-as.ts:9


loadThemeWhiteEnUsDialogSelect

loadThemeWhiteEnUsDialogSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-select.ts:11


loadThemeWhiteEnUsDialogTime

loadThemeWhiteEnUsDialogTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-dialog-time.ts:10


loadThemeWhiteEnUsIndicatorProcessing

loadThemeWhiteEnUsIndicatorProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-indicator-processing.ts:9


loadThemeWhiteEnUsInputAll

loadThemeWhiteEnUsInputAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-input-all.ts:15


loadThemeWhiteEnUsInputBoolean

loadThemeWhiteEnUsInputBoolean(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-input-boolean.ts:11


loadThemeWhiteEnUsLink(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-link.ts:9


loadThemeWhiteEnUsNote

loadThemeWhiteEnUsNote(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-note.ts:15


loadThemeWhiteEnUsPickerColor

loadThemeWhiteEnUsPickerColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-picker-color.ts:9


loadThemeWhiteEnUsPickerColorGradient

loadThemeWhiteEnUsPickerColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-picker-color-gradient.ts:10


loadThemeWhiteEnUsPickerDate

loadThemeWhiteEnUsPickerDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-picker-date.ts:10


loadThemeWhiteEnUsPickerDatetime

loadThemeWhiteEnUsPickerDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-picker-datetime.ts:16


loadThemeWhiteEnUsPickerTime

loadThemeWhiteEnUsPickerTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-picker-time.ts:9


loadThemeWhiteEnUsShapePointsFormatter

loadThemeWhiteEnUsShapePointsFormatter(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-shape-points-formatter.ts:9


loadThemeWhiteEnUsTable

loadThemeWhiteEnUsTable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-en-us-table.ts:51


loadThemeWhiteExpandable

loadThemeWhiteExpandable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-expandable.ts:10


loadThemeWhiteHtmlElement

loadThemeWhiteHtmlElement(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-html-element.ts:9


loadThemeWhiteImage

loadThemeWhiteImage(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-image.ts:9


loadThemeWhiteInputAndLabel

loadThemeWhiteInputAndLabel(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-input-and-label.ts:9


loadThemeWhiteInputInteger

loadThemeWhiteInputInteger(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-input-integer.ts:9


loadThemeWhiteInputLabel

loadThemeWhiteInputLabel(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-input-label.ts:9


loadThemeWhiteInputReal

loadThemeWhiteInputReal(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-input-real.ts:9


loadThemeWhiteInputSearch

loadThemeWhiteInputSearch(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-input-search.ts:9


loadThemeWhiteInputText

loadThemeWhiteInputText(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-input-text.ts:9


loadThemeWhiteInputTextArea

loadThemeWhiteInputTextArea(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-input-text-area.ts:9


loadThemeWhiteJaJpAll

loadThemeWhiteJaJpAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-all.ts:42


loadThemeWhiteJaJpButtonAll

loadThemeWhiteJaJpButtonAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-button-all.ts:24


loadThemeWhiteJaJpButtonColor

loadThemeWhiteJaJpButtonColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-button-color.ts:10


loadThemeWhiteJaJpButtonColorGradient

loadThemeWhiteJaJpButtonColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-button-color-gradient.ts:10


loadThemeWhiteJaJpButtonDate

loadThemeWhiteJaJpButtonDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-button-date.ts:10


loadThemeWhiteJaJpButtonDatetime

loadThemeWhiteJaJpButtonDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-button-datetime.ts:10


loadThemeWhiteJaJpButtonSelect

loadThemeWhiteJaJpButtonSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-button-select.ts:10


loadThemeWhiteJaJpButtonTime

loadThemeWhiteJaJpButtonTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-button-time.ts:10


loadThemeWhiteJaJpDiagram

loadThemeWhiteJaJpDiagram(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-diagram.ts:12


loadThemeWhiteJaJpDiagramEditor

loadThemeWhiteJaJpDiagramEditor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-diagram-editor.ts:13


loadThemeWhiteJaJpDialogAll

loadThemeWhiteJaJpDialogAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-all.ts:26


loadThemeWhiteJaJpDialogColor

loadThemeWhiteJaJpDialogColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-color.ts:10


loadThemeWhiteJaJpDialogColorGradient

loadThemeWhiteJaJpDialogColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-color-gradient.ts:10


loadThemeWhiteJaJpDialogConfirm

loadThemeWhiteJaJpDialogConfirm(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-confirm.ts:10


loadThemeWhiteJaJpDialogConfirmDelete

loadThemeWhiteJaJpDialogConfirmDelete(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-confirm-delete.ts:9


loadThemeWhiteJaJpDialogConfirmDiscard

loadThemeWhiteJaJpDialogConfirmDiscard(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-confirm-discard.ts:9


loadThemeWhiteJaJpDialogDate

loadThemeWhiteJaJpDialogDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-date.ts:10


loadThemeWhiteJaJpDialogDatetime

loadThemeWhiteJaJpDialogDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-datetime.ts:10


loadThemeWhiteJaJpDialogLayered

loadThemeWhiteJaJpDialogLayered(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-layered.ts:14


loadThemeWhiteJaJpDialogMessage

loadThemeWhiteJaJpDialogMessage(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-message.ts:9


loadThemeWhiteJaJpDialogProcessing

loadThemeWhiteJaJpDialogProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-processing.ts:10


loadThemeWhiteJaJpDialogSaveAs

loadThemeWhiteJaJpDialogSaveAs(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-save-as.ts:9


loadThemeWhiteJaJpDialogSelect

loadThemeWhiteJaJpDialogSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-select.ts:11


loadThemeWhiteJaJpDialogTime

loadThemeWhiteJaJpDialogTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-dialog-time.ts:10


loadThemeWhiteJaJpIndicatorProcessing

loadThemeWhiteJaJpIndicatorProcessing(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-indicator-processing.ts:9


loadThemeWhiteJaJpInputAll

loadThemeWhiteJaJpInputAll(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-input-all.ts:15


loadThemeWhiteJaJpInputBoolean

loadThemeWhiteJaJpInputBoolean(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-input-boolean.ts:11


loadThemeWhiteJaJpLink(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-link.ts:9


loadThemeWhiteJaJpNote

loadThemeWhiteJaJpNote(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-note.ts:15


loadThemeWhiteJaJpPickerColor

loadThemeWhiteJaJpPickerColor(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-picker-color.ts:9


loadThemeWhiteJaJpPickerColorGradient

loadThemeWhiteJaJpPickerColorGradient(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-picker-color-gradient.ts:10


loadThemeWhiteJaJpPickerDate

loadThemeWhiteJaJpPickerDate(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-picker-date.ts:10


loadThemeWhiteJaJpPickerDatetime

loadThemeWhiteJaJpPickerDatetime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-picker-datetime.ts:16


loadThemeWhiteJaJpPickerTime

loadThemeWhiteJaJpPickerTime(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-picker-time.ts:9


loadThemeWhiteJaJpShapePointsFormatter

loadThemeWhiteJaJpShapePointsFormatter(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-shape-points-formatter.ts:9


loadThemeWhiteJaJpTable

loadThemeWhiteJaJpTable(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-ja-jp-table.ts:51


loadThemeWhiteLayout

loadThemeWhiteLayout(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-layout.ts:12


loadThemeWhiteList

loadThemeWhiteList(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-list.ts:11


loadThemeWhiteMenu

loadThemeWhiteMenu(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-menu.ts:25


loadThemeWhiteMenuBar

loadThemeWhiteMenuBar(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-menu-bar.ts:11


loadThemeWhiteMenuSided

loadThemeWhiteMenuSided(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-menu-sided.ts:23


loadThemeWhitePagination

loadThemeWhitePagination(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-pagination.ts:16


loadThemeWhitePane

loadThemeWhitePane(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-pane.ts:11


loadThemeWhiteScrollBar

loadThemeWhiteScrollBar(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-scroll-bar.ts:10


loadThemeWhiteSelect

loadThemeWhiteSelect(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-select.ts:11


loadThemeWhiteShape

loadThemeWhiteShape(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-shape.ts:9


loadThemeWhiteShapeActionValue

loadThemeWhiteShapeActionValue(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-shape-action-value.ts:9


loadThemeWhiteSlider

loadThemeWhiteSlider(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-slider.ts:17


loadThemeWhiteText

loadThemeWhiteText(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-text.ts:9


loadThemeWhiteTree

loadThemeWhiteTree(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-tree.ts:12


loadThemeWhiteView

loadThemeWhiteView(): void

Returns

void

Defined in

src/main/typescript/wcardinal/ui/theme/white/load/load-theme-white-view.ts:9


onDeserializedConnectorLine

onDeserializedConnectorLine(item, shape, mapping, manager): void

Parameters

Name Type
item DDiagramSerializedItem
shape EShape
mapping EShapeUuidMapping
manager EShapeResourceManagerDeserialization

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/deserialize-connector-line.ts:23


toCeilingIndex

toCeilingIndex<V>(array, value, size, offset): number

Returns a ceiling index of the given value. The array must be sorted in an ascending order.

Type parameters

Name
V

Parameters

Name Type Description
array V[] an array sorted in an ascending order
value V a value to be searched
size number -
offset number -

Returns

number

a ceiling index of the given value

Defined in

src/main/typescript/wcardinal/ui/util/to-ceiling-index.ts:14


toChecker

toChecker<ROW, VALUE>(cell, checker?): undefined | DLinkChecker

Type parameters

Name
ROW
VALUE

Parameters

Name Type
cell DTableBodyCell<ROW, null | VALUE>
checker? DTableBodyCellLinkChecker<ROW, VALUE>

Returns

undefined | DLinkChecker

Defined in

src/main/typescript/wcardinal/ui/d-table-body-cell-link.ts:85


toCloned

toCloned<T>(target): T

Type parameters

Name
T

Parameters

Name Type
target T

Returns

T

Defined in

src/main/typescript/wcardinal/ui/util/to-cloned.ts:27


toComputed

toComputed(index, value, def): number

Parameters

Name Type
index number
value EShapeLineOfAnyValue
def number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-computed.ts:10


toDash

toDash(style): number

Parameters

Name Type
style number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-dash.ts:8


toEnum

toEnum<T, TE>(target, te): Exclude<T, keyof TE>

Type parameters

Name
T
TE

Parameters

Name Type
target T
te TE

Returns

Exclude<T, keyof TE>

Defined in

src/main/typescript/wcardinal/ui/util/to-enum.ts:8


toGradientImageUrl

toGradientImageUrl(gradient): string

Parameters

Name Type
gradient EShapeGradientLike

Returns

string

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-gradient-image-url.ts:10


toGradientSerialized

toGradientSerialized(gradient): string

Parameters

Name Type
gradient EShapeGradientLike

Returns

string

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-gradient-serialized.ts:8


toId

toId(target): unknown

Parameters

Name Type
target any

Returns

unknown

Defined in

src/main/typescript/wcardinal/ui/util/to-id.ts:9


toImageElement

toImageElement(dataUrl): Promise<EShapeImageLike>

Parameters

Name Type
dataUrl string

Returns

Promise<EShapeImageLike>

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-image-element.ts:12


toIndexOf

toIndexOf<V>(array, value): number

Type parameters

Name
V

Parameters

Name Type
array V[]
value V

Returns

number

Defined in

src/main/typescript/wcardinal/ui/util/to-index-of.ts:6


toLabel

toLabel(target): string

Parameters

Name Type
target any

Returns

string

Defined in

src/main/typescript/wcardinal/ui/util/to-label.ts:9


toLength

toLength(p0x, p0y, p1x, p1y): number

Parameters

Name Type
p0x number
p0y number
p1x number
p1y number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-length.ts:6


toLineIndexCount

toLineIndexCount(pointCount, isClosed): number

Parameters

Name Type
pointCount number
isClosed boolean

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line.ts:36


toLineOfAnyPointCount

toLineOfAnyPointCount(pointCount): number

Parameters

Name Type
pointCount number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line-of-any.ts:5


toLinePointCount

toLinePointCount(points?): number

Parameters

Name Type
points? EShapePoints

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line.ts:23


toLineVertexCount

toLineVertexCount(pointCount, isClosed): number

Parameters

Name Type
pointCount number
isClosed boolean

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line.ts:28


toLinkOptions

toLinkOptions<ROW, VALUE>(cell, options?): undefined | DLinkOptions

Type parameters

Name
ROW
VALUE

Parameters

Name Type
cell DTableBodyCell<ROW, null | VALUE>
options? DTableBodyCellLinkLinkOptions<ROW, VALUE>

Returns

undefined | DLinkOptions

Defined in

src/main/typescript/wcardinal/ui/d-table-body-cell-link.ts:53


toMerged

toMerged<T, U>(one, other): Exclude<T & U, undefined | null>

Type parameters

Name
T
U

Parameters

Name Type
one T
other U

Returns

Exclude<T & U, undefined | null>

Defined in

src/main/typescript/wcardinal/ui/util/to-merged.ts:9


toPadded

toPadded(str, length, c): string

Parameters

Name Type
str string
length number
c string

Returns

string

Defined in

src/main/typescript/wcardinal/ui/util/to-padded.ts:6


toPointCount

toPointCount(points?): number

Parameters

Name Type
points? EShapePoints

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-line.ts:16


toPointsBoundary

toPointsBoundary(values, result): EShapePointsFormattedBoundary

Parameters

Name Type
values number[]
result EShapePointsFormattedBoundary

Returns

EShapePointsFormattedBoundary

Defined in

src/main/typescript/wcardinal/ui/shape/e-shape-points-formatted.ts:27


toResized

toResized(shape, from, to, centerMode, isPerfect): void

Parameters

Name Type
shape EShape
from IPoint
to IPoint
centerMode boolean
isPerfect boolean

Returns

void

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-resized.ts:14


toScaleInvariant

toScaleInvariant(style): number

Parameters

Name Type
style number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-scale-invariant.ts:8


toSizeNormalized

toSizeNormalized(size): number

Parameters

Name Type
size number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-size-normalized.ts:6


toSizeRounded

toSizeRounded(value): number

Parameters

Name Type
value number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-size-rounded.ts:6


toString

toString(value): string

Parameters

Name Type
value unknown

Returns

string

Defined in

src/main/typescript/wcardinal/ui/util/to-string.ts:6


toSvgTexture

toSvgTexture(svg, resolution): Texture

Parameters

Name Type
svg string
resolution number

Returns

Texture

Defined in

src/main/typescript/wcardinal/ui/util/to-svg-texture.ts:9


toSvgUrl

toSvgUrl(svg): string

Parameters

Name Type
svg string

Returns

string

Defined in

src/main/typescript/wcardinal/ui/util/to-svg-url.ts:6


toTextBufferCount

toTextBufferCount(shape): number

Parameters

Name Type
shape EShape

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/build-text.ts:25


toTexture

toTexture(shape): Texture

Parameters

Name Type
shape EShape

Returns

Texture

Defined in

src/main/typescript/wcardinal/ui/shape/variant/builders.ts:14


toTextureTransformId

toTextureTransformId(texture): number

Parameters

Name Type
texture Texture

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/builders.ts:18


toTextureUvs

toTextureUvs(texture): TextureUvs

Parameters

Name Type
texture Texture

Returns

TextureUvs

Defined in

src/main/typescript/wcardinal/ui/shape/variant/builders.ts:26


toThresholdDefault

toThresholdDefault(size, scale, offset): number

Parameters

Name Type
size number
scale number
offset number

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/to-threshold-default.ts:6


toTransformLocalId

toTransformLocalId(shape): number

Parameters

Name Type
shape EShape

Returns

number

Defined in

src/main/typescript/wcardinal/ui/shape/variant/builders.ts:9


toUrl

toUrl<ROW, VALUE>(cell, url?): undefined | string | DLinkUrlMaker

Type parameters

Name
ROW
VALUE

Parameters

Name Type
cell DTableBodyCell<ROW, null | VALUE>
url? string | DTableBodyCellLinkUrlMaker<ROW, VALUE>

Returns

undefined | string | DLinkUrlMaker

Defined in

src/main/typescript/wcardinal/ui/d-table-body-cell-link.ts:68