Struct cairo::Context

source ·
#[repr(transparent)]
pub struct Context(_);

Implementations§

source§

impl Context

source

pub unsafe fn from_raw_none(ptr: *mut cairo_t) -> Context

source

pub unsafe fn from_raw_borrow(ptr: *mut cairo_t) -> Borrowed<Context>

source

pub unsafe fn from_raw_full(ptr: *mut cairo_t) -> Context

source

pub fn to_raw_none(&self) -> *mut cairo_t

source

pub fn status(&self) -> Result<(), Error>

source

pub fn new(target: impl AsRef<Surface>) -> Result<Context, Error>

source

pub fn save(&self) -> Result<(), Error>

source

pub fn restore(&self) -> Result<(), Error>

source

pub fn target(&self) -> Surface

source

pub fn push_group(&self)

source

pub fn push_group_with_content(&self, content: Content)

source

pub fn pop_group(&self) -> Result<Pattern, Error>

source

pub fn pop_group_to_source(&self) -> Result<(), Error>

source

pub fn group_target(&self) -> Surface

source

pub fn set_source_rgb(&self, red: f64, green: f64, blue: f64)

source

pub fn set_source_rgba(&self, red: f64, green: f64, blue: f64, alpha: f64)

source

pub fn set_source(&self, source: impl AsRef<Pattern>) -> Result<(), Error>

source

pub fn source(&self) -> Pattern

source

pub fn set_source_surface( &self, surface: impl AsRef<Surface>, x: f64, y: f64 ) -> Result<(), Error>

source

pub fn set_antialias(&self, antialias: Antialias)

source

pub fn antialias(&self) -> Antialias

source

pub fn set_dash(&self, dashes: &[f64], offset: f64)

source

pub fn dash_count(&self) -> i32

source

pub fn dash(&self) -> (Vec<f64>, f64)

source

pub fn dash_dashes(&self) -> Vec<f64>

source

pub fn dash_offset(&self) -> f64

source

pub fn set_fill_rule(&self, fill_rule: FillRule)

source

pub fn fill_rule(&self) -> FillRule

source

pub fn set_line_cap(&self, arg: LineCap)

source

pub fn line_cap(&self) -> LineCap

source

pub fn set_line_join(&self, arg: LineJoin)

source

pub fn line_join(&self) -> LineJoin

source

pub fn set_line_width(&self, arg: f64)

source

pub fn line_width(&self) -> f64

source

pub fn set_hairline(&self, set_hairline: bool)

source

pub fn hairline(&self) -> bool

source

pub fn set_miter_limit(&self, arg: f64)

source

pub fn miter_limit(&self) -> f64

source

pub fn set_operator(&self, op: Operator)

source

pub fn operator(&self) -> Operator

source

pub fn set_tolerance(&self, arg: f64)

source

pub fn tolerance(&self) -> f64

source

pub fn clip(&self)

source

pub fn clip_preserve(&self)

source

pub fn clip_extents(&self) -> Result<(f64, f64, f64, f64), Error>

source

pub fn in_clip(&self, x: f64, y: f64) -> Result<bool, Error>

source

pub fn reset_clip(&self)

source

pub fn copy_clip_rectangle_list(&self) -> Result<RectangleList, Error>

source

pub fn fill(&self) -> Result<(), Error>

source

pub fn fill_preserve(&self) -> Result<(), Error>

source

pub fn fill_extents(&self) -> Result<(f64, f64, f64, f64), Error>

source

pub fn in_fill(&self, x: f64, y: f64) -> Result<bool, Error>

source

pub fn mask(&self, pattern: impl AsRef<Pattern>) -> Result<(), Error>

source

pub fn mask_surface( &self, surface: impl AsRef<Surface>, x: f64, y: f64 ) -> Result<(), Error>

source

pub fn paint(&self) -> Result<(), Error>

source

pub fn paint_with_alpha(&self, alpha: f64) -> Result<(), Error>

source

pub fn stroke(&self) -> Result<(), Error>

source

pub fn stroke_preserve(&self) -> Result<(), Error>

source

pub fn stroke_extents(&self) -> Result<(f64, f64, f64, f64), Error>

source

pub fn in_stroke(&self, x: f64, y: f64) -> Result<bool, Error>

source

pub fn copy_page(&self) -> Result<(), Error>

source

pub fn show_page(&self) -> Result<(), Error>

source

pub fn reference_count(&self) -> u32

source

pub fn translate(&self, tx: f64, ty: f64)

source

pub fn scale(&self, sx: f64, sy: f64)

source

pub fn rotate(&self, angle: f64)

source

pub fn transform(&self, matrix: Matrix)

source

pub fn set_matrix(&self, matrix: Matrix)

source

pub fn matrix(&self) -> Matrix

source

pub fn identity_matrix(&self)

source

pub fn user_to_device(&self, x: f64, y: f64) -> (f64, f64)

source

pub fn user_to_device_distance( &self, dx: f64, dy: f64 ) -> Result<(f64, f64), Error>

source

pub fn device_to_user(&self, x: f64, y: f64) -> Result<(f64, f64), Error>

source

pub fn device_to_user_distance( &self, dx: f64, dy: f64 ) -> Result<(f64, f64), Error>

source

pub fn select_font_face( &self, family: &str, slant: FontSlant, weight: FontWeight )

source

pub fn set_font_size(&self, size: f64)

source

