您好我想知道如何拦截 JavaFX HTMLEditor 中的粘贴事件。
答案 0 :(得分:5)
你做不到。 HTMLEditor在内部使用WebPage。基本上在粘贴事件期间,它通过
发送“粘贴”命令private boolean executeCommand(String command, String value) {
return webPage.executeCommand(command, value);
}
然后是
twkExecuteCommand(getPage(), command, value);
但是,您可以拦截隐式调用粘贴事件的所有内容,例如按钮单击或CTRL + V组合键,并根据您要执行的操作消耗事件。
示例:
public class HTMLEditorSample extends Application {
@Override
public void start(Stage stage) {
final HTMLEditor htmlEditor = new HTMLEditor();
Scene scene = new Scene(htmlEditor, 800, 600);
stage.setScene(scene);
stage.show();
Button button = (Button) htmlEditor.lookup(".html-editor-paste");
button.addEventFilter(MouseEvent.MOUSE_PRESSED, e -> {
System.out.println("paste pressed");
// e.consume();
});
htmlEditor.addEventFilter(KeyEvent.KEY_PRESSED, e -> {
if( e.isControlDown() && e.getCode() == KeyCode.V) {
System.out.println( "CTRL+V pressed");
// e.consume();
}
});
}
public static void main(String[] args) {
launch(args);
}
}
至于你的other question只将纯文本粘贴到html编辑器,你可以这样做:
public class HTMLEditorSample extends Application {
@Override
public void start(Stage stage) {
final HTMLEditor htmlEditor = new HTMLEditor();
Scene scene = new Scene(htmlEditor, 800, 600);
stage.setScene(scene);
stage.show();
Button button = (Button) htmlEditor.lookup(".html-editor-paste");
button.addEventFilter(MouseEvent.MOUSE_PRESSED, e -> {
modifyClipboard();
});
htmlEditor.addEventFilter(KeyEvent.KEY_PRESSED, e -> {
if( e.isControlDown() && e.getCode() == KeyCode.V) {
modifyClipboard();
}
});
}
private void modifyClipboard() {
Clipboard clipboard = Clipboard.getSystemClipboard();
String plainText = clipboard.getString();
ClipboardContent content = new ClipboardContent();
content.putString(plainText);
clipboard.setContent(content);
}
public static void main(String[] args) {
launch(args);
}
}
这是一种解决方法而且难看,因为除非用户愿意,否则不应修改剪贴板内容,但它可以正常工作。另一方面,可以在粘贴操作之后将剪贴板内容恢复回其原始状态。
编辑:
以下是访问上下文菜单的方法,例如: G。禁用它:
WebView webView = (WebView) htmlEditor.lookup(".web-view");
webView.setContextMenuEnabled(false);
答案 1 :(得分:0)
不要尝试这一行,因为它总是返回NULL:
Button button = (Button) htmlEditor.lookup(".html-editor-paste");
从HTMLEditor获取“粘贴”按钮的唯一方法是@taha的解决方案:
htmlEditor.addEventFilter(MouseEvent.MOUSE_PRESSED, e -> { if (e.getTarget().toString().contains("html-editor-paste")) { System.out.println("paste pressed"); });