jfxtras.scene.control.LocalTimePicker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfxtras-controls Show documentation
Show all versions of jfxtras-controls Show documentation
Miscellaneous components for JavaFX
/**
* LocalTimePicker.java
*
* Copyright (c) 2011-2016, JFXtras
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the organization nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jfxtras.scene.control;
import java.time.LocalTime;
import java.util.Locale;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.scene.control.Control;
import javafx.scene.control.Skin;
import javafx.util.Callback;
import jfxtras.internal.scene.control.skin.LocalTimePickerSkin;
/**
* LocalTime (JSR-310) picker component.
*
* @author Tom Eugelink
*/
public class LocalTimePicker extends Control
{
// ==================================================================================================================
// CONSTRUCTOR
/**
*
*/
public LocalTimePicker()
{
construct();
}
/**
*
* @param localTime
*/
public LocalTimePicker(LocalTime localTime)
{
construct();
setLocalTime(localTime);
}
/*
*
*/
private void construct()
{
}
@Override public Skin> createDefaultSkin() {
return new LocalTimePickerSkin(this);
}
// ==================================================================================================================
// PROPERTIES
/** LocalTime: */
public ObjectProperty localTimeProperty() { return localTimeObjectProperty; }
private final ObjectProperty localTimeObjectProperty = new SimpleObjectProperty(this, "localTime", LocalTime.now());
public LocalTime getLocalTime() { return localTimeObjectProperty.getValue(); }
public void setLocalTime(LocalTime value) { localTimeObjectProperty.setValue(value); }
public LocalTimePicker withLocalTime(LocalTime value) { setLocalTime(value); return this; }
/** Locale: the locale is used to determine first-day-of-week, weekday labels, etc */
public ObjectProperty localeProperty() { return localeObjectProperty; }
volatile private ObjectProperty localeObjectProperty = new SimpleObjectProperty(this, "locale", Locale.getDefault());
public Locale getLocale() { return localeObjectProperty.getValue(); }
public void setLocale(Locale value) { localeObjectProperty.setValue(value); }
public LocalTimePicker withLocale(Locale value) { setLocale(value); return this; }
/** MinuteStep */
public ObjectProperty minuteStepProperty() { return minuteStepProperty; }
final private SimpleObjectProperty minuteStepProperty = new SimpleObjectProperty(this, "minuteStep", 1);
public Integer getMinuteStep() { return minuteStepProperty.getValue(); }
public void setMinuteStep(Integer value) { minuteStepProperty.setValue(value); }
public LocalTimePicker withMinuteStep(Integer value) { setMinuteStep(value); return this; }
/** SecondStep */
public ObjectProperty secondStepProperty() { return secondStepProperty; }
final private SimpleObjectProperty secondStepProperty = new SimpleObjectProperty(this, "secondStep", 1);
public Integer getSecondStep() { return secondStepProperty.getValue(); }
public void setSecondStep(Integer value) { secondStepProperty.setValue(value); }
public LocalTimePicker withSecondStep(Integer value) { setSecondStep(value); return this; }
/** valueValidationCallback:
* This callback allows a developer deny or accept a value just prior before it gets added.
* Returning true will allow the value.
*/
public ObjectProperty> valueValidationCallbackProperty() { return valueValidationCallbackObjectProperty; }
final private ObjectProperty> valueValidationCallbackObjectProperty = new SimpleObjectProperty>(this, "valueValidationCallback", null);
public Callback getValueValidationCallback() { return this.valueValidationCallbackObjectProperty.getValue(); }
public void setValueValidationCallback(Callback value) { this.valueValidationCallbackObjectProperty.setValue(value); }
public LocalTimePicker withValueValidationCallback(Callback value) { setValueValidationCallback(value); return this; }
// ==================================================================================================================
// SUPPORT
}