Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
java.awt

Class MenuShortcut

  • All Implemented Interfaces:
    Serializable

    public class MenuShortcut
    extends Object
    implements Serializable
    The MenuShortcutclass represents a keyboard accelerator for a MenuItem.

    Menu shortcuts are created using virtual keycodes, not characters. For example, a menu shortcut for Ctrl-a (assuming that Control is the accelerator key) would be created with code like the following:

    MenuShortcut ms = new MenuShortcut(KeyEvent.VK_A, false);

    or alternatively

    MenuShortcut ms = new MenuShortcut(KeyEvent.getExtendedKeyCodeForChar('A'), false);

    Menu shortcuts may also be constructed for a wider set of keycodes using the java.awt.event.KeyEvent.getExtendedKeyCodeForChar call. For example, a menu shortcut for "Ctrl+cyrillic ef" is created by

    MenuShortcut ms = new MenuShortcut(KeyEvent.getExtendedKeyCodeForChar('?'), false);

    Note that shortcuts created with a keycode or an extended keycode defined as a constant in KeyEvent work regardless of the current keyboard layout. However, a shortcut made of an extended keycode not listed in KeyEvent only work if the current keyboard layout produces a corresponding letter.

    The accelerator key is platform-dependent and may be obtained via Toolkit.getMenuShortcutKeyMask().

    Since:
    JDK1.1
    See Also:
    Serialized Form
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      boolean equals(MenuShortcut s)
      Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
      boolean equals(Object obj)
      Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
      int getKey()
      Returns the raw keycode of this MenuShortcut.
      int hashCode()
      Returns the hashcode for this MenuShortcut.
      protected String paramString()
      Returns the parameter string representing the state of this MenuShortcut.
      String toString()
      Returns an internationalized description of the MenuShortcut.
      boolean usesShiftModifier()
      Returns whether this MenuShortcut must be invoked using the SHIFT key.

      Erste Seite von API Java Inhaltsverzeichnis Haut

    • Constructor Detail

      • public MenuShortcut(int key)
        Constructs a new MenuShortcut for the specified virtual keycode.
        Parameters:
        key - the raw keycode for this MenuShortcut, as would be returned in the keyCode field of a KeyEvent if this key were pressed.
        See Also:
        KeyEvent
      • public MenuShortcut(int key,
                    boolean useShiftModifier)
        Constructs a new MenuShortcut for the specified virtual keycode.
        Parameters:
        key - the raw keycode for this MenuShortcut, as would be returned in the keyCode field of a KeyEvent if this key were pressed.
        useShiftModifier - indicates whether this MenuShortcut is invoked with the SHIFT key down.
        See Also:
        KeyEvent
    • Method Detail

      • getKey

        public int getKey()
        Returns the raw keycode of this MenuShortcut.
        Returns:
        the raw keycode of this MenuShortcut.
        Since:
        JDK1.1
        See Also:
        KeyEvent
      • usesShiftModifier

        public boolean usesShiftModifier()
        Returns whether this MenuShortcut must be invoked using the SHIFT key.
        Returns:
        true if this MenuShortcut must be invoked using the SHIFT key, false otherwise.
        Since:
        JDK1.1
      • equals

        public boolean equals(MenuShortcut s)
        Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
        Parameters:
        s - the MenuShortcut to compare with this.
        Returns:
        true if this MenuShortcut is the same as another, false otherwise.
        Since:
        JDK1.1
      • equals

        public boolean equals(Object obj)
        Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
        Overrides:
        equals in class Object
        Parameters:
        obj - the Object to compare with this.
        Returns:
        true if this MenuShortcut is the same as another, false otherwise.
        Since:
        1.2
        See Also:
        Object.hashCode(), HashMap
      • toString

        public String toString()
        Returns an internationalized description of the MenuShortcut.
        Overrides:
        toString in class Object
        Returns:
        a string representation of this MenuShortcut.
        Since:
        JDK1.1
      • paramString

        protected String paramString()
        Returns the parameter string representing the state of this MenuShortcut. This string is useful for debugging.
        Returns:
        the parameter string of this MenuShortcut.
        Since:
        JDK1.1

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/awt/menushortcut.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut