Package org.gnome.gtk
Interface DrawingArea.ResizeCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
DrawingArea
- 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
ResizeCallback
callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
run
(int width, int height) Emitted once when the widget is realized, and then each time the widget is changed while realized.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int, int)
method.default void
upcall
(MemorySegment sourceDrawingArea, int width, int height) Theupcall
method is called from native code.
-
Method Details
-
run
void run(int width, int height) Emitted once when the widget is realized, and then each time the widget is changed while realized.This is useful in order to keep state up to date with the widget size, like for instance a backing surface.
-
upcall
Theupcall
method is called from native code. The parameters are marshaled andrun(int, int)
is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int, int)
method.- Specified by:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-