From 13fe1a344ef79dc23c6931b9b4b6a686383261d8 Mon Sep 17 00:00:00 2001 From: Hein-Pieter van Braam Date: Sat, 9 Sep 2017 17:05:05 +0200 Subject: [PATCH] Correct InputEvent documentation --- doc/base/classes.xml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index a097470306f..0ed3c41d198 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -23249,6 +23249,7 @@ + Generic input event @@ -23259,24 +23260,28 @@ + Returns true if this input event matches the event passed. + Returns a [String] representation of the event. + Returns the id of the device that generated the event. + Returns the id of the event. @@ -23285,7 +23290,7 @@ - Return if this input event matches a pre-defined action, no matter the type. + Returns true if this input event matches a pre-defined action, no matter the type. @@ -23294,7 +23299,7 @@ - Return whether the given action is being pressed (and is not an echo event for KEY events). Not relevant for the event types MOUSE_MOTION, SCREEN_DRAG and NONE. + Returns true if the given action is being pressed (and is not an echo event for KEY events). Not relevant for the event types MOUSE_MOTION, SCREEN_DRAG and NONE. @@ -23303,7 +23308,7 @@ - Return whether the given action is released (i.e. not pressed). Not relevant for the event types MOUSE_MOTION, SCREEN_DRAG and NONE. + Returns true if the given action is released (i.e. not pressed). Not relevant for the event types MOUSE_MOTION, SCREEN_DRAG and NONE. @@ -23316,14 +23321,14 @@ - Return if this input event is an echo event (only for events of type KEY, it will return false for other types). + Returns true if this input event is an echo event (only for events of type KEY, it will return false for other types). - Return if this input event is pressed. Not relevant for the event types MOUSE_MOTION, SCREEN_DRAG and NONE. + Returns true if this input event is pressed. Not relevant for the event types MOUSE_MOTION, SCREEN_DRAG and NONE.