import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { LayoutDivStyleType, MyCustomDivLayoutType } from '../MyCustomDiv'; import { RectangleButton } from '../RectangleButton'; import { MyContextMenu } from '../MyContextMenu'; declare type ButtonStatusType = 'normal' | 'hovered' | 'pressed'; export declare type CircleButtonStatusFuncType = (status: ButtonStatusType, sceneObject: RectangleButton, context: { rectangleButton: RectangleButton; circleButton: CircleButton; }) => void; export declare type CircleButtonClickFuncType = (mouseEvent: MouseEvent, context: { rectangleButton: RectangleButton; circleButton: CircleButton; }) => void; export declare type CircleButtonToolTipClickFuncType = (index: number, text: string, mouseEvent: MouseEvent, context: { myContextMenu: MyContextMenu; rectangleButton: RectangleButton; circleButton: CircleButton; [k: string]: any; }) => void; export declare class CircleButton extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { show: boolean; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; cssText: string; highlighted: boolean; highlightOnClick: boolean; text: string; clickFuncStr: string; normalImageUri: string; normalImageSize: number; hoveredImageUri: string; hoveredImageSize: number; pressedImageUri: string; pressedImageSize: number; highlightedImageUri: string; highlightedImageSize: number; statusFuncStr: string; radius: number; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; borderWidth: number; borderColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; textColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; fontSize: number; tooltip: string; tooltipMenuStrings: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; tooltipClickFuncStr: string; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); private _button; get button(): RectangleButton; private _tooltipClickFunc; get tooltipClickFunc(): CircleButtonToolTipClickFuncType | undefined; set tooltipClickFunc(value: CircleButtonToolTipClickFuncType | undefined); get tooltipClickFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[CircleButtonToolTipClickFuncType | undefined, CircleButtonToolTipClickFuncType | undefined]>; private _tooltipClickFuncInit; static defaults: { defaultLayoutStyle: LayoutDivStyleType; viewerTagsEnums: [string, string][]; }; get container(): HTMLElement | undefined; set container(value: HTMLElement | undefined); get clickEvent(): import("vtxf-xe2/dist-node/xe2-base-utils").Event<[mouseEvent: MouseEvent, context: { rectangleButton: RectangleButton; }]>; private _clickFunc; get clickFunc(): CircleButtonClickFuncType | undefined; set clickFunc(value: CircleButtonClickFuncType | undefined); get clickFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[CircleButtonClickFuncType | undefined, CircleButtonClickFuncType | undefined]>; private _clickFuncInit; get status(): ButtonStatusType; set status(value: ButtonStatusType); get statusChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<["normal" | "hovered" | "pressed", "normal" | "hovered" | "pressed"]>; private _statusFunc; get statusFunc(): CircleButtonStatusFuncType | undefined; set statusFunc(value: CircleButtonStatusFuncType | undefined); get statusFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[CircleButtonStatusFuncType | undefined, CircleButtonStatusFuncType | undefined]>; private _statusFuncInit; get finalCssText(): string; get finalCssTextChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[string, string]>; static defaultClickFuncStrMd: string; private _statusInit; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace CircleButton { const createDefaultProps: () => { show: boolean; containerId: string | null; visibility: boolean; interaction: boolean; shadowDom: boolean; cssAllInitial: boolean; zIndex: number | undefined; layoutType: MyCustomDivLayoutType; cssText: string; highlighted: boolean; highlightOnClick: boolean; text: string; clickFuncStr: string; normalImageUri: string; normalImageSize: number; hoveredImageUri: string; hoveredImageSize: number; pressedImageUri: string; pressedImageSize: number; highlightedImageUri: string; highlightedImageSize: number; statusFuncStr: string; radius: number; backgroundColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; borderWidth: number; borderColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; textColor: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable<[number, number, number, number]>; fontSize: number; tooltip: string; tooltipMenuStrings: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; tooltipClickFuncStr: string; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; } export interface CircleButton extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};