Package: gtk

Class gtk:event-controller-motion

Superclasses

gtk:event-controller, gobject:object, common-lisp:standard-object, common-lisp:t

Documented Subclasses

None

Direct Slots

None

Details

The gtk:event-controller-motion object is an event controller meant for situations where you need to track the position of the pointer.

Signal Details

The "enter" signal
lambda (controller x y)    :run-first      
controller
The gtk:event-controller-motion object that received the signal.
x
The double float for the x coordinate
y
The double float for the y coordinate
Signals that the pointer has entered the widget.
The "leave" signal
lambda (controller)    :run-first      
controller
The gtk:event-controller-motion object that received the signal.
Signals that pointer has left the widget.
The "motion" signal
lambda (controller x y)    :run-first      
controller
The gtk:event-controller-motion object that received the signal.
x
The double float for the x coordinate
y
The double float for the y coordinate
Emitted when the pointer moves inside the widget.
 

Returned by

Inherited Slot Access Functions

See also

#2025-07-15