Package org.gnome.gtk
Interface GestureClick.ReleasedCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
GestureClick
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface declaration of the
ReleasedCallback
callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
run
(int nPress, double x, double y) Emitted when a button or touch is released.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int, double, double)
method.default void
upcall
(MemorySegment sourceGestureClick, int nPress, double x, double y) Theupcall
method is called from native code.
-
Method Details
-
run
void run(int nPress, double x, double y) Emitted when a button or touch is released.nPress
will report the number of press that is paired to this event, note thatGtk.GestureClick::stopped
may have been emitted between the press and its release,nPress
will only start over at the next press. -
upcall
Theupcall
method is called from native code. The parameters are marshaled andrun(int, double, double)
is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int, double, double)
method.- Specified by:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-