pub struct Galley {
pub job: Arc<LayoutJob>,
pub rows: Vec<Row>,
pub elided: bool,
pub rect: Rect,
pub mesh_bounds: Rect,
pub num_vertices: usize,
pub num_indices: usize,
pub pixels_per_point: f32,
}
Expand description
Text that has been laid out, ready for painting.
You can create a Galley
using crate::Fonts::layout_job
;
Needs to be recreated if the underlying font atlas texture changes, which happens under the following conditions:
pixels_per_point
ormax_texture_size
change. These parameters are set incrate::text::Fonts::begin_frame
. When usingegui
they are set fromegui::InputState
and can change at any time.- The atlas has become full. This can happen any time a new glyph is added to the atlas, which in turn can happen any time new text is laid out.
Fields§
§job: Arc<LayoutJob>
The job that this galley is the result of. Contains the original string and style sections.
rows: Vec<Row>
Rows of text, from top to bottom.
The number of characters in all rows sum up to job.text.chars().count()
unless Self::elided
is true
.
Note that a paragraph (a piece of text separated with \n
)
can be split up into multiple rows.
elided: bool
Set to true the text was truncated due to TextWrapping::max_rows
.
rect: Rect
Bounding rect.
rect.top()
is always 0.0.
With LayoutJob::halign
:
Align::LEFT
: rect.left() == 0.0Align::Center
: rect.center() == 0.0Align::RIGHT
: rect.right() == 0.0
mesh_bounds: Rect
Tight bounding box around all the meshes in all the rows. Can be used for culling.
num_vertices: usize
Total number of vertices in all the row meshes.
num_indices: usize
Total number of indices in all the row meshes.
pixels_per_point: f32
The number of physical pixels for each logical point. Since this affects the layout, we keep track of it so that we can warn if this has changed once we get to tessellation.
Implementations§
Source§impl Galley
§Physical positions
impl Galley
§Physical positions
Sourcepub fn pos_from_pcursor(&self, pcursor: PCursor) -> Rect
pub fn pos_from_pcursor(&self, pcursor: PCursor) -> Rect
Returns a 0-width Rect.
Sourcepub fn pos_from_cursor(&self, cursor: &Cursor) -> Rect
pub fn pos_from_cursor(&self, cursor: &Cursor) -> Rect
Returns a 0-width Rect.
Sourcepub fn cursor_from_pos(&self, pos: Vec2) -> Cursor
pub fn cursor_from_pos(&self, pos: Vec2) -> Cursor
Cursor at the given position within the galley
Source§impl Galley
§Cursor conversions
impl Galley
§Cursor conversions
pub fn from_ccursor(&self, ccursor: CCursor) -> Cursor
pub fn from_rcursor(&self, rcursor: RCursor) -> Cursor
pub fn from_pcursor(&self, pcursor: PCursor) -> Cursor
Source§impl Galley
§Cursor positions
impl Galley
§Cursor positions
pub fn cursor_left_one_character(&self, cursor: &Cursor) -> Cursor
pub fn cursor_right_one_character(&self, cursor: &Cursor) -> Cursor
pub fn cursor_up_one_row(&self, cursor: &Cursor) -> Cursor
pub fn cursor_down_one_row(&self, cursor: &Cursor) -> Cursor
pub fn cursor_begin_of_row(&self, cursor: &Cursor) -> Cursor
pub fn cursor_end_of_row(&self, cursor: &Cursor) -> Cursor
Trait Implementations§
impl StructuralPartialEq for Galley
Auto Trait Implementations§
impl Freeze for Galley
impl RefUnwindSafe for Galley
impl Send for Galley
impl Sync for Galley
impl Unpin for Galley
impl UnwindSafe for Galley
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.