-
Sub-task
-
Resolution: Fixed
-
P4
-
fx2.0, 8
-
java6
windows 7
fx b42
To reproduce run following code, press copy "RTF to clipboard", try to paste in Open Office Writer.
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.input.Clipboard;
import javafx.scene.input.ClipboardContent;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ClipboardSample extends Application {
public static void main(String[] args) {
launch(args);
}
private Parent getContent() {
VBox list = new VBox(10);
Button but = new Button("Copy RTF to clipboard");
but.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent t) {
Clipboard cb = Clipboard.getSystemClipboard();
ClipboardContent cc = new ClipboardContent();
cc.putRtf("{\\rtf1 This is some {\\b bold} text.\\par}");
cb.setContent(cc);
}
});
list.getChildren().add(but);
return list;
}
public void start(Stage stage) {
stage.setX(100);
stage.setY(100);
stage.setWidth(200);
stage.setHeight(200);
Scene scene = new Scene(getContent());
stage.setScene(scene);
stage.show();
}
}
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.input.Clipboard;
import javafx.scene.input.ClipboardContent;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ClipboardSample extends Application {
public static void main(String[] args) {
launch(args);
}
private Parent getContent() {
VBox list = new VBox(10);
Button but = new Button("Copy RTF to clipboard");
but.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent t) {
Clipboard cb = Clipboard.getSystemClipboard();
ClipboardContent cc = new ClipboardContent();
cc.putRtf("{\\rtf1 This is some {\\b bold} text.\\par}");
cb.setContent(cc);
}
});
list.getChildren().add(but);
return list;
}
public void start(Stage stage) {
stage.setX(100);
stage.setY(100);
stage.setWidth(200);
stage.setHeight(200);
Scene scene = new Scene(getContent());
stage.setScene(scene);
stage.show();
}
}
- blocks
-
JDK-8128579 Native Clipboard/Dragboard: passing Image to native application doesn't work
-
- Closed
-