Skip to content

Commit

Permalink
Update main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
rustbasic authored Aug 21, 2024
1 parent 9a1e358 commit 2bbaa9b
Showing 1 changed file with 104 additions and 66 deletions.
170 changes: 104 additions & 66 deletions tests/test_ui_stack/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,17 @@ fn main() -> eframe::Result {
}

#[derive(Default)]
struct MyApp {}
struct MyApp {
settings: bool,
inspection: bool,
memory: bool,
}

impl eframe::App for MyApp {
fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) {
ctx.style_mut(|style| style.interaction.tooltip_delay = 0.0);
egui::SidePanel::right("side_panel").show(ctx, |ui| {

egui::SidePanel::left("side_panel_left").show(ctx, |ui| {
ui.heading("Information");
ui.label(
"This is a demo/test environment of the `UiStack` feature. The tables display \
Expand All @@ -39,6 +44,10 @@ impl eframe::App for MyApp {
highlighting. Hover to see them in action!",
);
ui.add_space(10.0);
ui.checkbox(&mut self.settings, "🔧 Settings");
ui.checkbox(&mut self.inspection, "🔍 Inspection");
ui.checkbox(&mut self.memory, "📝 Memory");
ui.add_space(10.0);
if ui.button("Reset egui memory").clicked() {
ctx.memory_mut(|mem| *mem = Default::default());
}
Expand Down Expand Up @@ -77,6 +86,16 @@ impl eframe::App for MyApp {
});
});

egui::SidePanel::right("side_panel_right").show(ctx, |ui| {
egui::ScrollArea::both().auto_shrink(false).show(ui, |ui| {
stack_ui(ui);

// full span test
ui.add_space(20.0);
full_span_widget(ui, false);
});
});

egui::TopBottomPanel::bottom("bottom_panel")
.resizable(true)
.show(ctx, |ui| {
Expand All @@ -92,85 +111,83 @@ impl eframe::App for MyApp {
});

egui::CentralPanel::default().show(ctx, |ui| {
egui::ScrollArea::vertical()
.auto_shrink(false)
.show(ui, |ui| {
ui.label("stack here:");
stack_ui(ui);
egui::ScrollArea::both().auto_shrink(false).show(ui, |ui| {
ui.label("stack here:");
stack_ui(ui);

// full span test
ui.add_space(20.0);
full_span_widget(ui, false);
// full span test
ui.add_space(20.0);
full_span_widget(ui, false);

// tooltip test
// tooltip test
ui.add_space(20.0);
ui.label("Hover me").on_hover_ui(|ui| {
full_span_widget(ui, true);
ui.add_space(20.0);
ui.label("Hover me").on_hover_ui(|ui| {
stack_ui(ui);
});

// combobox test
ui.add_space(20.0);
egui::ComboBox::from_id_source("combo_box")
.selected_text("click me")
.show_ui(ui, |ui| {
full_span_widget(ui, true);
ui.add_space(20.0);
stack_ui(ui);
});

// combobox test
ui.add_space(20.0);
egui::ComboBox::from_id_source("combo_box")
.selected_text("click me")
.show_ui(ui, |ui| {
full_span_widget(ui, true);
ui.add_space(20.0);
stack_ui(ui);
});

// Ui nesting test
ui.add_space(20.0);
ui.label("UI nesting test:");
egui::Frame {
stroke: ui.visuals().noninteractive().bg_stroke,
inner_margin: egui::Margin::same(4.0),
..Default::default()
}
.show(ui, |ui| {
ui.horizontal(|ui| {
ui.vertical(|ui| {
ui.scope(stack_ui);
});
// Ui nesting test
ui.add_space(20.0);
ui.label("UI nesting test:");
egui::Frame {
stroke: ui.visuals().noninteractive().bg_stroke,
inner_margin: egui::Margin::same(4.0),
..Default::default()
}
.show(ui, |ui| {
ui.horizontal(|ui| {
ui.vertical(|ui| {
ui.scope(stack_ui);
});
});
});

// table test
let mut cell_stack = None;
ui.add_space(20.0);
ui.label("Table test:");

egui_extras::TableBuilder::new(ui)
.vscroll(false)
.column(Column::auto())
.column(Column::auto())
.header(20.0, |mut header| {
header.col(|ui| {
ui.strong("column 1");
});
header.col(|ui| {
ui.strong("column 2");
// table test
let mut cell_stack = None;
ui.add_space(20.0);
ui.label("Table test:");

egui_extras::TableBuilder::new(ui)
.vscroll(false)
.column(Column::auto())
.column(Column::auto())
.header(20.0, |mut header| {
header.col(|ui| {
ui.strong("column 1");
});
header.col(|ui| {
ui.strong("column 2");
});
})
.body(|mut body| {
body.row(20.0, |mut row| {
row.col(|ui| {
full_span_widget(ui, false);
});
})
.body(|mut body| {
body.row(20.0, |mut row| {
row.col(|ui| {
full_span_widget(ui, false);
});
row.col(|ui| {
ui.style_mut().wrap_mode = Some(egui::TextWrapMode::Extend);
ui.label("See stack below");
cell_stack = Some(ui.stack().clone());
});
row.col(|ui| {
ui.style_mut().wrap_mode = Some(egui::TextWrapMode::Extend);
ui.label("See stack below");
cell_stack = Some(ui.stack().clone());
});
});
});

if let Some(cell_stack) = cell_stack {
ui.label("Cell's stack:");
stack_ui_impl(ui, &cell_stack);
}
});
if let Some(cell_stack) = cell_stack {
ui.label("Cell's stack:");
stack_ui_impl(ui, &cell_stack);
}
});
});

egui::Window::new("Window")
Expand All @@ -180,6 +197,27 @@ impl eframe::App for MyApp {
ui.add_space(20.0);
stack_ui(ui);
});

egui::Window::new("🔧 Settings")
.open(&mut self.settings)
.vscroll(true)
.show(ctx, |ui| {
ctx.settings_ui(ui);
});

egui::Window::new("🔍 Inspection")
.open(&mut self.inspection)
.vscroll(true)
.show(ctx, |ui| {
ctx.inspection_ui(ui);
});

egui::Window::new("📝 Memory")
.open(&mut self.memory)
.resizable(false)
.show(ctx, |ui| {
ctx.memory_ui(ui);
});
}
}

Expand Down

0 comments on commit 2bbaa9b

Please sign in to comment.