pub fn set_font_matrix(&self, matrix: Matrix)

source

pub fn font_matrix(&self) -> Matrix

source

pub fn set_font_options(&self, options: &FontOptions)

source

pub fn font_options(&self) -> Result<FontOptions, Error>

source

pub fn set_font_face(&self, font_face: &FontFace)

source

pub fn font_face(&self) -> FontFace

source

pub fn set_scaled_font(&self, scaled_font: &ScaledFont)

source

pub fn scaled_font(&self) -> ScaledFont

source

pub fn show_text(&self, text: &str) -> Result<(), Error>

source

pub fn show_glyphs(&self, glyphs: &[Glyph]) -> Result<(), Error>

source

pub fn show_text_glyphs( &self, text: &str, glyphs: &[Glyph], clusters: &[TextCluster], cluster_flags: TextClusterFlags ) -> Result<(), Error>

source

pub fn font_extents(&self) -> Result<FontExtents, Error>

source

pub fn text_extents(&self, text: &str) -> Result<TextExtents, Error>

source

pub fn glyph_extents(&self, glyphs: &[Glyph]) -> Result<TextExtents, Error>

source

pub fn copy_path(&self) -> Result<Path, Error>

source

pub fn copy_path_flat(&self) -> Result<Path, Error>

source

pub fn append_path(&self, path: &Path)

source

pub fn has_current_point(&self) -> Result<bool, Error>

source

pub fn current_point(&self) -> Result<(f64, f64), Error>

source

pub fn new_path(&self)

source

pub fn new_sub_path(&self)

source

pub fn close_path(&self)

source

pub fn arc(&self, xc: f64, yc: f64, radius: f64, angle1: f64, angle2: f64)

source

pub fn arc_negative( &self, xc: f64, yc: f64, radius: f64, angle1: f64, angle2: f64 )

source

pub fn curve_to(&self, x1: f64, y1: f64, x2: f64, y2: f64, x3: f64, y3: f64)

source

pub fn line_to(&self, x: f64, y: f64)

source

pub fn move_to(&self, x: f64, y: f64)

source

pub fn rectangle(&self, x: f64, y: f64, width: f64, height: f64)

source

pub fn text_path(&self, str_: &str)

source

pub fn glyph_path(&self, glyphs: &[Glyph])

source

pub fn rel_curve_to( &self, dx1: f64, dy1: f64, dx2: f64, dy2: f64, dx3: f64, dy3: f64 )

source

pub fn rel_line_to(&self, dx: f64, dy: f64)

source

pub fn rel_move_to(&self, dx: f64, dy: f64)

source

pub fn path_extents(&self) -> Result<(f64, f64, f64, f64), Error>

source

pub fn tag_begin(&self, tag_name: &str, attributes: &str)

source

pub fn tag_end(&self, tag_name: &str)

Trait Implementations§

source§

impl Clone for Context

source§

fn clone(&self) -> Context

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Context

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Context

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Context

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<Context> for Value

source§

fn from(v: Context) -> Self

Converts to this type from the input type.
source§

impl FromGlibPtrBorrow<*mut cairo_t> for Context

source§

unsafe fn from_glib_borrow(ptr: *mut cairo_t) -> Borrowed<Context>

Safety Read more
source§

impl FromGlibPtrFull<*mut cairo_t> for Context

source§

unsafe fn from_glib_full(ptr: *mut cairo_t) -> Context

Safety Read more
source§

impl FromGlibPtrNone<*mut cairo_t> for Context

source§

unsafe fn from_glib_none(ptr: *mut cairo_t) -> Context

Safety Read more
source§

impl<'a> FromValue<'a> for &'a Context

§

type Checker = GenericValueTypeOrNoneChecker<&'a Context>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl<'a> FromValue<'a> for Context

§

type Checker = GenericValueTypeOrNoneChecker<Context>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl IntoGlibPtr<*mut cairo_t> for Context

source§

unsafe fn into_glib_ptr(self) -> *mut cairo_t

Transfer: full.
source§

impl StaticType for Context

source§

fn static_type() -> Type

Returns the type identifier of Self.
source§

impl<'a> ToGlibPtr<'a, *mut cairo_t> for &'a Context

§

type Storage = PhantomData<&'a Context>

source§

fn to_glib_none(&self) -> Stash<'a, *mut cairo_t, &'a Context>

Transfer: none. Read more
source§

fn to_glib_full(&self) -> *mut cairo_t

Transfer: full. Read more
source§

fn to_glib_container(&'a self) -> Stash<'a, P, Self>

Transfer: container. Read more
source§

impl ToValue for Context

source§

fn to_value(&self) -> Value

Convert a value to a Value.
source§

fn value_type(&self) -> Type

Returns the type identifer of self. Read more
source§

impl ToValueOptional for Context

source§

fn to_value_optional(s: Option<&Self>) -> Value

Convert an Option to a Value.
source§

impl ValueType for Context

§

type Type = Context

Type to get the Type from. Read more
source§

impl ValueTypeOptional for Context

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoClosureReturnValue for Twhere T: Into<Value>,

source§

impl<T> StaticTypeExt for Twhere T: StaticType,

source§

fn ensure_type()

Ensures that the type has been registered with the type system.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T> TryFromClosureReturnValue for Twhere T: for<'a> FromValue<'a> + StaticType + 'static,

source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<'a, T, C, E> FromValueOptional<'a> for Twhere T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,