/** * CalendarTimePicker.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 <COPYRIGHT HOLDER> 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.util.Calendar; 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.CalendarTimePickerSkin; /** * TimePicker control * The calendar is (and should) be treated as immutable. That means the setter is not used, but when a value is changed a new instance (clone) is put in the calendar property. * * @author Tom Eugelink */ public class CalendarTimePicker extends Control { // ================================================================================================================== // CONSTRUCTOR /** * */ public CalendarTimePicker() { construct(); } /* * */ private void construct() { // setup the CSS this.getStyleClass().add(CalendarTimePicker.class.getSimpleName()); } /** * Return the path to the CSS file so things are setup right */ @Override public String getUserAgentStylesheet() { return CalendarTimePicker.class.getResource("/jfxtras/internal/scene/control/" + CalendarTimePicker.class.getSimpleName() + ".css").toExternalForm(); } @Override public Skin<?> createDefaultSkin() { return new jfxtras.internal.scene.control.skin.CalendarTimePickerSkin(this); } // ================================================================================================================== // PROPERTIES /** Id */ public CalendarTimePicker withId(String value) { setId(value); return this; } /** calendar: */ public ObjectProperty<Calendar> calendarProperty() { return calendarObjectProperty; } final private ObjectProperty<Calendar> calendarObjectProperty = new SimpleObjectProperty<Calendar>(this, "calendar", Calendar.getInstance()) { public void set(Calendar value) { value = CalendarTimePickerSkin.blockHoursToStep(value, getHourStep()); value = CalendarTimePickerSkin.blockMinutesToStep(value, getMinuteStep()); value = CalendarTimePickerSkin.blockSecondsToStep(value, getSecondStep()); super.set(value); } }; public Calendar getCalendar() { return calendarObjectProperty.getValue(); } public void setCalendar(Calendar value) { calendarObjectProperty.setValue(value); } public CalendarTimePicker withCalendar(Calendar value) { setCalendar(value); return this; } /** Locale: the locale is used to determine first-day-of-week, weekday labels, etc */ public ObjectProperty<Locale> localeProperty() { return localeObjectProperty; } volatile private ObjectProperty<Locale> localeObjectProperty = new SimpleObjectProperty<Locale>(this, "locale", Locale.getDefault()); public Locale getLocale() { return localeObjectProperty.getValue(); } public void setLocale(Locale value) { localeObjectProperty.setValue(value); } public CalendarTimePicker withLocale(Locale value) { setLocale(value); return this; } /** HourStep */ public ObjectProperty<Integer> hourStepProperty() { return hourStepProperty; } final private SimpleObjectProperty<Integer> hourStepProperty = new SimpleObjectProperty<Integer>(this, "hourStep", 1) { public void set(Integer value) { if (value == null || value.intValue() < 0 || value.intValue() > 23) { throw new IllegalArgumentException("null or outside [0-23] is not allowed"); } super.set(value); setCalendar( CalendarTimePickerSkin.blockHoursToStep(getCalendar(), getHourStep()) ); } }; public Integer getHourStep() { return hourStepProperty.getValue(); } public void setHourStep(Integer value) { hourStepProperty.setValue(value); } public CalendarTimePicker withHourStep(Integer value) { setHourStep(value); return this; } /** MinuteStep */ public ObjectProperty<Integer> minuteStepProperty() { return minuteStepProperty; } final private SimpleObjectProperty<Integer> minuteStepProperty = new SimpleObjectProperty<Integer>(this, "minuteStep", 1) { public void set(Integer value) { if (value == null || value.intValue() < 0 || value.intValue() > 59) { throw new IllegalArgumentException("null or outside [0-59] is not allowed"); } super.set(value); setCalendar( CalendarTimePickerSkin.blockMinutesToStep(getCalendar(), getMinuteStep()) ); } }; public Integer getMinuteStep() { return minuteStepProperty.getValue(); } public void setMinuteStep(Integer value) { minuteStepProperty.setValue(value); } public CalendarTimePicker withMinuteStep(Integer value) { setMinuteStep(value); return this; } /** SecondStep */ public ObjectProperty<Integer> secondStepProperty() { return secondStepProperty; } final private SimpleObjectProperty<Integer> secondStepProperty = new SimpleObjectProperty<Integer>(this, "secondStep", 1) { public void set(Integer value) { if (value == null || value.intValue() < 0 || value.intValue() > 59) { throw new IllegalArgumentException("null or outside [0-59] is not allowed"); } super.set(value); setCalendar( CalendarTimePickerSkin.blockSecondsToStep(getCalendar(), getSecondStep()) ); } }; public Integer getSecondStep() { return secondStepProperty.getValue(); } public void setSecondStep(Integer value) { secondStepProperty.setValue(value); } public CalendarTimePicker 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<Callback<Calendar, Boolean>> valueValidationCallbackProperty() { return valueValidationCallbackObjectProperty; } final private ObjectProperty<Callback<Calendar, Boolean>> valueValidationCallbackObjectProperty = new SimpleObjectProperty<Callback<Calendar, Boolean>>(this, "valueValidationCallback", null); public Callback<Calendar, Boolean> getValueValidationCallback() { return this.valueValidationCallbackObjectProperty.getValue(); } public void setValueValidationCallback(Callback<Calendar, Boolean> value) { this.valueValidationCallbackObjectProperty.setValue(value); } public CalendarTimePicker withValueValidationCallback(Callback<Calendar, Boolean> value) { setValueValidationCallback(value); return this; } }