generated from PlexSheep/rs-base
feat(info): add info diag
cargo devel CI / cargo CI (push) Successful in 3m0s
Details
cargo devel CI / cargo CI (push) Successful in 3m0s
Details
This commit is contained in:
parent
8f51a5ff44
commit
73158eec75
|
@ -25,3 +25,4 @@ libpt = { version = "0.6.0", features = ["cli"] }
|
||||||
clap = { version = "4.5.15", features = ["derive"] }
|
clap = { version = "4.5.15", features = ["derive"] }
|
||||||
image = "0.25.2"
|
image = "0.25.2"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
rfd = "0.14.1"
|
||||||
|
|
15
src/app.rs
15
src/app.rs
|
@ -1,6 +1,7 @@
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use egui::IconData;
|
use egui::IconData;
|
||||||
use libpt::cli::args::{VerbosityLevel, HELP_TEMPLATE};
|
use libpt::cli::args::{VerbosityLevel, HELP_TEMPLATE};
|
||||||
|
use libpt::log::{debug, info};
|
||||||
|
|
||||||
pub const TITLE: &str = "Rollator";
|
pub const TITLE: &str = "Rollator";
|
||||||
|
|
||||||
|
@ -54,6 +55,14 @@ impl RollatorApp {
|
||||||
pub fn new_with_cli() -> Self {
|
pub fn new_with_cli() -> Self {
|
||||||
Self::parse()
|
Self::parse()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn info_diag(&mut self, ctx: &egui::Context) {
|
||||||
|
debug!("opening info dialogue");
|
||||||
|
egui::Window::new(format!("{TITLE}: Information")).show(&egui::Context::default(), |ui| {
|
||||||
|
ui.label("wer das liest ist doof");
|
||||||
|
ui.label("wer das liest ist doof");
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl eframe::App for RollatorApp {
|
impl eframe::App for RollatorApp {
|
||||||
|
@ -78,10 +87,8 @@ impl eframe::App for RollatorApp {
|
||||||
if ui.button("Quit").clicked() {
|
if ui.button("Quit").clicked() {
|
||||||
ctx.send_viewport_cmd(egui::ViewportCommand::Close);
|
ctx.send_viewport_cmd(egui::ViewportCommand::Close);
|
||||||
}
|
}
|
||||||
});
|
if ui.button("Info").clicked() {
|
||||||
ui.menu_button("AAAA", |ui| {
|
self.info_diag(ctx);
|
||||||
if ui.button("Quit").clicked() {
|
|
||||||
ctx.send_viewport_cmd(egui::ViewportCommand::Close);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
ui.add_space(16.0);
|
ui.add_space(16.0);
|
||||||
|
|
Loading…
Reference in New Issue