pub struct RepeatingLinearGradientNode { /* private fields */ }
Expand description
A render node for a repeating linear gradient.
GLib type: Shared boxed type with reference counted clone semantics.
Implementations§
Source§impl RepeatingLinearGradientNode
impl RepeatingLinearGradientNode
Sourcepub fn as_ptr(&self) -> *mut GskRepeatingLinearGradientNode
pub fn as_ptr(&self) -> *mut GskRepeatingLinearGradientNode
Return the inner pointer to the underlying C value.
Sourcepub unsafe fn from_glib_ptr_borrow(
ptr: &*mut GskRepeatingLinearGradientNode,
) -> &Self
pub unsafe fn from_glib_ptr_borrow( ptr: &*mut GskRepeatingLinearGradientNode, ) -> &Self
Borrows the underlying C value.
Source§impl RepeatingLinearGradientNode
impl RepeatingLinearGradientNode
Sourcepub fn new(
bounds: &Rect,
start: &Point,
end: &Point,
color_stops: &[ColorStop],
) -> RepeatingLinearGradientNode
pub fn new( bounds: &Rect, start: &Point, end: &Point, color_stops: &[ColorStop], ) -> RepeatingLinearGradientNode
Creates a RenderNode
that will create a repeating linear gradient
from the given points and color stops, and render that into the area
given by @bounds.
§bounds
the rectangle to render the linear gradient into
§start
the point at which the linear gradient will begin
§end
the point at which the linear gradient will finish
§color_stops
a pointer to an array of
ColorStop
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
A new RenderNode
Methods from Deref<Target = RenderNode>§
Sourcepub fn as_ptr(&self) -> *mut GskRenderNode
pub fn as_ptr(&self) -> *mut GskRenderNode
Return the inner pointer to the underlying C value.
pub const NONE: Option<&'static RenderNode> = None
Sourcepub fn draw(&self, cr: &Context)
pub fn draw(&self, cr: &Context)
Draw the contents of @self to the given cairo context.
Typically, you’ll use this function to implement fallback rendering
of RenderNode
s on an intermediate Cairo context, instead of using
the drawing context associated to a gdk::Surface
’s rendering buffer.
For advanced nodes that cannot be supported using Cairo, in particular for nodes doing 3D operations, this function may fail.
§cr
cairo context to draw to
Sourcepub fn node_type(&self) -> RenderNodeType
pub fn node_type(&self) -> RenderNodeType
Sourcepub fn opaque_rect(&self) -> Option<Rect>
Available on crate feature v4_16
only.
pub fn opaque_rect(&self) -> Option<Rect>
v4_16
only.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.
§Returns
true
if part or all of the rendernode is opaque, false
if no
opaque region could be found.
Sourcepub fn serialize(&self) -> Bytes
pub fn serialize(&self) -> Bytes
Serializes the @self 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 GBytes
representing the node.
Sourcepub fn write_to_file(&self, filename: impl AsRef<Path>) -> Result<(), Error>
pub fn write_to_file(&self, filename: impl AsRef<Path>) -> Result<(), Error>
This function is equivalent to calling serialize()
followed by 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.
§filename
the file to save it to.
§Returns
true
if saving was successful
pub fn is<T: IsRenderNode>(&self) -> bool
pub fn type_(&self) -> Type
pub fn downcast_ref<T: IsRenderNode>(&self) -> Option<&T>
Trait Implementations§
Source§impl AsRef<RenderNode> for RepeatingLinearGradientNode
impl AsRef<RenderNode> for RepeatingLinearGradientNode
Source§fn as_ref(&self) -> &RenderNode
fn as_ref(&self) -> &RenderNode
Source§impl Clone for RepeatingLinearGradientNode
impl Clone for RepeatingLinearGradientNode
Source§impl Debug for RepeatingLinearGradientNode
impl Debug for RepeatingLinearGradientNode
Source§impl Deref for RepeatingLinearGradientNode
impl Deref for RepeatingLinearGradientNode
Source§impl<'a> FromValue<'a> for RepeatingLinearGradientNode
Available on crate feature v4_6
only.
impl<'a> FromValue<'a> for RepeatingLinearGradientNode
v4_6
only.Source§type Checker = GenericValueTypeOrNoneChecker<RepeatingLinearGradientNode>
type Checker = GenericValueTypeOrNoneChecker<RepeatingLinearGradientNode>
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Value
. Read moreSource§impl IsRenderNode for RepeatingLinearGradientNode
impl IsRenderNode for RepeatingLinearGradientNode
const NODE_TYPE: RenderNodeType = RenderNodeType::RepeatingLinearGradientNode
fn upcast(self) -> RenderNode
fn upcast_ref(&self) -> &RenderNode
Source§impl StaticType for RepeatingLinearGradientNode
impl StaticType for RepeatingLinearGradientNode
Source§fn static_type() -> Type
fn static_type() -> Type
Self
.Source§impl ToValue for RepeatingLinearGradientNode
Available on crate feature v4_6
only.
impl ToValue for RepeatingLinearGradientNode
v4_6
only.Source§impl ToValueOptional for RepeatingLinearGradientNode
Available on crate feature v4_6
only.
impl ToValueOptional for RepeatingLinearGradientNode
v4_6
only.Source§fn to_value_optional(s: Option<&Self>) -> Value
fn to_value_optional(s: Option<&Self>) -> Value
Option
to a Value
.Source§impl ValueType for RepeatingLinearGradientNode
Available on crate feature v4_6
only.
impl ValueType for RepeatingLinearGradientNode
v4_6
only.Source§type Type = RepeatingLinearGradientNode
type Type = RepeatingLinearGradientNode
Type
from. Read moreAuto Trait Implementations§
impl Freeze for RepeatingLinearGradientNode
impl RefUnwindSafe for RepeatingLinearGradientNode
impl !Send for RepeatingLinearGradientNode
impl !Sync for RepeatingLinearGradientNode
impl Unpin for RepeatingLinearGradientNode
impl UnwindSafe for RepeatingLinearGradientNode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)