Struct egui::PlatformOutput
source · [−]pub struct PlatformOutput {
pub cursor_icon: CursorIcon,
pub open_url: Option<OpenUrl>,
pub copied_text: String,
pub events: Vec<OutputEvent>,
pub mutable_text_under_cursor: bool,
pub text_cursor_pos: Option<Pos2>,
}
Expand description
The non-rendering part of what egui emits each frame.
You can access (and modify) this with crate::Context::output
.
The backend should use this.
Fields
cursor_icon: CursorIcon
Set the cursor to this icon.
open_url: Option<OpenUrl>
If set, open this url.
copied_text: String
If set, put this text in the system clipboard. Ignore if empty.
This is often a response to crate::Event::Copy
or crate::Event::Cut
.
if ui.button("📋").clicked() {
ui.output().copied_text = "some_text".to_string();
}
events: Vec<OutputEvent>
Events that may be useful to e.g. a screen reader.
mutable_text_under_cursor: bool
Is there a mutable TextEdit
under the cursor?
Use by eframe
web to show/hide mobile keyboard and IME agent.
text_cursor_pos: Option<Pos2>
Screen-space position of text edit cursor (used for IME).
Implementations
sourceimpl PlatformOutput
impl PlatformOutput
Trait Implementations
sourceimpl Clone for PlatformOutput
impl Clone for PlatformOutput
sourcefn clone(&self) -> PlatformOutput
fn clone(&self) -> PlatformOutput
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Default for PlatformOutput
impl Default for PlatformOutput
sourcefn default() -> PlatformOutput
fn default() -> PlatformOutput
Returns the “default value” for a type. Read more
sourceimpl PartialEq<PlatformOutput> for PlatformOutput
impl PartialEq<PlatformOutput> for PlatformOutput
sourcefn eq(&self, other: &PlatformOutput) -> bool
fn eq(&self, other: &PlatformOutput) -> bool
impl StructuralPartialEq for PlatformOutput
Auto Trait Implementations
impl RefUnwindSafe for PlatformOutput
impl Send for PlatformOutput
impl Sync for PlatformOutput
impl Unpin for PlatformOutput
impl UnwindSafe for PlatformOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more