Toolbox 类
用于 Toolbox 的类。创建工具箱的 DOM。
Signature:
export declare class Toolbox extends DeleteArea implements IAutoHideable, IKeyboardAccessible, IStyleable, IToolbox
扩展:DeleteArea
实现: IAutoHideable、IKeyboardAccessible、IStyleable、IToolbox
构造函数
构造函数 | 修饰符 | 说明 |
---|---|---|
(构造函数)(工作区) | 构造 Toolbox 类的新实例 |
属性
属性 | 修饰符 | 类型 | 说明 |
---|---|---|---|
boundEvents_ | protected |
browserEvents.Data[] | 包含解除绑定事件处理脚本所需信息的数组。用于处置。例如:[[node, name, func], [node, name, func]]。 |
contentMap_ | protected |
{ [key: string]: IToolboxItem;} | |
contents_ | protected |
IToolboxItem[] | 工具箱中的项列表。 |
contentsDiv_ | protected |
HTMLDivElement |null | 用于存放工具箱内容的 HTML 容器。 |
height_ | protected |
number | 工具箱的高度。 |
HtmlDiv | HTMLDivElement |null | 工具箱的 HTML 容器。 | |
id | 字符串 | 用于向 ComponentManager 注册的组件的唯一 ID。 | |
isVisible_ | protected |
布尔值 | 工具箱是否可见。 |
previouslySelectedItem_ | protected |
ISelectableToolboxItem |null | 之前选定的内容。 |
RTL | 布尔值 | ||
selectedItem_ | protected |
ISelectableToolboxItem |null | 当前选定的项。 |
toolboxDef_ | protected |
toolbox.ToolboxInfo | |
toolboxPosition | toolbox.Position | ||
width_ | protected |
number | 工具箱的宽度。 |
workspace_ |
|
WorkspaceSvg | 此工具箱所在的工作区。 |
方法
方法 | 修饰符 | 说明 |
---|---|---|
addToolboxItem_(toolboxItem) | protected |
向工具箱中添加项。 |
attachEvents_(容器, 内容容器) | protected |
向工具箱容器 div 添加事件监听器。 |
autoHide(onlyClosePopups) | 隐藏组件。在 WorkspaceSvg.hideChaff 中调用。 | |
clearSelection() | 取消突出显示之前选中的所有项。 | |
createContainer_() | protected |
为工具箱创建容器 div。 |
createContentsContainer_() | protected |
为工具箱中的所有内容创建容器。 |
createDom_(workspace) | protected |
为工具箱创建 DOM。 |
createFlyout_() | protected |
根据工具箱布局创建浮出控件。 |
deselectItem_(item) | protected |
取消选择给定项,将其标记为未选择,并更新 aria 状态。 |
dispose() | 丢弃此工具箱。 | |
getClientRect() | 用于返回拖动目标区域相对于视口的边界矩形(以像素单位表示)。 | |
getFlyout() | 获取工具箱浮出控件。 | |
getHeight() | 获取工具箱的高度。 | |
getPreviouslySelectedItem() | 获取先前选定的项。 | |
getSelectedItem() | 获取选定的项。 | |
getToolboxItemById(id) | 获取具有指定 ID 的工具箱项。 | |
getToolboxItems() | 获取工具箱中的项。 | |
getWidth() | 获取工具箱的宽度。 | |
getWorkspace() | 获取工具箱的工作区。 | |
init() | 初始化工具箱 | |
isHorizontal() | 获取工具箱是否处于水平状态。 | |
onClick_(e) | protected |
处理点击工具箱或工具箱项时的点击事件。 |
onDragEnter(_dragElement) | 在带有方块或气泡的光标进入此拖动目标时进行处理。 | |
onDragExit(_dragElement) | 在带有块或气泡的光标退出此拖动目标时进行处理。 | |
onDrop(_dragElement) | 处理将块或气泡放到此组件上的情况。不应在此处处理删除。 | |
onKeyDown_(e) | protected |
处理工具箱的按键按下事件。 |
onShortcut(_shortcut) | 处理指定的键盘快捷键。 | |
position() | 根据工具箱是否为水平工具箱以及工作区是否为 rtl 来定位。 | |
refreshSelection() | 更新浮出控件的内容,而不将其关闭。应该用于响应其中一个动态类别(如变量或过程)的变化。 | |
renderContents_(toolboxDef) | protected |
将工具箱中的所有项添加到工具箱。 |
selectItem_(oldItem, newItem) | protected |
选择给定项,将其标记为选中状态,并更新 aria 状态。 |
selectItemByPosition(position) | 根据工具箱项在工具箱项列表中的位置选择。 | |
setSelectedItem(newItem) | 将给定项设置为选定项。如果项不可选择,则不执行任何操作。 | |
setVisible(isVisible) | 显示或隐藏工具箱。 | |
shouldDeselectItem_(oldItem, newItem) | protected |
决定是否应取消选择旧项。 |
shouldSelectItem_(oldItem, newItem) | protected |
决定是否应选择新项。 |
updateCursorDeleteStyle_(addStyle) | protected |
根据在工具箱上放置光标后,光标所在的块或气泡是否会被删除,添加或移除光标的 CSS 样式(使用内部 this.willDelete_ 属性)。 |
updateFlyout_(oldItem, newItem) | protected |
根据所选项决定是否隐藏或显示浮出。 |
updateWouldDelete_(wouldDelete) | protected |
更新内部 willDelete_ 状态。 |
wouldDelete(element) | 返回所提供的区块或气泡在放在此区域时是否被删除。此方法应检查元素是否可删除,并且始终在 onDragEnter/onDragOver/onDragExit 之前调用。 |