Struct cosmic_text::BorrowedWithFontSystem
source · pub struct BorrowedWithFontSystem<'a, T> { /* private fields */ }Expand description
A value borrowed together with an FontSystem
Implementations§
source§impl<'a> BorrowedWithFontSystem<'a, Buffer>
impl<'a> BorrowedWithFontSystem<'a, Buffer>
sourcepub fn shape_until(&mut self, lines: i32) -> i32
pub fn shape_until(&mut self, lines: i32) -> i32
Pre-shape lines in the buffer, up to lines, return actual number of layout lines
sourcepub fn shape_until_cursor(&mut self, cursor: Cursor)
pub fn shape_until_cursor(&mut self, cursor: Cursor)
Shape lines until cursor, also scrolling to include cursor in view
sourcepub fn shape_until_scroll(&mut self)
pub fn shape_until_scroll(&mut self)
Shape lines until scroll
sourcepub fn line_shape(&mut self, line_i: usize) -> Option<&ShapeLine>
pub fn line_shape(&mut self, line_i: usize) -> Option<&ShapeLine>
Shape the provided line index and return the result
sourcepub fn line_layout(&mut self, line_i: usize) -> Option<&[LayoutLine]>
pub fn line_layout(&mut self, line_i: usize) -> Option<&[LayoutLine]>
Lay out the provided line index and return the result
sourcepub fn set_metrics(&mut self, metrics: Metrics)
pub fn set_metrics(&mut self, metrics: Metrics)
source§impl<'a, T: Edit> BorrowedWithFontSystem<'a, T>
impl<'a, T: Edit> BorrowedWithFontSystem<'a, T>
sourcepub fn buffer_mut(&mut self) -> BorrowedWithFontSystem<'_, Buffer>
pub fn buffer_mut(&mut self) -> BorrowedWithFontSystem<'_, Buffer>
Get the internal Buffer, mutably
sourcepub fn shape_as_needed(&mut self)
pub fn shape_as_needed(&mut self)
Shape lines until scroll, after adjusting scroll if the cursor moved