Class RenderNode
- All Implemented Interfaces:
Proxy
- Direct Known Subclasses:
BlendNode,BlurNode,BorderNode,CairoNode,ClipNode,ColorMatrixNode,ColorNode,ComponentTransferNode,ConicGradientNode,ContainerNode,CrossFadeNode,DebugNode,FillNode,GLShaderNode,InsetShadowNode,LinearGradientNode,MaskNode,OpacityNode,OutsetShadowNode,RadialGradientNode,RenderNode.RenderNode$Impl,RepeatingLinearGradientNode,RepeatingRadialGradientNode,RepeatNode,RoundedClipNode,ShadowNode,StrokeNode,SubsurfaceNode,TextNode,TextureNode,TextureScaleNode,TransformNode
Renderer.
Each node has a parent, except the top-level node; each node may have children nodes.
Each node has an associated drawing surface, which has the size of the rectangle set when creating it.
Render nodes are meant to be transient; once they have been associated
to a Renderer it's safe to release any reference you have on
them. All RenderNodes are immutable, you can only specify their
properties during construction.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classThe RenderNode$Impl type represents a native instance of the abstract RenderNode class. -
Constructor Summary
ConstructorsConstructorDescriptionRenderNode(MemorySegment address) Create a RenderNode proxy instance for the provided memory address. -
Method Summary
Modifier and TypeMethodDescriptionprotected RenderNodeasParent()Returns this instance as if it were its parent type.static @Nullable RenderNodedeserialize(byte[] bytes, @Nullable ParseErrorFunc errorFunc) Loads data previously created viaserialize().voiddraw(org.freedesktop.cairo.Context cr) Draws the contents of a render node on a cairo context.voidRetrieves the boundaries of thenode.Returns the type of the render node.booleangetOpaqueRect(Rect outOpaque) Gets an opaque rectangle inside the node that GTK can determine to be fully opaque.static @Nullable TypegetType()Get the GType of the RenderNode classref()Acquires a reference on the givenGskRenderNode.byte[]Serializes the this RenderNode for later deserialization via gsk_render_node_deserialize().voidunref()Releases a reference on the givenGskRenderNode.booleanwriteToFile(String filename) This function is equivalent to callingserialize()followed byGLib.fileSetContents(java.lang.String, byte[]).Methods inherited from class org.gnome.gobject.TypeInstance
callParent, callParent, cast, getMemoryLayout, getPrivate, readGClass, writeGClassMethods inherited from class org.javagi.base.ProxyInstance
equals, handle, hashCode
-
Constructor Details
-
RenderNode
Create a RenderNode proxy instance for the provided memory address.- Parameters:
address- the memory address of the native object
-
-
Method Details
-
getType
-
asParent
Returns this instance as if it were its parent type. This is mostly synonymous to the Javasuperkeyword, but will set the native typeclass function pointers to the parent type. When overriding a native virtual method in Java, "chaining up" withsuper.methodName()doesn't work, because it invokes the overridden function pointer again. To chain up, callasParent().methodName(). This will call the native function pointer of this virtual method in the typeclass of the parent type. -
deserialize
Loads data previously created viaserialize().For a discussion of the supported format, see that function.
- Parameters:
bytes- the bytes containing the dataerrorFunc- callback on parsing errors- Returns:
- a new render node
-
draw
public void draw(org.freedesktop.cairo.Context cr) Draws the contents of a render node on a cairo context.Typically, you'll use this function to implement fallback rendering of render nodes on an intermediate Cairo context, instead of using the drawing context associated to a
Surface's rendering buffer.For advanced nodes that cannot be supported using Cairo, in particular for nodes doing 3D operations, this function may fail.
- Parameters:
cr- cairo context to draw to
-
getBounds
Retrieves the boundaries of thenode.The node will not draw outside of its boundaries.
- Parameters:
bounds- return location for the boundaries
-
getNodeType
Returns the type of the render node.- Returns:
- the type of this RenderNode
-
getOpaqueRect
Gets an opaque rectangle inside the node that GTK can determine to be fully opaque.There is no guarantee that this is indeed the largest opaque rectangle or that regions outside the rectangle are not opaque. This function is a best effort with that goal.
The rectangle will be fully contained in the bounds of the node.
- Parameters:
outOpaque- return location for the opaque rect- Returns:
- true if part or all of the rendernode is opaque, false if no opaque region could be found.
- Since:
- 4.16
-
ref
Acquires a reference on the givenGskRenderNode.- Returns:
- the render node with an additional reference
-
serialize
public byte[] serialize()Serializes the this RenderNode for later deserialization via gsk_render_node_deserialize(). No guarantees are made about the format used other than that the same version of GTK will be able to deserialize the result of a call to gsk_render_node_serialize() and gsk_render_node_deserialize() will correctly reject files it cannot open that were created with previous versions of GTK.The intended use of this functions is testing, benchmarking and debugging. The format is not meant as a permanent storage format.
- Returns:
- a
GBytesrepresenting the node.
-
unref
public void unref()Releases a reference on the givenGskRenderNode.If the reference was the last, the resources associated to the this RenderNode are freed.
-
writeToFile
This function is equivalent to callingserialize()followed byGLib.fileSetContents(java.lang.String, byte[]).See those two functions for details on the arguments.
It is mostly intended for use inside a debugger to quickly dump a render node to a file for later inspection.
- Parameters:
filename- the file to save it to- Returns:
- true if saving was successful
- Throws:
GErrorException- seeGError
-