All Downloads are FREE. Search and download functionalities are using the official Maven repository.

impl.com.calendarfx.view.print.OptionsViewSkin Maven / Gradle / Ivy

There is a newer version: 11.12.7
Show newest version
/*
 *  Copyright (C) 2017 Dirk Lemmermann Software & Consulting (dlsc.com)
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *          http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package impl.com.calendarfx.view.print;

import com.calendarfx.view.Messages;
import com.calendarfx.view.print.OptionsView;
import com.calendarfx.view.print.ViewType;
import javafx.scene.Node;
import javafx.scene.control.CheckBox;
import javafx.scene.control.SkinBase;
import javafx.scene.layout.VBox;

import java.util.ArrayList;
import java.util.List;

public class OptionsViewSkin extends SkinBase {

    private final VBox container;

    private final CheckBox allDayEventsChk;
    private final CheckBox detailsChk;
    private final CheckBox timedEventsChk;
    private final CheckBox miniCalendarChk;
    private final CheckBox calendarKeysChk;
    private final CheckBox swimlaneLayoutChk;

    public OptionsViewSkin(OptionsView control) {
        super(control);

        control.viewTypeProperty().addListener(obs -> layout());

        container = new VBox(5);

        allDayEventsChk = new CheckBox(Messages.getString("OptionsViewSkin.ALL_DAY_EVENTS_LABEL"));
        allDayEventsChk.selectedProperty().bindBidirectional(control.showAllDayEntriesProperty());

        detailsChk = new CheckBox(Messages.getString("OptionsViewSkin.DETAILS_LABEL"));
        detailsChk.selectedProperty().bindBidirectional(control.showEntryDetailsProperty());

        timedEventsChk = new CheckBox(Messages.getString("OptionsViewSkin.TIMED_EVENTS_LABEL"));
        timedEventsChk.selectedProperty().bindBidirectional(control.showTimedEntriesProperty());

        miniCalendarChk = new CheckBox(Messages.getString("OptionsViewSkin.MINI_CALENDAR_LABEL"));
        miniCalendarChk.selectedProperty().bindBidirectional(control.showMiniCalendarsProperty());

        calendarKeysChk = new CheckBox(Messages.getString("OptionsViewSkin.CALENDAR_KEYS_LABEL"));
        calendarKeysChk.selectedProperty().bindBidirectional(control.showCalendarKeysProperty());

        swimlaneLayoutChk = new CheckBox(Messages.getString("OptionsViewSkin.SWIMLANE_LAYOUT_LABEL"));
        swimlaneLayoutChk.selectedProperty().bindBidirectional(control.showSwimlaneLayoutProperty());

        layout();
        getChildren().add(container);
    }

    private void layout() {
        List children = new ArrayList<>();

        if (getSkinnable().getViewType() == ViewType.DAY_VIEW) {
            children.add(allDayEventsChk);
            children.add(detailsChk);
            children.add(miniCalendarChk);
            children.add(calendarKeysChk);
            children.add(swimlaneLayoutChk);
        } else if (getSkinnable().getViewType() == ViewType.WEEK_VIEW) {
            children.add(allDayEventsChk);
            children.add(miniCalendarChk);
            children.add(calendarKeysChk);
            children.add(swimlaneLayoutChk);
        } else if (getSkinnable().getViewType() == ViewType.MONTH_VIEW) {
            children.add(allDayEventsChk);
            children.add(timedEventsChk);
            children.add(miniCalendarChk);
            children.add(calendarKeysChk);
        }

        container.getChildren().setAll(children);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy