Method
GdkDeviceget_position
since: 3.0
Declaration [src]
void
gdk_device_get_position (
GdkDevice* device,
GdkScreen** screen,
gint* x,
gint* y
)
Description [src]
Gets the current location of device
. As a slave device
coordinates are those of its master pointer, This function
may not be called on devices of type GDK_DEVICE_TYPE_SLAVE
,
unless there is an ongoing grab on them, see gdk_device_grab().
Available since: 3.0
Parameters
screen
-
Type:
GdkScreen
Location to store the
GdkScreen
thedevice
is on, orNULL
.The argument will be set by the function. The argument can be NULL
.The data is owned by the instance. x
-
Type:
gint*
Location to store root window X coordinate of
device
, orNULL
.The argument will be set by the function. The argument can be NULL
. y
-
Type:
gint*
Location to store root window Y coordinate of
device
, orNULL
.The argument will be set by the function. The argument can be NULL
.