Struct font_kit::sources::core_text::CoreTextSource
source · pub struct CoreTextSource;
Expand description
A source that contains the installed fonts on macOS.
Implementations§
source§impl CoreTextSource
impl CoreTextSource
sourcepub fn new() -> CoreTextSource
pub fn new() -> CoreTextSource
Opens a new connection to the system font source.
(Note that this doesn’t actually do any Mach communication to the font server; that is done lazily on demand by the Core Text/Core Graphics API.)
sourcepub fn all_fonts(&self) -> Result<Vec<Handle>, SelectionError>
pub fn all_fonts(&self) -> Result<Vec<Handle>, SelectionError>
Returns paths of all fonts installed on the system.
sourcepub fn all_families(&self) -> Result<Vec<String>, SelectionError>
pub fn all_families(&self) -> Result<Vec<String>, SelectionError>
Returns the names of all families installed on the system.
sourcepub fn select_family_by_name(
&self,
family_name: &str,
) -> Result<FamilyHandle, SelectionError>
pub fn select_family_by_name( &self, family_name: &str, ) -> Result<FamilyHandle, SelectionError>
Looks up a font family by name and returns the handles of all the fonts in that family.
sourcepub fn select_by_postscript_name(
&self,
postscript_name: &str,
) -> Result<Handle, SelectionError>
pub fn select_by_postscript_name( &self, postscript_name: &str, ) -> Result<Handle, SelectionError>
Selects a font by PostScript name, which should be a unique identifier.
sourcepub fn select_best_match(
&self,
family_names: &[FamilyName],
properties: &Properties,
) -> Result<Handle, SelectionError>
pub fn select_best_match( &self, family_names: &[FamilyName], properties: &Properties, ) -> Result<Handle, SelectionError>
Performs font matching according to the CSS Fonts Level 3 specification and returns the handle.
Trait Implementations§
source§impl Source for CoreTextSource
impl Source for CoreTextSource
source§fn all_fonts(&self) -> Result<Vec<Handle>, SelectionError>
fn all_fonts(&self) -> Result<Vec<Handle>, SelectionError>
Returns paths of all fonts installed on the system.
source§fn all_families(&self) -> Result<Vec<String>, SelectionError>
fn all_families(&self) -> Result<Vec<String>, SelectionError>
Returns the names of all families installed on the system.
source§fn select_family_by_name(
&self,
family_name: &str,
) -> Result<FamilyHandle, SelectionError>
fn select_family_by_name( &self, family_name: &str, ) -> Result<FamilyHandle, SelectionError>
Looks up a font family by name and returns the handles of all the fonts in that family.
source§fn select_by_postscript_name(
&self,
postscript_name: &str,
) -> Result<Handle, SelectionError>
fn select_by_postscript_name( &self, postscript_name: &str, ) -> Result<Handle, SelectionError>
Selects a font by PostScript name, which should be a unique identifier. Read more
source§fn as_any(&self) -> &dyn Any
fn as_any(&self) -> &dyn Any
Accesses this
Source
as Any
, which allows downcasting back to a concrete type from a
trait object.source§fn as_mut_any(&mut self) -> &mut dyn Any
fn as_mut_any(&mut self) -> &mut dyn Any
Accesses this
Source
as Any
, which allows downcasting back to a concrete type from a
trait object.source§fn select_best_match(
&self,
family_names: &[FamilyName],
properties: &Properties,
) -> Result<Handle, SelectionError>
fn select_best_match( &self, family_names: &[FamilyName], properties: &Properties, ) -> Result<Handle, SelectionError>
Performs font matching according to the CSS Fonts Level 3 specification and returns the
handle.
Auto Trait Implementations§
impl Freeze for CoreTextSource
impl RefUnwindSafe for CoreTextSource
impl Send for CoreTextSource
impl Sync for CoreTextSource
impl Unpin for CoreTextSource
impl UnwindSafe for CoreTextSource
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
Mutably borrows from an owned value. Read more