diff --git a/src/Magnum/Platform/AbstractXApplication.h b/src/Magnum/Platform/AbstractXApplication.h index 7f89cff4e..65377a2a3 100644 --- a/src/Magnum/Platform/AbstractXApplication.h +++ b/src/Magnum/Platform/AbstractXApplication.h @@ -1410,11 +1410,13 @@ class AbstractXApplication::PointerMoveEvent: public InputEvent { /** * @brief Pointer type that was added or removed from the set of pressed pointers * - * Is non-empty only in case a mouse button was pressed in addition to - * an already pressed button, or if one mouse button from multiple - * pressed buttons was released. If non-empty and @ref pointers() don't - * contain given @ref Pointer value, the button was released, if they - * contain given value, the button was pressed. + * Use @ref pointers() to query the set of pointers pressed in this + * event. This field is is non-empty only in case a mouse button was + * pressed in addition to an already pressed button, or if one mouse + * button from multiple pressed buttons was released. If non-empty and + * @ref pointers() don't contain given @ref Pointer value, the button + * was released, if they contain given value, the button was pressed. + * @see @ref source() */ Containers::Optional pointer() const { return _pointer; } diff --git a/src/Magnum/Platform/AndroidApplication.h b/src/Magnum/Platform/AndroidApplication.h index b4017866b..576b264f7 100644 --- a/src/Magnum/Platform/AndroidApplication.h +++ b/src/Magnum/Platform/AndroidApplication.h @@ -1152,11 +1152,13 @@ class AndroidApplication::PointerMoveEvent: public InputEvent { /** * @brief Pointer type that was added or removed from the set of pressed pointers * - * Is non-empty only in case a mouse button was pressed in addition to - * an already pressed button, or if one mouse button from multiple - * pressed buttons was released. If non-empty and @ref pointers() don't - * contain given @ref Pointer value, the button was released, if they - * contain given value, the button was pressed. + * Use @ref pointers() to query the set of pointers pressed in this + * event. This field is is non-empty only in case a mouse button was + * pressed in addition to an already pressed button, or if one mouse + * button from multiple pressed buttons was released. If non-empty and + * @ref pointers() don't contain given @ref Pointer value, the button + * was released, if they contain given value, the button was pressed. + * @see @ref source() */ Containers::Optional pointer() const { return _pointer; } diff --git a/src/Magnum/Platform/EmscriptenApplication.h b/src/Magnum/Platform/EmscriptenApplication.h index d3595c0ca..c18a336c1 100644 --- a/src/Magnum/Platform/EmscriptenApplication.h +++ b/src/Magnum/Platform/EmscriptenApplication.h @@ -2250,11 +2250,13 @@ class EmscriptenApplication::PointerMoveEvent: public InputEvent { /** * @brief Pointer type that was added or removed from the set of pressed pointers * - * Is non-empty only in case a mouse button was pressed in addition to - * an already pressed button, or if one mouse button from multiple - * pressed buttons was released. If non-empty and @ref pointers() don't - * contain given @ref Pointer value, the button was released, if they - * contain given value, the button was pressed. + * Use @ref pointers() to query the set of pointers pressed in this + * event. This field is is non-empty only in case a mouse button was + * pressed in addition to an already pressed button, or if one mouse + * button from multiple pressed buttons was released. If non-empty and + * @ref pointers() don't contain given @ref Pointer value, the button + * was released, if they contain given value, the button was pressed. + * @see @ref source() */ Containers::Optional pointer() const { return _pointer; } diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index 72cf63844..066c9a9e7 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -2381,11 +2381,13 @@ class GlfwApplication::PointerMoveEvent: public InputEvent { /** * @brief Pointer type that was added or removed from the set of pressed pointers * - * Is non-empty only in case a mouse button was pressed in addition to - * an already pressed button, or if one mouse button from multiple - * pressed buttons was released. If non-empty and @ref pointers() don't - * contain given @ref Pointer value, the button was released, if they - * contain given value, the button was pressed. + * Use @ref pointers() to query the set of pointers pressed in this + * event. This field is is non-empty only in case a mouse button was + * pressed in addition to an already pressed button, or if one mouse + * button from multiple pressed buttons was released. If non-empty and + * @ref pointers() don't contain given @ref Pointer value, the button + * was released, if they contain given value, the button was pressed. + * @see @ref source() */ Containers::Optional pointer() const { return _pointer; } diff --git a/src/Magnum/Platform/Sdl2Application.h b/src/Magnum/Platform/Sdl2Application.h index 93f0ae5b6..abbbbceba 100644 --- a/src/Magnum/Platform/Sdl2Application.h +++ b/src/Magnum/Platform/Sdl2Application.h @@ -3176,11 +3176,12 @@ class Sdl2Application::PointerMoveEvent: public InputEvent { /** * @brief Pointer type that was added or removed from the set of pressed pointers * - * Is non-empty only in case a mouse button was pressed in addition to - * an already pressed button, or if one mouse button from multiple - * pressed buttons was released. If non-empty and @ref pointers() don't - * contain given @ref Pointer value, the button was released, if they - * contain given value, the button was pressed. + * Use @ref pointers() to query the set of pointers pressed in this + * event. This field is is non-empty only in case a mouse button was + * pressed in addition to an already pressed button, or if one mouse + * button from multiple pressed buttons was released. If non-empty and + * @ref pointers() don't contain given @ref Pointer value, the button + * was released, if they contain given value, the button was pressed. * @see @ref source() */ Containers::Optional pointer() const { return _pointer; }