mirror of
https://github.com/emilk/egui.git
synced 2026-07-20 05:28:55 +00:00
2f6fe9c572
* Part of https://github.com/emilk/egui/issues/5113 * Part of https://github.com/emilk/egui/issues/3524 ## What This deprecates `eframe::App::update` and replaces it with two new functions: ```rs pub trait App { /// Called just before `ui`, and in the future this will /// also be called for background apps when needed. fn logic(&mut self, ctx: &egui::Context, frame: &mut Frame) { } /// Show your user interface to the user. fn ui(&mut self, ui: &mut egui::Ui, frame: &mut Frame); … } ``` Similarly, `Context::run` is deprecated in favor of `Context::run_ui`. `Plugin`s are now handed a `Ui` instead of just a `Context` in `on_begin/end_frame`. ## TODO …either in this PR or a later one * [x] Deprecate `App::update` * [x] Deprecate `Context::run` * [x] Change plugins to get a `Ui` * [x] Update kittest * [x] Change viewports to get UI:s (`show_viewport_immediate` etc) - https://github.com/emilk/egui/pull/7779 ## Later PRs * [ ] Deprecate `Panel::show` * [ ] Deprecate `CentralPanel::show` * [ ] Deprecate `CentralPanel` ?
61 lines
2.0 KiB
Rust
61 lines
2.0 KiB
Rust
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release
|
|
#![allow(rustdoc::missing_crate_level_docs)] // it's an example
|
|
|
|
use eframe::egui;
|
|
|
|
fn main() -> eframe::Result {
|
|
env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`).
|
|
let options = eframe::NativeOptions {
|
|
viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]),
|
|
..Default::default()
|
|
};
|
|
eframe::run_native(
|
|
"Confirm exit",
|
|
options,
|
|
Box::new(|_cc| Ok(Box::<MyApp>::default())),
|
|
)
|
|
}
|
|
|
|
#[derive(Default)]
|
|
struct MyApp {
|
|
show_confirmation_dialog: bool,
|
|
allowed_to_close: bool,
|
|
}
|
|
|
|
impl eframe::App for MyApp {
|
|
fn ui(&mut self, ui: &mut egui::Ui, _frame: &mut eframe::Frame) {
|
|
egui::CentralPanel::default().show_inside(ui, |ui| {
|
|
ui.heading("Try to close the window");
|
|
});
|
|
|
|
if ui.input(|i| i.viewport().close_requested()) {
|
|
if self.allowed_to_close {
|
|
// do nothing - we will close
|
|
} else {
|
|
ui.send_viewport_cmd(egui::ViewportCommand::CancelClose);
|
|
self.show_confirmation_dialog = true;
|
|
}
|
|
}
|
|
|
|
if self.show_confirmation_dialog {
|
|
egui::Window::new("Do you want to quit?")
|
|
.collapsible(false)
|
|
.resizable(false)
|
|
.show(ui.ctx(), |ui| {
|
|
ui.horizontal(|ui| {
|
|
if ui.button("No").clicked() {
|
|
self.show_confirmation_dialog = false;
|
|
self.allowed_to_close = false;
|
|
}
|
|
|
|
if ui.button("Yes").clicked() {
|
|
self.show_confirmation_dialog = false;
|
|
self.allowed_to_close = true;
|
|
ui.send_viewport_cmd(egui::ViewportCommand::Close);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|