| パッケージ | 説明 |
|---|---|
| javafx.scene.input |
マウスおよびキーボード入力イベント処理のクラスのセットを提供します。
|
| 修飾子と型 | メソッドと説明 |
|---|---|
KeyCombination.ModifierValue |
KeyCombination.getAlt()
このキーの組合せの
[Alt]キーの状態。 |
KeyCombination.ModifierValue |
KeyCombination.getControl()
このキーの組合せの
[Ctrl]キーの状態。 |
KeyCombination.ModifierValue |
KeyCombination.getMeta()
このキーの組合せの
[Meta]キーの状態。 |
KeyCombination.ModifierValue |
KeyCombination.getShift()
このキーの組合せの
[Shift]キーの状態。 |
KeyCombination.ModifierValue |
KeyCombination.getShortcut()
このキーの組合せの
[Shortcut]キーの状態。 |
KeyCombination.ModifierValue |
KeyCombination.Modifier.getValue()
この
Modifierの修飾子キーを取得します。 |
static KeyCombination.ModifierValue |
KeyCombination.ModifierValue.valueOf(String name)
指定された名前を持つ、この型の列挙型定数を返します。
|
static KeyCombination.ModifierValue[] |
KeyCombination.ModifierValue.values()
この列挙型の定数を含む配列を、宣言されている順序で返します。
|
| コンストラクタと説明 |
|---|
KeyCharacterCombination(String character, KeyCombination.ModifierValue shift, KeyCombination.ModifierValue control, KeyCombination.ModifierValue alt, KeyCombination.ModifierValue meta, KeyCombination.ModifierValue shortcut)
すべての修飾子キーの明示的な指定とともに指定された主要なキー文字の
KeyCharacterCombinationを構築します。 |
KeyCodeCombination(KeyCode code, KeyCombination.ModifierValue shift, KeyCombination.ModifierValue control, KeyCombination.ModifierValue alt, KeyCombination.ModifierValue meta, KeyCombination.ModifierValue shortcut)
すべての修飾子キーの明示的な指定とともに指定された主要なキーの
KeyCodeCombinationを構築します。 |
KeyCombination(KeyCombination.ModifierValue shift, KeyCombination.ModifierValue control, KeyCombination.ModifierValue alt, KeyCombination.ModifierValue meta, KeyCombination.ModifierValue shortcut)
すべての修飾子キーを明示的に指定して
KeyCombinationを構築します。 |
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.