Gjsify LogoGjsify Logo

A render node for a conic gradient.

Hierarchy

Index

Constructors

  • Creates a GskRenderNode that draws a conic gradient.

    The conic gradient starts around center in the direction of rotation. A rotation of 0 means that the gradient points up. Color stops are then added clockwise.

    Parameters

    • bounds: Graphene.Rect

      the bounds of the node

    • center: Graphene.Point

      the center of the gradient

    • rotation: number

      the rotation of the gradient in degrees

    • color_stops: ColorStop[]

      a pointer to an array of GskColorStop defining the gradient. The offsets of all color stops must be increasing. The first stop's offset must be >= 0 and the last stop's offset must be <= 1.

    Returns ConicGradientNode

Properties

name: string

Methods

  • Draw the contents of node to the given cairo context.

    Typically, you'll use this function to implement fallback rendering of GskRenderNodes on an intermediate Cairo context, instead of using the drawing context associated to a [classGdk.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

    Returns void

  • get_angle(): number
  • Retrieves the angle for the gradient in radians, normalized in [0, 2 * PI].

    The angle is starting at the top and going clockwise, as expressed in the css specification:

    angle = 90 - gsk_conic_gradient_node_get_rotation()
    

    Returns number

  • get_n_color_stops(): number
  • get_rotation(): number
  • Serializes the node 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 Bytes

  • unref(): void
  • write_to_file(filename: string): boolean
  • This function is equivalent to calling [methodGsk.RenderNode.serialize] followed by [funcGLib.file_set_contents].

    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: string

      the file to save it to.

    Returns boolean

  • Creates a GskRenderNode that draws a conic gradient.

    The conic gradient starts around center in the direction of rotation. A rotation of 0 means that the gradient points up. Color stops are then added clockwise.

    Parameters

    • bounds: Graphene.Rect

      the bounds of the node

    • center: Graphene.Point

      the center of the gradient

    • rotation: number

      the rotation of the gradient in degrees

    • color_stops: ColorStop[]

      a pointer to an array of GskColorStop defining the gradient. The offsets of all color stops must be increasing. The first stop's offset must be >= 0 and the last stop's offset must be <= 1.

    Returns ConicGradientNode

Legend

  • Module
  • Object literal
  • Variable
  • Function
  • Function with type parameter
  • Index signature
  • Type alias
  • Type alias with type parameter
  • Enumeration
  • Enumeration member
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Constructor
  • Property
  • Method
  • Index signature
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Accessor
  • Index signature
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Protected property
  • Protected method
  • Protected accessor
  • Private property
  • Private method
  • Private accessor
  • Static property
  • Static method