Java Code Examples for javafx.scene.Node#setOnMousePressed()

The following examples show how to use javafx.scene.Node#setOnMousePressed() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DataViewWindow.java    From chart-fx with Apache License 2.0 6 votes vote down vote up
/**
 * @param content node that put into the BoderPane centre and depending on
 *            {@link #windowDecorationProperty} with or w/o frame
 */
protected void setLocalCenter(final Node content) {
    switch (getWindowDecoration()) {
    case FRAME:
        if (content == null) {
            setCenter(null);
            break;
        }
        final Node node = new BorderedTitledPane(getName(), content);
        node.setOnMousePressed(this::dragStart);
        node.setOnMouseDragged(this::dragOngoing);
        node.setOnMouseReleased(this::dragFinish);
        setCenter(node);
        break;
    case BAR:
    case BAR_WO_CLOSE:
    case NONE:
    default:
        setCenter(content);
        break;
    }
}
 
Example 2
Source File: DragResizerUtil.java    From chart-fx with Apache License 2.0 5 votes vote down vote up
protected DragResizerUtil(Node node, OnDragResizeEventListener listener) {
    this.node = node;
    this.listener = listener != null ? listener : DEFAULT_LISTENER;
    if (node == null) {
        throw new IllegalArgumentException("node must not be null");
    }

    node.setOnMousePressed(this::mousePressed);
    node.setOnMouseDragged(this::mouseDragged);
    node.setOnMouseMoved(this::mouseOver);
    node.setOnMouseReleased(this::mouseReleased);
    node.setOnMouseClicked(this::resetNodeSize);
}
 
Example 3
Source File: ViewUtils.java    From ApkToolPlus with Apache License 2.0 5 votes vote down vote up
/**
 * 注册拖拽事件
 *
 * @param stage
 * @param root
 */
public static void registerDragEvent(Stage stage, Node root){
    // allow the clock background to be used to drag the clock around.
    final Delta dragDelta = new Delta();
    root.setOnMousePressed(mouseEvent -> {
        // record a delta distance for the drag and drop operation.
        dragDelta.x = stage.getX() - mouseEvent.getScreenX();
        dragDelta.y = stage.getY() - mouseEvent.getScreenY();
    });
    root.setOnMouseDragged(mouseEvent -> {
        stage.setX(mouseEvent.getScreenX() + dragDelta.x);
        stage.setY(mouseEvent.getScreenY() + dragDelta.y);
    });
}
 
Example 4
Source File: ViewUtils.java    From ApkToolPlus with Apache License 2.0 5 votes vote down vote up
/**
 * 注册拖拽事件
 *
 * @param dialog
 * @param root
 */
public static void registerDragEvent(Dialog dialog, Node root){
    // allow the clock background to be used to drag the clock around.
    final Delta dragDelta = new Delta();
    root.setOnMousePressed(mouseEvent -> {
        // record a delta distance for the drag and drop operation.
        dragDelta.x = dialog.getX() - mouseEvent.getScreenX();
        dragDelta.y = dialog.getY() - mouseEvent.getScreenY();
    });
    root.setOnMouseDragged(mouseEvent -> {
        dialog.setX(mouseEvent.getScreenX() + dragDelta.x);
        dialog.setY(mouseEvent.getScreenY() + dragDelta.y);
    });
}
 
Example 5
Source File: NodeGestures.java    From fxgraph with Do What The F*ck You Want To Public License 4 votes vote down vote up
public void makeDraggable(final Node node) {
	node.setOnMousePressed(onMousePressedEventHandler);
	node.setOnMouseDragged(onMouseDraggedEventHandler);
	node.setOnMouseReleased(onMouseReleasedEventHandler);
}
 
Example 6
Source File: NodeGestures.java    From fxgraph with Do What The F*ck You Want To Public License 4 votes vote down vote up
public void makeUndraggable(final Node node) {
	node.setOnMousePressed(null);
	node.setOnMouseDragged(null);
	node.setOnMouseReleased(null);
}
 
Example 7
Source File: CrewEditorFX.java    From mars-sim with GNU General Public License v3.0 4 votes vote down vote up
/**
 * Makes a stage draggable using a given node.
 * 
 * @param stage
 * @param byNode
 */
