Uses of Class
javafx.scene.effect.Effect
Package
Description
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
Provides various
StyleConverter
classes
that convert CSS parsed values.Provides the core set of base
classes for the JavaFX Scene Graph API.
Provides the set of classes for canvas, an immediate mode style of rendering API.
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
-
Uses of Effect in javafx.css
Modifier and TypeMethodDescriptionfinal <E extends Effect>
CssMetaData<S, E> StyleablePropertyFactory.createEffectCssMetaData
(String property, Function<S, StyleableProperty<E>> function) Create a CssMetaData<S, Effect> with initial value of null, and inherit flag defaulting to false.final <E extends Effect>
CssMetaData<S, E> StyleablePropertyFactory.createEffectCssMetaData
(String property, Function<S, StyleableProperty<E>> function, E initialValue) Create a CssMetaData<S, Effect> with initial value, and inherit flag defaulting to false.final <E extends Effect>
CssMetaData<S, E> StyleablePropertyFactory.createEffectCssMetaData
(String property, Function<S, StyleableProperty<E>> function, E initialValue, boolean inherits) Create a CssMetaData<S, Effect> with initial value, and inherit flag.final <E extends Effect>
StyleableProperty<E> StyleablePropertyFactory.createStyleableEffectProperty
(S styleable, String propertyName, String cssProperty, Function<S, StyleableProperty<E>> function) Create a StyleableProperty<Effect>.final <E extends Effect>
StyleableProperty<E> StyleablePropertyFactory.createStyleableEffectProperty
(S styleable, String propertyName, String cssProperty, Function<S, StyleableProperty<E>> function, E initialValue) Create a StyleableProperty<Effect> with initial value.final <E extends Effect>
StyleableProperty<E> StyleablePropertyFactory.createStyleableEffectProperty
(S styleable, String propertyName, String cssProperty, Function<S, StyleableProperty<E>> function, E initialValue, boolean inherits) Create a StyleableProperty<Effect> with initial value and inherit flag.Modifier and TypeMethodDescriptionfinal StyleableProperty
<Effect> StyleablePropertyFactory.createStyleableEffectProperty
(S styleable, String propertyName, String cssProperty) Create a StyleableProperty<Effect> using previously created CssMetaData for the givencssProperty
.static StyleConverter
<ParsedValue[], Effect> StyleConverter.getEffectConverter()
Return aStyleConverter
that converts a parsed representation of anEffect
to anEffect
-
Uses of Effect in javafx.css.converter
Modifier and TypeMethodDescriptionstatic StyleConverter
<ParsedValue[], Effect> EffectConverter.getInstance()
Gets theEffectConverter
instance. -
Uses of Effect in javafx.scene
Modifier and TypeMethodDescriptionfinal Effect
Node.getEffect()
Gets the value of theeffect
property.Modifier and TypeMethodDescriptionfinal ObjectProperty
<Effect> Node.effectProperty()
Specifies an effect to apply to thisNode
. -
Uses of Effect in javafx.scene.canvas
Modifier and TypeMethodDescriptionGets a copy of the effect to be applied after the next draw call.Modifier and TypeMethodDescriptionvoid
GraphicsContext.applyEffect
(Effect e) Applies the given effect to the entire bounds of the canvas and stores the result back into the same canvas.Gets a copy of the effect to be applied after the next draw call.void
Sets the effect to be applied after the next draw call, or null to disable effects. -
Uses of Effect in javafx.scene.effect
Modifier and TypeClassDescriptionclass
An effect that blends the two inputs together using one of the pre-definedBlendMode
s.class
A high-level effect that makes brighter portions of the input image appear to glow, based on a configurable threshold.class
A blur effect using a simple box filter kernel, with separately configurable sizes in both dimensions, and an iteration parameter that controls the quality of the resulting blur.class
An effect that allows for per-pixel adjustments of hue, saturation, brightness, and contrast.class
An effect that renders a rectangular region that is filled ("flooded") with the givenPaint
.class
An effect that shifts each pixel by a distance specified by the first two bands of of the specifiedFloatMap
.class
A high-level effect that renders a shadow of the given content behind the content with the specified color, radius, and offset.class
A blur effect using a Gaussian convolution kernel, with a configurable radius.class
A high-level effect that makes the input image appear to glow, based on a configurable threshold.class
A type of source effect that simply passes the givenImage
through, unmodified, as an input to anotherEffect
.class
A high-level effect that renders a shadow inside the edges of the given content with the specified color, radius, and offset.class
An effect that simulates a light source shining on the given content, which can be used to give flat objects a more realistic, three-dimensional appearance.class
A motion blur effect using a Gaussian convolution kernel, with a configurable radius and angle.class
An effect that provides non-affine transformation of the input content.class
An effect that renders a reflected version of the input below the actual input content.class
A filter that produces a sepia tone effect, similar to antique photographs.class
An effect which creates a monochrome duplicate of an input with blurry edges.Modifier and TypeMethodDescriptionfinal Effect
Blend.getBottomInput()
Gets the value of thebottomInput
property.final Effect
Lighting.getBumpInput()
Gets the value of thebumpInput
property.final Effect
Lighting.getContentInput()
Gets the value of thecontentInput
property.final Effect
Bloom.getInput()
Gets the value of theinput
property.final Effect
BoxBlur.getInput()
Gets the value of theinput
property.final Effect
ColorAdjust.getInput()
Gets the value of theinput
property.final Effect
DisplacementMap.getInput()
Gets the value of theinput
property.final Effect
DropShadow.getInput()
Gets the value of theinput
property.final Effect
GaussianBlur.getInput()
Gets the value of theinput
property.final Effect
Glow.getInput()
Gets the value of theinput
property.final Effect
InnerShadow.getInput()
Gets the value of theinput
property.final Effect
MotionBlur.getInput()
Gets the value of theinput
property.final Effect
PerspectiveTransform.getInput()
Gets the value of theinput
property.final Effect
Reflection.getInput()
Gets the value of theinput
property.final Effect
SepiaTone.getInput()
Gets the value of theinput
property.final Effect
Shadow.getInput()
Gets the value of theinput
property.final Effect
Blend.getTopInput()
Gets the value of thetopInput
property.Modifier and TypeMethodDescriptionfinal ObjectProperty
<Effect> Blend.bottomInputProperty()
The bottom input for thisBlend
operation.final ObjectProperty
<Effect> Lighting.bumpInputProperty()
The optional bump map input.final ObjectProperty
<Effect> Lighting.contentInputProperty()
The content input for thisEffect
.final ObjectProperty
<Effect> Bloom.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> BoxBlur.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> ColorAdjust.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> DisplacementMap.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> DropShadow.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> GaussianBlur.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> Glow.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> InnerShadow.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> MotionBlur.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> PerspectiveTransform.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> Reflection.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> SepiaTone.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> Shadow.inputProperty()
The input for thisEffect
.final ObjectProperty
<Effect> Blend.topInputProperty()
The top input for thisBlend
operation.Modifier and TypeMethodDescriptionfinal void
Blend.setBottomInput
(Effect value) Sets the value of thebottomInput
property.final void
Lighting.setBumpInput
(Effect value) Sets the value of thebumpInput
property.final void
Lighting.setContentInput
(Effect value) Sets the value of thecontentInput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Sets the value of theinput
property.final void
Blend.setTopInput
(Effect value) Sets the value of thetopInput
property.