Struct zng_ext_font::font_features::FontFeatures

source ·
pub struct FontFeatures(/* private fields */);
Expand description

Font features configuration.

Implementations§

source§

impl FontFeatures

source

pub fn new() -> FontFeatures

New default.

source

pub fn builder() -> FontFeaturesBuilder

New builder.

source

pub fn set_all( &mut self, other: &FontFeatures, ) -> Vec<(FontFeatureName, Option<u32>)>

Set or override the features of self from other.

Returns the previous state of all affected names.

source

pub fn restore(&mut self, prev: Vec<(FontFeatureName, Option<u32>)>)

Restore feature states that where overridden in set_all.

source

pub fn feature(&mut self, name: FontFeatureName) -> FontFeature<'_>

Access to the named feature.

source

pub fn feature_set( &mut self, names: &'static [FontFeatureName], ) -> FontFeatureSet<'_>

Access to a set of named features that are managed together.

§Panics

If names has less than 2 names.

source

pub fn feature_exclusive_set<S: FontFeatureExclusiveSetState>( &mut self, ) -> FontFeatureExclusiveSet<'_, S>

Access to a set of named features where only one of the features can be enabled at a time.

§Panics

If S::names() has less than 2 names.

source

pub fn feature_exclusive_sets<S: FontFeatureExclusiveSetsState>( &mut self, ) -> FontFeatureExclusiveSets<'_, S>

Access to a set of named features where only one or more features can be enabled but each combination represents a single distinct state.

§Panics

If S::names() has less than 2 entries.

source

pub fn finalize(&self) -> RFontFeatures

Generate the harfbuzz font features.

source§

impl FontFeatures

source

pub fn caps(&mut self) -> FontFeatureExclusiveSets<'_, CapsVariant>

Font capital glyph variants.

See CapsVariant for more details.

source

pub fn kerning(&mut self) -> FontFeature<'_>

Allow glyphs boundaries to overlap for a more pleasant reading.

This corresponds to the kern feature.

Auto always activates these kerning.

source

pub fn common_lig(&mut self) -> FontFeatureSet<'_>

The most common ligatures, like for fi, ffi, th or similar.

This corresponds to OpenType liga and clig features.

Auto always activates these ligatures.

source

pub fn discretionary_lig(&mut self) -> FontFeature<'_>

Ligatures specific to the font, usually decorative.

This corresponds to OpenType dlig feature.

Auto usually disables these ligatures.

source

pub fn historical_lig(&mut self) -> FontFeature<'_>

Ligatures used historically, in old books, like the German tz digraph being displayed ß.

This corresponds to OpenType hlig feature.

Auto usually disables these ligatures.

source

pub fn contextual_alt(&mut self) -> FontFeature<'_>

Alternative letters that adapt to their surrounding letters.

This corresponds to OpenType calt feature.

Auto usually activates this feature.

source

pub fn ordinal(&mut self) -> FontFeature<'_>

Force usage of ordinal special glyphs, 1a becomes 1ª.

This corresponds to OpenType ordn feature.

Auto deactivates this feature.

source

pub fn slashed_zero(&mut self) -> FontFeature<'_>

Force use of a slashed zero for 0.

This corresponds to OpenType zero feature.

Auto deactivates this feature.

source

pub fn swash(&mut self) -> FontFeatureSet<'_>

Use swashes flourish style.

Fonts can have alternative swash styles, you can select then by enabling a number.

This corresponds to OpenType swsh and cswh feature.

Auto does not use swashes.

source

pub fn stylistic(&mut self) -> FontFeature<'_>

Use stylistic alternatives.

Fonts can have multiple alternative styles, you can select then by enabling a number.

This corresponds to OpenType salt feature.

Auto does not use alternative styles.

source

pub fn historical_forms(&mut self) -> FontFeature<'_>

Use glyphs that were common in the past but not today.

This corresponds to OpenType hist feature.

Auto does not use alternative styles.

source

pub fn ornaments(&mut self) -> FontFeature<'_>

Replace letter with fleurons, dingbats and border elements.

Fonts can have multiple alternative styles, you can select then by enabling a number.

This corresponds to OpenType ornm feature.

Auto does not enable this by default, but some fonts are purely dingbats glyphs.

source

pub fn annotation(&mut self) -> FontFeature<'_>

Font annotation alternatives, like circled digits or inverted characters.

Fonts can have multiple alternative styles, you can select then by enabling a number.

This corresponds to OpenType nalt feature.

Auto does not use alternative styles.

source

pub fn numeric(&mut self) -> FontFeatureExclusiveSet<'_, NumVariant>

Font numeric glyph variants.

See NumVariant for more details.

source

pub fn num_spacing(&mut self) -> FontFeatureExclusiveSet<'_, NumSpacing>

Font numeric spacing variants.

See NumSpacing for more details.

source

pub fn num_fraction(&mut self) -> FontFeatureExclusiveSet<'_, NumFraction>

Font numeric spacing variants.

See NumSpacing for more details.

source

pub fn style_set(&mut self) -> FontFeatureExclusiveSet<'_, FontStyleSet>

Font stylistic alternatives for sets of characters.

See FontStyleSet for more details.

source

pub fn char_variant(&mut self) -> FontFeatureExclusiveSet<'_, CharVariant>

Font stylistic alternatives for individual characters.

See CharVariant for more details.

source

pub fn position(&mut self) -> FontFeatureExclusiveSet<'_, FontPosition>

Font sub/super script alternatives.

See FontPosition for more details.

source

pub fn ruby(&mut self) -> FontFeature<'_>

Force the use of ruby (rubi) glyph variants.

This corresponds to OpenType ruby feature.

Auto does not force the use of ruby variants.

source

pub fn jp_variant(&mut self) -> FontFeatureExclusiveSet<'_, JpVariant>

Japanese logographic set selection.

See JpVariant for more details.

source

pub fn horizontal_kana(&mut self) -> FontFeature<'_>

Use kana glyphs optimized for horizontal writing.

This corresponds to OpenType hkna feature.

source

pub fn cn_variant(&mut self) -> FontFeatureExclusiveSet<'_, CnVariant>

Chinese logographic set selection.

See CnVariant for more details.

source

pub fn ea_width(&mut self) -> FontFeatureExclusiveSet<'_, EastAsianWidth>

East Asian figure width control

See EastAsianWidth for more details.

Trait Implementations§

source§

impl Clone for FontFeatures

source§

fn clone(&self) -> FontFeatures

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 FontFeatures

source§

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

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

impl Default for FontFeatures

source§

fn default() -> FontFeatures

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for FontFeatures

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for FontFeatures

source§

fn eq(&self, other: &FontFeatures) -> 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 Serialize for FontFeatures

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for FontFeatures

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> AnyEq for T
where T: Any + PartialEq,

§

fn equals(&self, other: &(dyn Any + 'static)) -> bool

§

fn as_any(&self) -> &(dyn Any + 'static)

source§

impl<T> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
source§

fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool

Gets if self equals other.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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> FsChangeNote for T
where T: Debug + Any + Send + Sync,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access any.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> IpcValue for T
where T: Debug + Serialize + for<'d> Deserialize<'d> + Send + 'static,

§

impl<T> MaybeSendSync for T

source§

impl<T> StateValue for T
where T: Any + Send + Sync,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,