Class BrightnessContrastSliderPane

All Implemented Interfaces:
Styleable, EventTarget

public class BrightnessContrastSliderPane extends GridPane
A pane containing sliders for adjusting the min/max display range and gamma value associated with an ImageDisplay.
  • Property Details

    • imageDisplay

      public ObjectProperty<ImageDisplay> imageDisplayProperty
      The image display to which the sliders are applied.
    • disableMinMaxAdjustment

      public BooleanProperty disableMinMaxAdjustmentProperty
      Prevent the min and max sliders from being adjusted.
    • disableGammaAdjustment

      public BooleanProperty disableGammaAdjustmentProperty
      Prevent gamma from being adjusted.
    • selectedChannel

      public ObjectProperty<ChannelDisplayInfo> selectedChannelProperty
      The channel to which the sliders are applied. This should be a channel found within #imageDisplayProperty().
    • maxValue

      public DoubleProperty maxValueProperty
      Value of the maximum slider.
    • minValue

      public DoubleProperty minValueProperty
      Value of the minimum slider.
    • gammaValue

      public DoubleProperty gammaValueProperty
      Value of the gamma slider.
  • Constructor Details

    • BrightnessContrastSliderPane

      public BrightnessContrastSliderPane()
  • Method Details

    • imageDisplayProperty

      public ObjectProperty<ImageDisplay> imageDisplayProperty()
      The image display to which the sliders are applied.
    • disableMinMaxAdjustmentProperty

      public BooleanProperty disableMinMaxAdjustmentProperty()
      Prevent the min and max sliders from being adjusted.
    • disableGammaAdjustmentProperty

      public BooleanProperty disableGammaAdjustmentProperty()
      Prevent gamma from being adjusted.
    • selectedChannelProperty

      public ObjectProperty<ChannelDisplayInfo> selectedChannelProperty()
      The channel to which the sliders are applied. This should be a channel found within #imageDisplayProperty().
    • resetAllSliders

      public void resetAllSliders()
      Reset all sliders to their default values.
    • maxValueProperty

      public DoubleProperty maxValueProperty()
      Value of the maximum slider.
    • minValueProperty

      public DoubleProperty minValueProperty()
      Value of the minimum slider.
    • gammaValueProperty

      public DoubleProperty gammaValueProperty()
      Value of the gamma slider.
    • refreshSliders

      public void refreshSliders()
      Refresh the sliders, to ensure they match with the current channel. This should be called if the channel is modified externally.