Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2001-2002 NaN Holding BV. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup GHOST
|
|
* Declaration of GHOST_EventTrackpad class.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "GHOST_Event.h"
|
|
|
|
/**
|
|
* Trackpad (scroll, magnify, rotate, ...) event.
|
|
*/
|
|
class GHOST_EventTrackpad : public GHOST_Event {
|
|
public:
|
|
/**
|
|
* Constructor.
|
|
* \param msec: The time this event was generated.
|
|
* \param window: The window of this event.
|
|
* \param subtype: The subtype of the event.
|
|
* \param x: The x-delta of the pan event.
|
|
* \param y: The y-delta of the pan event.
|
|
*/
|
|
GHOST_EventTrackpad(uint64_t msec,
|
|
GHOST_IWindow *window,
|
|
GHOST_TTrackpadEventSubTypes subtype,
|
|
int32_t x,
|
|
int32_t y,
|
|
int32_t deltaX,
|
|
int32_t deltaY,
|
|
bool isDirectionInverted)
|
|
: GHOST_Event(msec, GHOST_kEventTrackpad, window)
|
|
{
|
|
m_trackpadEventData.subtype = subtype;
|
|
m_trackpadEventData.x = x;
|
|
m_trackpadEventData.y = y;
|
|
m_trackpadEventData.deltaX = deltaX;
|
|
m_trackpadEventData.deltaY = deltaY;
|
|
m_trackpadEventData.isDirectionInverted = isDirectionInverted;
|
|
m_data = &m_trackpadEventData;
|
|
}
|
|
|
|
protected:
|
|
/** The mouse pan data */
|
|
GHOST_TEventTrackpadData m_trackpadEventData;
|
|
};
|