Files
notedeck/src/ui/preview.rs
William Casarin 54bf2a0767 previews: remove central panel frame
This was adding padding we don't want

Signed-off-by: William Casarin <jb55@jb55.com>
2024-04-21 13:42:49 -07:00

36 lines
662 B
Rust

use crate::ui::View;
pub trait Preview {
type Prev: View;
fn preview() -> Self::Prev;
}
pub struct PreviewApp {
view: Box<dyn View>,
}
impl<V> From<V> for PreviewApp
where
V: View + 'static,
{
fn from(v: V) -> Self {
PreviewApp::new(v)
}
}
impl PreviewApp {
pub fn new(view: impl View + 'static) -> PreviewApp {
let view = Box::new(view);
Self { view }
}
}
impl eframe::App for PreviewApp {
fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) {
egui::CentralPanel::default()
.frame(egui::Frame::none())
.show(ctx, |ui| self.view.ui(ui));
}
}