クラス
javafx.scene.input.SwipeEventの使用
-
SwipeEventを使用するパッケージ パッケージ 説明 javafx.scene JavaFXシーン・グラフAPIのベース・クラスのコア・セットを提供します。javafx.scene.input マウスおよびキーボード入力イベント処理のクラスのセットを提供します。 -
-
javafx.sceneのSwipeEventの使用
SwipeEvent型の引数を持つ型を返すjavafx.sceneのメソッド 修飾子と型 メソッド 説明 EventHandler<? super SwipeEvent>Node. getOnSwipeDown()プロパティonSwipeDownの値を取得します。EventHandler<? super SwipeEvent>Scene. getOnSwipeDown()プロパティonSwipeDownの値を取得します。EventHandler<? super SwipeEvent>Node. getOnSwipeLeft()プロパティonSwipeLeftの値を取得します。EventHandler<? super SwipeEvent>Scene. getOnSwipeLeft()プロパティonSwipeLeftの値を取得します。EventHandler<? super SwipeEvent>Node. getOnSwipeRight()プロパティonSwipeRightの値を取得します。EventHandler<? super SwipeEvent>Scene. getOnSwipeRight()プロパティonSwipeRightの値を取得します。EventHandler<? super SwipeEvent>Node. getOnSwipeUp()プロパティonSwipeUpの値を取得します。EventHandler<? super SwipeEvent>Scene. getOnSwipeUp()プロパティonSwipeUpの値を取得します。ObjectProperty<EventHandler<? super SwipeEvent>>Node. onSwipeDownProperty()このノードを中心にした下向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。ObjectProperty<EventHandler<? super SwipeEvent>>Scene. onSwipeDownProperty()このシーンを中心にした下向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。ObjectProperty<EventHandler<? super SwipeEvent>>Node. onSwipeLeftProperty()このノードを中心にした左向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。ObjectProperty<EventHandler<? super SwipeEvent>>Scene. onSwipeLeftProperty()このシーンを中心にした左向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。ObjectProperty<EventHandler<? super SwipeEvent>>Node. onSwipeRightProperty()このノードを中心にした右向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。ObjectProperty<EventHandler<? super SwipeEvent>>Scene. onSwipeRightProperty()このシーンを中心にした右向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。ObjectProperty<EventHandler<? super SwipeEvent>>Node. onSwipeUpProperty()このノードを中心にした上向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。ObjectProperty<EventHandler<? super SwipeEvent>>Scene. onSwipeUpProperty()このシーンを中心にした上向きのスワイプ・ジェスチャが発生すると呼び出される関数を定義します。SwipeEvent型の型引数を持つjavafx.sceneのメソッド・パラメータ 修飾子と型 メソッド 説明 voidNode. setOnSwipeDown(EventHandler<? super SwipeEvent> value)プロパティonSwipeDownの値を設定します。voidScene. setOnSwipeDown(EventHandler<? super SwipeEvent> value)プロパティonSwipeDownの値を設定します。voidNode. setOnSwipeLeft(EventHandler<? super SwipeEvent> value)プロパティonSwipeLeftの値を設定します。voidScene. setOnSwipeLeft(EventHandler<? super SwipeEvent> value)プロパティonSwipeLeftの値を設定します。voidNode. setOnSwipeRight(EventHandler<? super SwipeEvent> value)プロパティonSwipeRightの値を設定します。voidScene. setOnSwipeRight(EventHandler<? super SwipeEvent> value)プロパティonSwipeRightの値を設定します。voidNode. setOnSwipeUp(EventHandler<? super SwipeEvent> value)プロパティonSwipeUpの値を設定します。voidScene. setOnSwipeUp(EventHandler<? super SwipeEvent> value)プロパティonSwipeUpの値を設定します。 -
javafx.scene.inputのSwipeEventの使用
SwipeEvent型の型パラメータを持つjavafx.scene.inputのフィールド 修飾子と型 フィールド 説明 static EventType<SwipeEvent>SwipeEvent. ANYすべてのスワイプ・イベント・タイプに共通のスーパータイプ。static EventType<SwipeEvent>SwipeEvent. SWIPE_DOWNこのイベントは、ユーザーが下向きのスワイプ・ジェスチャを実行したときに発生します。static EventType<SwipeEvent>SwipeEvent. SWIPE_LEFTこのイベントは、ユーザーが左向きのスワイプ・ジェスチャを実行したときに発生します。static EventType<SwipeEvent>SwipeEvent. SWIPE_RIGHTこのイベントは、ユーザーが右向きのスワイプ・ジェスチャを実行したときに発生します。static EventType<SwipeEvent>SwipeEvent. SWIPE_UPこのイベントは、ユーザーが上向きのスワイプ・ジェスチャを実行したときに発生します。SwipeEventを返すjavafx.scene.inputのメソッド 修飾子と型 メソッド 説明 SwipeEventSwipeEvent. copyFor(Object newSource, EventTarget newTarget, EventType<SwipeEvent> type)指定のフィールドが置換された特定のイベントのコピーを作成します。SwipeEvent型の型引数を持つjavafx.scene.inputのメソッド・パラメータ 修飾子と型 メソッド 説明 SwipeEventSwipeEvent. copyFor(Object newSource, EventTarget newTarget, EventType<SwipeEvent> type)指定のフィールドが置換された特定のイベントのコピーを作成します。SwipeEvent型の型引数を持つjavafx.scene.inputのコンストラクタ・パラメータ コンストラクタ 説明 SwipeEvent(Object source, EventTarget target, EventType<SwipeEvent> eventType, double x, double y, double screenX, double screenY, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown, boolean direct, int touchCount, PickResult pickResult)新しいSwipeEventイベントを構築します。SwipeEvent(EventType<SwipeEvent> eventType, double x, double y, double screenX, double screenY, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown, boolean direct, int touchCount, PickResult pickResult)nullのソースとターゲットを使用した新しいSwipeEventイベントを構築します。
-