Package ca.eandb.util.ui

Examples of ca.eandb.util.ui.JNumberLine


  /**
   *
   */
  public JReinhardToneMapperPanel() {
    autoCheckBox = new JCheckBox("Automatic", true);
    whiteSlider = new JNumberLine(MIN_STOP, MAX_STOP, 0);
    scaleSlider = new JNumberLine(MIN_STOP, MAX_STOP, 0);

    whiteSlider.setEnabled(false);
    scaleSlider.setEnabled(false);

    autoCheckBox.addActionListener(new ActionListener() {
View Full Code Here


  /**
   *
   */
  public JLinearToneMapperPanel() {
    autoCheckBox = new JCheckBox("Automatic", true);
    whiteLuminanceSlider = new JNumberLine(MIN_STOP, MAX_STOP, 0);
    whiteXChromaticitySlider = new JSlider(0, MAX_CHROMATICITY_SLIDER_VALUE, MAX_CHROMATICITY_SLIDER_VALUE / 3);
    whiteYChromaticitySlider = new JSlider(0, MAX_CHROMATICITY_SLIDER_VALUE, MAX_CHROMATICITY_SLIDER_VALUE / 3);

    whiteLuminanceSlider.setEnabled(false);
    whiteXChromaticitySlider.setEnabled(false);
View Full Code Here

TOP

Related Classes of ca.eandb.util.ui.JNumberLine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.