Skip to main content

TextViewStyle

Struct TextViewStyle 

Source
pub struct TextViewStyle {
    pub paragraph_gap: Rems,
    pub heading_base_font_size: Pixels,
    pub heading_font_size: Option<Arc<dyn Fn(u8, Pixels) -> Pixels + Send + Sync + 'static>>,
    pub highlight_theme: Arc<HighlightTheme>,
    pub code_block: StyleRefinement,
    pub table: StyleRefinement,
    pub table_head: StyleRefinement,
    pub table_cell: StyleRefinement,
    pub inline_code: HighlightStyle,
    pub is_dark: bool,
}
Expand description

TextViewStyle used to customize the style for super::TextView.

This is the component-level style. It is folded onto the style the active crate::Theme already derived, so a field left at its default keeps the themed value rather than overriding it with a neutral one.

Fields§

§paragraph_gap: Rems

Gap of each paragraphs, default is 1 rem.

§heading_base_font_size: Pixels

Base font size for headings, default is 14px.

§heading_font_size: Option<Arc<dyn Fn(u8, Pixels) -> Pixels + Send + Sync + 'static>>

Function to calculate heading font size based on heading level (1-6).

The first parameter is the heading level (1-6), the second parameter is the base font size.

§highlight_theme: Arc<HighlightTheme>

Highlight theme for code blocks. Default: HighlightTheme::default_light()

§code_block: StyleRefinement

The style refinement for code blocks.

§table: StyleRefinement

Style refinement applied to the table container (the bordered wrapper in wrap mode, the scroll viewport in horizontal-scroll mode).

Set overflow_x: scroll here for adaptive table layout: columns fit their content when space allows, shrink (wrapping cell text) down to a per-column floor when the frame is narrower, and below that the table scrolls horizontally instead of squeezing further, e.g. TextViewStyle::default().table({ let mut s = StyleRefinement::default(); s.overflow.x = Some(Overflow::Scroll); s }).

§table_head: StyleRefinement

Style refinement applied to the header row (the first row) of a table, on top of the table_head background and foreground from the theme.

§table_cell: StyleRefinement

Style refinement applied to each table cell.

With the scroll layout, set white_space: nowrap here to keep cells on a single line — columns then never shrink and the table scrolls as soon as the content is wider than the frame.

§inline_code: HighlightStyle

The highlight style for inline code.

Default is HighlightStyle::default(), the background_color will fallback to cx.theme().accent, if it is None.

§is_dark: bool

Whether content-specific rendering should use dark-mode assets. Whether content-specific rendering should use dark-mode assets.

Implementations§

Source§

impl TextViewStyle

Source

pub fn paragraph_gap(self, gap: Rems) -> Self

Set paragraph gap, default is 1 rem.

Source

pub fn heading_font_size<F>(self, f: F) -> Self
where F: Fn(u8, Pixels) -> Pixels + Send + Sync + 'static,

Set the function that resolves a heading’s font size from its level (1-6) and Self::heading_base_font_size.

Source

pub fn code_block(self, style: StyleRefinement) -> Self

Set style for code blocks.

Source

pub fn inline_code(self, style: HighlightStyle) -> Self

Set style for inline code spans.

Source

pub fn table(self, style: StyleRefinement) -> Self

Set extra style for the table container.

Set overflow_x: scroll on the refinement for adaptive layout: cells wrap as the frame narrows, and once columns reach their minimum width the table scrolls horizontally instead of shrinking further.

Source

pub fn table_head(self, style: StyleRefinement) -> Self

Set extra style for the table header row.

Source

pub fn table_cell(self, style: StyleRefinement) -> Self

Set extra style for each table cell.

With the scroll table layout, white_space: nowrap here keeps cells on a single line and the table scrolls whenever the content is wider than the frame.

Trait Implementations§

Source§

impl Clone for TextViewStyle

Source§

fn clone(&self) -> TextViewStyle

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Default for TextViewStyle

Source§

fn default() -> Self

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

impl PartialEq for TextViewStyle

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more

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
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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

Source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
Source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
Source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

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

Source§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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