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

io.github.palexdev.mfxcomponents.theming.enums.PseudoClasses Maven / Gradle / Ivy

There is a newer version: 11.26.0
Show newest version
/*
 * Copyright (C) 2023 Parisi Alessandro - [email protected]
 * This file is part of MaterialFX (https://github.com/palexdev/MaterialFX)
 *
 * MaterialFX is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 3 of the License,
 * or (at your option) any later version.
 *
 * MaterialFX is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with MaterialFX. If not, see .
 */

package io.github.palexdev.mfxcomponents.theming.enums;

import javafx.css.PseudoClass;
import javafx.scene.Node;

/**
 * This enumerator keeps references to all the {@link PseudoClass}es needed by MaterialFX components.
 */
public enum PseudoClasses {
    DISABLED(PseudoClass.getPseudoClass("disabled")),
    ERROR(PseudoClass.getPseudoClass("error")),
    EXTENDED(PseudoClass.getPseudoClass("extended")),
    FIRST(PseudoClass.getPseudoClass("first")),
    FOCUSED(PseudoClass.getPseudoClass("focused")),
    FOCUS_VISIBLE(PseudoClass.getPseudoClass("focus-visible")),
    FOCUS_WITHIN(PseudoClass.getPseudoClass("focus-within")),
    HOVER(PseudoClass.getPseudoClass("hover")),
    INDETERMINATE(PseudoClass.getPseudoClass("indeterminate")),
    LAST(PseudoClass.getPseudoClass("last")),
    PRESSED(PseudoClass.getPseudoClass("pressed")),
    SELECTABLE(PseudoClass.getPseudoClass("selectable")),
    SELECTED(PseudoClass.getPseudoClass("selected")),
    WITH_ICON_LEFT(PseudoClass.getPseudoClass("with-icon-left")),
    WITH_ICON_RIGHT(PseudoClass.getPseudoClass("with-icon-right")),
    ;

    private final PseudoClass pseudoClass;

    PseudoClasses(PseudoClass pseudoClass) {
        this.pseudoClass = pseudoClass;
    }

    /**
     * Activates or deactivates the PseudoClass on the given node.
     */
    public void setOn(Node node, boolean state) {
        node.pseudoClassStateChanged(pseudoClass, state);
    }

    /**
     * Checks whether the PseudoClass is active or not on the given node by searching in the
     * {@link Node#getPseudoClassStates()} Set.
     */
    public boolean isActiveOn(Node node) {
        return node.getPseudoClassStates().contains(pseudoClass);
    }

    public PseudoClass getPseudoClass() {
        return pseudoClass;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy