I'm creating this typical graphs software where on each click you add a node, on Shit+Click on nodes you draw a vertex, etc. So I want to create some Mouse-Key combinations for triggering algorithms. For example an Alt+K+Click event turns into the Kruskal graph ....
So far I've done:
root.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent t) {
if (t.isAltDown()) {
root.setOnKeyPressed(new EventHandler<KeyEvent>() {
@Override
public void handle(KeyEvent k) {
System.out.println(k.getText());
}
.....
.....
}
I got to a "scanning" buffer of keys but I don't know how to stop it, k.consume isn't working ...
