Add text::Wrapping support
Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com>
This commit is contained in:
parent
8d826cc662
commit
f98328f4f1
21 changed files with 160 additions and 30 deletions
|
|
@ -11,7 +11,7 @@ pub use cosmic_text;
|
|||
|
||||
use crate::core::alignment;
|
||||
use crate::core::font::{self, Font};
|
||||
use crate::core::text::Shaping;
|
||||
use crate::core::text::{Shaping, Wrapping};
|
||||
use crate::core::{Color, Pixels, Point, Rectangle, Size, Transformation};
|
||||
|
||||
use once_cell::sync::OnceCell;
|
||||
|
|
@ -306,6 +306,16 @@ pub fn to_shaping(shaping: Shaping) -> cosmic_text::Shaping {
|
|||
}
|
||||
}
|
||||
|
||||
/// Converts some [`Wrapping`] strategy to a [`cosmic_text::Wrap`] strategy.
|
||||
pub fn to_wrap(wrapping: Wrapping) -> cosmic_text::Wrap {
|
||||
match wrapping {
|
||||
Wrapping::None => cosmic_text::Wrap::None,
|
||||
Wrapping::Word => cosmic_text::Wrap::Word,
|
||||
Wrapping::Glyph => cosmic_text::Wrap::Glyph,
|
||||
Wrapping::WordOrGlyph => cosmic_text::Wrap::WordOrGlyph,
|
||||
}
|
||||
}
|
||||
|
||||
/// Converts some [`Color`] to a [`cosmic_text::Color`].
|
||||
pub fn to_color(color: Color) -> cosmic_text::Color {
|
||||
let [r, g, b, a] = color.into_rgba8();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue