Rename epi::App::ui to epi::App::update
This commit is contained in:
parent
defad4ed51
commit
b1022d01c1
6 changed files with 8 additions and 8 deletions
|
@ -293,7 +293,7 @@ impl epi::App for DemoApp {
|
||||||
epi::set_value(storage, epi::APP_KEY, self);
|
epi::set_value(storage, epi::APP_KEY, self);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ui(&mut self, ctx: &CtxRef, frame: &mut epi::Frame<'_>) {
|
fn update(&mut self, ctx: &CtxRef, frame: &mut epi::Frame<'_>) {
|
||||||
self.frame_history
|
self.frame_history
|
||||||
.on_new_frame(ctx.input().time, frame.info().cpu_usage);
|
.on_new_frame(ctx.input().time, frame.info().cpu_usage);
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ impl epi::App for HttpApp {
|
||||||
|
|
||||||
/// Called each time the UI needs repainting, which may be many times per second.
|
/// Called each time the UI needs repainting, which may be many times per second.
|
||||||
/// Put your widgets into a `SidePanel`, `TopPanel`, `CentralPanel`, `Window` or `Area`.
|
/// Put your widgets into a `SidePanel`, `TopPanel`, `CentralPanel`, `Window` or `Area`.
|
||||||
fn ui(&mut self, ctx: &egui::CtxRef, frame: &mut epi::Frame<'_>) {
|
fn update(&mut self, ctx: &egui::CtxRef, frame: &mut epi::Frame<'_>) {
|
||||||
if let Some(receiver) = &mut self.in_progress {
|
if let Some(receiver) = &mut self.in_progress {
|
||||||
// Are we there yet?
|
// Are we there yet?
|
||||||
if let Ok(result) = receiver.try_recv() {
|
if let Ok(result) = receiver.try_recv() {
|
||||||
|
|
|
@ -21,7 +21,7 @@ impl epi::App for WrapApp {
|
||||||
epi::set_value(storage, epi::APP_KEY, self);
|
epi::set_value(storage, epi::APP_KEY, self);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ui(&mut self, ctx: &egui::CtxRef, frame: &mut epi::Frame<'_>) {
|
fn update(&mut self, ctx: &egui::CtxRef, frame: &mut epi::Frame<'_>) {
|
||||||
let web_location_hash = frame
|
let web_location_hash = frame
|
||||||
.info()
|
.info()
|
||||||
.web_info
|
.web_info
|
||||||
|
@ -57,9 +57,9 @@ impl epi::App for WrapApp {
|
||||||
});
|
});
|
||||||
|
|
||||||
if self.selectable_demo_name == self.demo.name() {
|
if self.selectable_demo_name == self.demo.name() {
|
||||||
self.demo.ui(ctx, frame);
|
self.demo.update(ctx, frame);
|
||||||
} else if self.selectable_demo_name == self.http.name() {
|
} else if self.selectable_demo_name == self.http.name() {
|
||||||
self.http.ui(ctx, frame);
|
self.http.update(ctx, frame);
|
||||||
} else {
|
} else {
|
||||||
self.selectable_demo_name = self.demo.name().to_owned();
|
self.selectable_demo_name = self.demo.name().to_owned();
|
||||||
}
|
}
|
||||||
|
|
|
@ -150,7 +150,7 @@ pub fn run(mut app: Box<dyn epi::App>) -> ! {
|
||||||
repaint_signal: repaint_signal.clone(),
|
repaint_signal: repaint_signal.clone(),
|
||||||
}
|
}
|
||||||
.build();
|
.build();
|
||||||
app.ui(&ctx, &mut frame);
|
app.update(&ctx, &mut frame);
|
||||||
let (egui_output, paint_commands) = ctx.end_frame();
|
let (egui_output, paint_commands) = ctx.end_frame();
|
||||||
let paint_jobs = ctx.tessellate(paint_commands);
|
let paint_jobs = ctx.tessellate(paint_commands);
|
||||||
|
|
||||||
|
|
|
@ -203,7 +203,7 @@ impl AppRunner {
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let egui_ctx = &self.web_backend.ctx;
|
let egui_ctx = &self.web_backend.ctx;
|
||||||
self.app.ui(egui_ctx, &mut frame);
|
self.app.update(egui_ctx, &mut frame);
|
||||||
let (egui_output, paint_jobs) = self.web_backend.end_frame()?;
|
let (egui_output, paint_jobs) = self.web_backend.end_frame()?;
|
||||||
handle_output(&egui_output);
|
handle_output(&egui_output);
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,7 @@ pub use egui; // Re-export for user convenience
|
||||||
pub trait App {
|
pub trait App {
|
||||||
/// Called each time the UI needs repainting, which may be many times per second.
|
/// Called each time the UI needs repainting, which may be many times per second.
|
||||||
/// Put your widgets into a [`egui::SidePanel`], [`egui::TopPanel`], [`egui::CentralPanel`], [`egui::Window`] or [`egui::Area`].
|
/// Put your widgets into a [`egui::SidePanel`], [`egui::TopPanel`], [`egui::CentralPanel`], [`egui::Window`] or [`egui::Area`].
|
||||||
fn ui(&mut self, ctx: &egui::CtxRef, frame: &mut Frame<'_>);
|
fn update(&mut self, ctx: &egui::CtxRef, frame: &mut Frame<'_>);
|
||||||
|
|
||||||
/// Called once before the first frame.
|
/// Called once before the first frame.
|
||||||
/// Allows you to do setup code and to call `ctx.set_fonts()`.
|
/// Allows you to do setup code and to call `ctx.set_fonts()`.
|
||||||
|
|
Loading…
Reference in a new issue