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

javafx.scene.input.KeyCodeCombination Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code 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 General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package javafx.scene.input;

// PENDING_DOC_REVIEW
/**
 * This class represents a key combination in which the main key is specified
 * by its {@code KeyCode}. Such key combination is independent on the keyboard
 * functional layout configured by the user at the time of key combination
 * matching.
 * @since JavaFX 2.0
 */
public final class KeyCodeCombination extends KeyCombination {
    /** The key code associated with this key combination. */
    private KeyCode code;

    /** 
     * Gets the key code associated with this key combination.
     * @return The key code associated with this key combination
     */
    public final KeyCode getCode() {
        return code;
    }

    /**
     * Constructs a {@code KeyCodeCombination} for the specified main key and
     * with an explicit specification of all modifier keys. Each modifier key
     * can be set to {@code PRESSED}, {@code RELEASED} or {@code IGNORED}.
     *
     * @param code the key code of the main key
     * @param shift the value of the {@code shift} modifier key
     * @param control the value of the {@code control} modifier key
     * @param alt the value of the {@code alt} modifier key
     * @param meta the value of the {@code meta} modifier key
     * @param shortcut the value of the {@code shortcut} modifier key
     */
    public KeyCodeCombination(final KeyCode code,
                              final ModifierValue shift,
                              final ModifierValue control,
                              final ModifierValue alt,
                              final ModifierValue meta,
                              final ModifierValue shortcut) {
        super(shift, control, alt, meta, shortcut);

        validateKeyCode(code);
        this.code = code;
    }

    /**
     * Constructs a {@code KeyCodeCombination} for the specified main key and
     * with the specified list of modifiers. All modifier keys which are not
     * explicitly listed are set to the default {@code RELEASED} value.
     * 

* All possible modifiers which change the default modifier value are * defined as constants in the {@code KeyCombination} class. * * @param code the key code of the main key * @param modifiers the list of modifier keys and their corresponding values */ public KeyCodeCombination(final KeyCode code, final Modifier... modifiers) { super(modifiers); validateKeyCode(code); this.code = code; } /** * Tests whether this key combination matches the key combination in the * given {@code KeyEvent}. It uses only the key code and the state of the * modifier keys from the {@code KeyEvent} in the test. This means that the * method can return {@code true} only for {@code KEY_PRESSED} and * {@code KEY_RELEASED} events, but not for {@code KEY_TYPED} events, which * don't have valid key codes. * * @param event the key event * @return {@code true} if the key combinations match, {@code false} * otherwise */ @Override public boolean match(final KeyEvent event) { return (event.getCode() == getCode()) && super.match(event); } /** * Returns a string representation of this {@code KeyCodeCombination}. *

* The string representation consists of sections separated by plus * characters. Each section specifies either a modifier key or the main key. *

* A modifier key section contains the {@code KeyCode} name of a modifier * key. It can be prefixed with the {@code Ignored} keyword. A non-prefixed * modifier key implies its {@code PRESSED} value while the prefixed version * implies the {@code IGNORED} value. If some modifier key is not specified * in the string at all, it means it has the default {@code RELEASED} value. *

* The main key section contains the key code name of the main key and is * the last section in the returned string. * * @return the string representation of this {@code KeyCodeCombination} */ @Override public String getName() { StringBuilder sb = new StringBuilder(); sb.append(super.getName()); if (sb.length() > 0) { sb.append("+"); } return sb.append(code.getName()).toString(); } /** * Tests whether this {@code KeyCodeCombination} equals to the specified * object. * * @param obj the object to compare to * @return {@code true} if the objects are equal, {@code false} otherwise */ @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (!(obj instanceof KeyCodeCombination)) { return false; } return (this.getCode() == ((KeyCodeCombination) obj).getCode()) && super.equals(obj); } /** * Returns a hash code value for this {@code KeyCodeCombination}. * * @return the hash code value */ @Override public int hashCode() { return 23 * super.hashCode() + code.hashCode(); } private static void validateKeyCode(final KeyCode keyCode) { if (keyCode == null) { throw new NullPointerException("Key code must not be null!"); } if (getModifier(keyCode.getName()) != null) { throw new IllegalArgumentException( "Key code must not match modifier key!"); } if (keyCode == KeyCode.UNDEFINED) { throw new IllegalArgumentException( "Key code must differ from undefined value!"); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy