io.github.palexdev.mfxeffects.enums.MouseMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
package io.github.palexdev.mfxeffects.enums;
import javafx.scene.Node;
/**
* Enumeration for ripple generators to allow users to specify the behavior for mouse events.
*/
public enum MouseMode {
/**
* The generator will detect all mouse events.
*/
OFF,
/**
* The generator will ignore mouse events on the "bounds area" and only consider the geometric shape of the node,
* better explained here {@link Node#pickOnBoundsProperty()}.
*/
DONT_PICK_ON_BOUNDS,
/**
* The generator will ignore all mouse events.
*/
MOUSE_TRANSPARENT
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy