Struct core_text::font::CTFont

source ·
pub struct CTFont(/* private fields */);

Implementations§

source§

impl CTFont

source§

impl CTFont

source

pub fn copy_to_CGFont(&self) -> CGFont

source

pub fn copy_descriptor(&self) -> CTFontDescriptor

source

pub fn clone_with_font_size(&self, size: f64) -> CTFont

source

pub fn clone_with_symbolic_traits( &self, trait_value: CTFontSymbolicTraits, trait_mask: CTFontSymbolicTraits ) -> Option<CTFont>

source

pub fn get_string_by_name_key( &self, name_key: CTFontNameSpecifier ) -> Option<String>

source

pub fn family_name(&self) -> String

source

pub fn face_name(&self) -> String

source

pub fn unique_name(&self) -> String

source

pub fn postscript_name(&self) -> String

source

pub fn display_name(&self) -> String

source

pub fn style_name(&self) -> String

source

pub fn all_traits(&self) -> CTFontTraits

source

pub fn ascent(&self) -> CGFloat

source

pub fn descent(&self) -> CGFloat

source

pub fn underline_thickness(&self) -> CGFloat

source

pub fn underline_position(&self) -> CGFloat

source

pub fn slant_angle(&self) -> CGFloat

source

pub fn cap_height(&self) -> CGFloat

source

pub fn bounding_box(&self) -> CGRect

source

pub fn leading(&self) -> CGFloat

source

pub fn units_per_em(&self) -> c_uint

source

pub fn x_height(&self) -> CGFloat

source

pub fn pt_size(&self) -> CGFloat

source

pub fn get_glyph_with_name(&self, glyph_name: &str) -> CGGlyph

source

pub unsafe fn get_glyphs_for_characters( &self, characters: *const UniChar, glyphs: *mut CGGlyph, count: CFIndex ) -> bool

source

pub unsafe fn get_advances_for_glyphs( &self, orientation: CTFontOrientation, glyphs: *const CGGlyph, advances: *mut CGSize, count: CFIndex ) -> f64

source

pub unsafe fn get_vertical_translations_for_glyphs( &self, orientation: CTFontOrientation, glyphs: *const CGGlyph, translations: *mut CGSize, count: CFIndex )

source

pub fn get_font_table(&self, tag: u32) -> Option<CFData>

source

pub fn get_available_font_tables(&self) -> Option<CFArray<CTFontTableTag>>

source

pub fn get_bounding_rects_for_glyphs( &self, orientation: CTFontOrientation, glyphs: &[CGGlyph] ) -> CGRect

source

pub fn draw_glyphs( &self, glyphs: &[CGGlyph], positions: &[CGPoint], context: CGContext )

source

pub fn url(&self) -> Option<CFURL>

source

pub fn get_variation_axes( &self ) -> Option<CFArray<CFDictionary<CFString, CFType>>>

source

pub fn create_path_for_glyph( &self, glyph: CGGlyph, matrix: &CGAffineTransform ) -> Result<CGPath, ()>

source

pub fn glyph_count(&self) -> CFIndex

Trait Implementations§

source§

impl Clone for CTFont

source§

fn clone(&self) -> CTFont

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 CTFont

source§

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

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

impl Drop for CTFont

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl PartialEq<CTFont> for CTFont

source§

fn eq(&self, other: &CTFont) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TCFType for CTFont

§

type Ref = *const __CTFont

The reference type wrapped inside this type.
source§

fn as_concrete_TypeRef(&self) -> CTFontRef

Returns the object as its concrete TypeRef.
source§

unsafe fn wrap_under_get_rule(reference: CTFontRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Get Rule”. The reference count is bumped.
source§

fn as_CFTypeRef(&self) -> CFTypeRef

Returns the object as a raw CFTypeRef. The reference count is not adjusted.
source§

unsafe fn wrap_under_create_rule(reference: CTFontRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Create Rule”. The reference count is not bumped.
source§

fn type_id() -> CFTypeID

Returns the type ID for this class.
source§

fn as_CFType(&self) -> CFType

Returns the object as a wrapped CFType. The reference count is incremented by one.
source§

fn into_CFType(self) -> CFTypewhere Self: Sized,

Returns the object as a wrapped CFType. Consumes self and avoids changing the reference count.
source§

fn retain_count(&self) -> isize

Returns the reference count of the object. It is unwise to do anything other than test whether the return value of this method is greater than zero.
source§

fn type_of(&self) -> usize

Returns the type ID of this object.
source§

fn show(&self)

Writes a debugging version of this object on standard error.
source§

fn instance_of<OtherCFType>(&self) -> boolwhere OtherCFType: TCFType,

Returns true if this value is an instance of another type.
source§

impl<'a> ToVoid<CTFont> for &'a CTFont

source§

impl ToVoid<CTFont> for CTFont

source§

impl ToVoid<CTFont> for CTFontRef

source§

impl ConcreteCFType for CTFont

source§

impl Eq for CTFont

source§

impl Send for CTFont

source§

impl Sync for CTFont

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> FromMutVoid for Twhere T: TCFType,

source§

unsafe fn from_mut_void<'a>(x: *mut c_void) -> ItemMutRef<'a, T>

source§

impl<T> FromVoid for Twhere T: TCFType,

source§

unsafe fn from_void<'a>(x: *const c_void) -> ItemRef<'a, T>

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> 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, 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, 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.