- java.lang.Object
-
- javafx.scene.control.SkinBase<HTMLEditor>
-
- javafx.scene.web.HTMLEditorSkin
-
- All Implemented Interfaces:
-
Skin<HTMLEditor>
public class HTMLEditorSkin extends SkinBase<HTMLEditor>
HTML编辑器皮肤。- 从以下版本开始:
- 9
- 另请参见:
-
HTMLEditor
-
-
Nested Class Summary
Nested Classes Modifier and Type Class 描述 static class
HTMLEditorSkin.Command
表示可以传递到HTMLEditor Web引擎的命令。
-
构造方法摘要
构造方法 Constructor 描述 HTMLEditorSkin(HTMLEditor control)
创建一个新的HTMLEditorSkin实例,将必要的子节点安装到Controlchildren
列表中,以及处理密钥,鼠标等事件的必要输入映射。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 protected void
layoutChildren(double x, double y, double w, double h)
在场景图的布局过程中调用。void
performCommand(HTMLEditorSkin.Command command)
某些命令的特殊情况处理。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from class javafx.scene.control.SkinBase
computeBaselineOffset, computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, consumeMouseEvents, dispose, executeAccessibleAction, getChildren, getClassCssMetaData, getCssMetaData, getNode, getSkinnable, layoutInArea, layoutInArea, layoutInArea, positionInArea, positionInArea, pseudoClassStateChanged, queryAccessibleAttribute, registerChangeListener, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, unregisterChangeListeners
-
-
-
-
构造方法详细信息
-
HTMLEditorSkin
public HTMLEditorSkin(HTMLEditor control)
创建一个新的HTMLEditorSkin实例,将必需的子节点安装到控件children
列表中,以及处理键,鼠标等事件的必要输入映射。- 参数
-
control
- 这个皮肤应该安装到的控件。
-
-
方法详细信息
-
performCommand
public void performCommand(HTMLEditorSkin.Command command)
某些命令的特殊情况处理。 随着时间的推移,这可能会扩展到处理其他命令。 当前支持的命令列表是:- 胆大
- ITALIC
- 强调
- 参数
-
command
- 命令
-
layoutChildren
protected void layoutChildren(double x, double y, double w, double h)
在场景图的布局过程中调用。- 重写:
-
layoutChildren
在SkinBase<HTMLEditor>
- 参数
-
x
- x位置 -
y
- y位置 -
w
- 宽度 -
h
- 高度
-
-