public void makeDraggable(final Stage stage, final Node byNode) {
	final Delta dragDelta = new Delta();
	byNode.setOnMousePressed(mouseEvent -> {
		// record a delta distance for the drag and drop operation.
		dragDelta.x = stage.getX() - mouseEvent.getScreenX();
		dragDelta.y = stage.getY() - mouseEvent.getScreenY();
		byNode.setCursor(Cursor.MOVE);
	});
	final BooleanProperty inDrag = new SimpleBooleanProperty(false);

	byNode.setOnMouseReleased(mouseEvent -> {
		byNode.setCursor(Cursor.HAND);

		if (inDrag.get()) {
			stage.hide();

			Timeline pause = new Timeline(new KeyFrame(Duration.millis(50), event -> {
				background.setImage(copyBackground(stage));
				layout.getChildren().set(0, background);

				scenarioConfigEditorFX.getMainMenu().setMonitor(stage);
				stage.show();

			}));
			pause.play();
		}

		inDrag.set(false);
	});
	byNode.setOnMouseDragged(mouseEvent -> {
		stage.setX(mouseEvent.getScreenX() + dragDelta.x);
		stage.setY(mouseEvent.getScreenY() + dragDelta.y);

		layout.getChildren().set(0, makeSmoke(stage));

		inDrag.set(true);
	});
	byNode.setOnMouseEntered(mouseEvent -> {
		if (!mouseEvent.isPrimaryButtonDown()) {
			byNode.setCursor(Cursor.HAND);
		}
	});
	byNode.setOnMouseExited(mouseEvent -> {
		if (!mouseEvent.isPrimaryButtonDown()) {
			byNode.setCursor(Cursor.DEFAULT);
		}
	});
}
 
Example 8
Source File: FrostyTech.java    From mars-sim with GNU General Public License v3.0 4 votes vote down vote up
public void makeDraggable(final Stage stage, final Node byNode) {
    final Delta dragDelta = new Delta();
    byNode.setOnMousePressed(mouseEvent -> {
        // record a delta distance for the drag and drop operation.
        dragDelta.x = stage.getX() - mouseEvent.getScreenX();
        dragDelta.y = stage.getY() - mouseEvent.getScreenY();
        byNode.setCursor(Cursor.MOVE);
    });
    final BooleanProperty inDrag = new SimpleBooleanProperty(false);

    byNode.setOnMouseReleased(mouseEvent -> {
        byNode.setCursor(Cursor.HAND);

        if (inDrag.get()) {
            stage.hide();

            Timeline pause = new Timeline(new KeyFrame(Duration.millis(50), event -> {
                background.setImage(copyBackground(stage));
                layout.getChildren().set(
                        0,
                        background
                );
                stage.show();
            }));
            pause.play();
        }

        inDrag.set(false);
    });
    byNode.setOnMouseDragged(mouseEvent -> {
        stage.setX(mouseEvent.getScreenX() + dragDelta.x);
        stage.setY(mouseEvent.getScreenY() + dragDelta.y);

        layout.getChildren().set(
                0,
                makeSmoke(stage)
        );

        inDrag.set(true);
    });
    byNode.setOnMouseEntered(mouseEvent -> {
        if (!mouseEvent.isPrimaryButtonDown()) {
            byNode.setCursor(Cursor.HAND);
        }
    });
    byNode.setOnMouseExited(mouseEvent -> {
        if (!mouseEvent.isPrimaryButtonDown()) {
            byNode.setCursor(Cursor.DEFAULT);
        }
    });
}
 
Example 9
Source File: FeatureTableMenu.java    From old-mzmine3 with GNU General Public License v2.0 4 votes vote down vote up
private static void setCustomContextMenu(TreeTableView<FeatureTableRow> table) {

    // Check that table has been populated
    TreeTableViewSkin<?> tableSkin = (TreeTableViewSkin<?>) table.getSkin();

    if (tableSkin == null) {
      Platform.runLater(new Runnable() {
        @Override
        public void run() {
          setCustomContextMenu(table);
        }
      });
    } else {
      // Get all children of the skin
      ObservableList<Node> children = tableSkin.getChildren();

      // Find the TableHeaderRow child
      for (int i = 0; i < children.size(); i++) {
        Node node = children.get(i);

        if (node instanceof TableHeaderRow) {
          TableHeaderRow tableHeaderRow = (TableHeaderRow) node;

          // Make sure that the header row always has a height and
          // thus is visible
          double defaultHeight = tableHeaderRow.getHeight();
          tableHeaderRow.setPrefHeight(defaultHeight);

          for (Node child : tableHeaderRow.getChildren()) {

            if (child.getStyleClass().contains("show-hide-columns-button")) {

              // Create a context menu
              ContextMenu columnPopupMenu = createContextMenu(table);

              // Replace the mouse listener
              child.setOnMousePressed(me -> {
                columnPopupMenu.show(child, Side.BOTTOM, 0, 0);
                me.consume();
              });
            }
          }

        }
      }
    }
  }