historical/toontown-classic.git/panda/include/pointerData.I

72 lines
1.5 KiB
Text
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file pointerData.I
* @author drose
* @date 2002-07-15
*/
/**
*
*/
INLINE double PointerData::
get_x() const {
return _xpos;
}
/**
*
*/
INLINE double PointerData::
get_y() const {
return _ypos;
}
/**
* If this returns false, the pointer is not currently present in the window
* and the values returned by get_x() and get_y() may not be meaningful.
*/
INLINE bool PointerData::
get_in_window() const {
return _in_window;
}
/**
* Returns a unique identifier for this pointer. This is for tracking
* individual fingers. This value should not be assumed to have a specific
* meaning other than that there will not be two different pointers active
* simultaneously with the same identifier.
*/
INLINE int PointerData::
get_id() const {
return _id;
}
/**
* Returns the type of pointing device.
*/
INLINE PointerType PointerData::
get_type() const {
return _type;
}
/**
* Returns the pressure of the pointer. For mice, this will be 1.0 if any
* button is pressed, 0.0 otherwise.
*/
INLINE double PointerData::
get_pressure() const {
return _pressure;
}
INLINE std::ostream &operator << (std::ostream &out, const PointerData &md) {
md.output(out);
return out;
}