mirror of
https://github.com/emilk/egui.git
synced 2026-08-30 05:10:03 -04:00
<!-- Please read the "Making a PR" section of [`CONTRIBUTING.md`](https://github.com/emilk/egui/blob/master/CONTRIBUTING.md) before opening a Pull Request! * Keep your PR:s small and focused. * The PR title is what ends up in the changelog, so make it descriptive! * If applicable, add a screenshot or gif. * If it is a non-trivial addition, consider adding a demo for it to `egui_demo_lib`, or a new example. * Do NOT open PR:s from your `master` branch, as that makes it hard for maintainers to test and add commits to your PR. * Remember to run `cargo fmt` and `cargo clippy`. * Open the PR as a draft until you have self-reviewed it and run `./scripts/check.sh`. * When you have addressed a PR comment, mark it as resolved. Please be patient! I will review your PR, but my time is limited! --> * Closes https://github.com/emilk/egui/issues/3549 * [X] I have followed the instructions in the PR template The syntax highlighting font size was always hardcoded to 12 or 10 depending on what case it was hitting (so not consistent). This is particularly noticeable when you increase the font size to something larger for the rest of the ui. With this the default monospace font size is used by default. Since the issue is closely related to #3549 I decided to implement the ability to use override_font_id too. ## Visualized Default monospace is set to 15 in all the pictures Before/After without syntect:  Before/after _with_ syntect:  Font override after without/with syntect (monospace = 20):  ### Breaking changes - `CodeTheme::dark` and `CodeTheme::light` takes in the font size - `CodeTheme::from_memory` takes in `Style` - `highlight` function takes in `Style`
115 lines
5.3 KiB
Rust
115 lines
5.3 KiB
Rust
//! Demo-code for showing how egui is used.
|
|
//!
|
|
//! This library can be used to test 3rd party egui integrations (see for instance <https://github.com/not-fl3/egui-miniquad/blob/master/examples/demo.rs>).
|
|
//!
|
|
//! The demo is also used in benchmarks and tests.
|
|
//!
|
|
//! ## Feature flags
|
|
#![cfg_attr(feature = "document-features", doc = document_features::document_features!())]
|
|
//!
|
|
|
|
#![allow(clippy::float_cmp)]
|
|
#![allow(clippy::manual_range_contains)]
|
|
|
|
mod demo;
|
|
pub mod easy_mark;
|
|
mod rendering_test;
|
|
|
|
pub use demo::{Demo, DemoWindows, View, WidgetGallery};
|
|
pub use rendering_test::ColorTest;
|
|
|
|
/// View some Rust code with syntax highlighting and selection.
|
|
pub(crate) fn rust_view_ui(ui: &mut egui::Ui, code: &str) {
|
|
let language = "rs";
|
|
let theme = egui_extras::syntax_highlighting::CodeTheme::from_memory(ui.ctx(), ui.style());
|
|
egui_extras::syntax_highlighting::code_view_ui(ui, &theme, code, language);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
/// Create a [`Hyperlink`](egui::Hyperlink) to this egui source code file on github.
|
|
#[macro_export]
|
|
macro_rules! egui_github_link_file {
|
|
() => {
|
|
$crate::egui_github_link_file!("(source code)")
|
|
};
|
|
($label: expr) => {
|
|
egui::github_link_file!(
|
|
"https://github.com/emilk/egui/blob/master/",
|
|
egui::RichText::new($label).small()
|
|
)
|
|
};
|
|
}
|
|
|
|
/// Create a [`Hyperlink`](egui::Hyperlink) to this egui source code file and line on github.
|
|
#[macro_export]
|
|
macro_rules! egui_github_link_file_line {
|
|
() => {
|
|
$crate::egui_github_link_file_line!("(source code)")
|
|
};
|
|
($label: expr) => {
|
|
egui::github_link_file_line!(
|
|
"https://github.com/emilk/egui/blob/master/",
|
|
egui::RichText::new($label).small()
|
|
)
|
|
};
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
pub const LOREM_IPSUM: &str = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
|
|
|
|
pub const LOREM_IPSUM_LONG: &str = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
|
|
|
Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam various, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida. Duis ac tellus et risus vulputate vehicula. Donec lobortis risus a elit. Etiam tempor. Ut ullamcorper, ligula eu tempor congue, eros est euismod turpis, id tincidunt sapien risus a quam. Maecenas fermentum consequat mi. Donec fermentum. Pellentesque malesuada nulla a mi. Duis sapien sem, aliquet nec, commodo eget, consequat quis, neque. Aliquam faucibus, elit ut dictum aliquet, felis nisl adipiscing sapien, sed malesuada diam lacus eget erat. Cras mollis scelerisque nunc. Nullam arcu. Aliquam consequat. Curabitur augue lorem, dapibus quis, laoreet et, pretium ac, nisi. Aenean magna nisl, mollis quis, molestie eu, feugiat in, orci. In hac habitasse platea dictumst.";
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#[test]
|
|
fn test_egui_e2e() {
|
|
let mut demo_windows = crate::DemoWindows::default();
|
|
let ctx = egui::Context::default();
|
|
let raw_input = egui::RawInput::default();
|
|
|
|
const NUM_FRAMES: usize = 5;
|
|
for _ in 0..NUM_FRAMES {
|
|
let full_output = ctx.run(raw_input.clone(), |ctx| {
|
|
demo_windows.ui(ctx);
|
|
});
|
|
let clipped_primitives = ctx.tessellate(full_output.shapes, full_output.pixels_per_point);
|
|
assert!(!clipped_primitives.is_empty());
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_egui_zero_window_size() {
|
|
let mut demo_windows = crate::DemoWindows::default();
|
|
let ctx = egui::Context::default();
|
|
let raw_input = egui::RawInput {
|
|
screen_rect: Some(egui::Rect::from_min_max(egui::Pos2::ZERO, egui::Pos2::ZERO)),
|
|
..Default::default()
|
|
};
|
|
|
|
const NUM_FRAMES: usize = 5;
|
|
for _ in 0..NUM_FRAMES {
|
|
let full_output = ctx.run(raw_input.clone(), |ctx| {
|
|
demo_windows.ui(ctx);
|
|
});
|
|
let clipped_primitives = ctx.tessellate(full_output.shapes, full_output.pixels_per_point);
|
|
assert!(
|
|
clipped_primitives.is_empty(),
|
|
"There should be nothing to show, has at least one primitive with clip_rect: {:?}",
|
|
clipped_primitives[0].clip_rect
|
|
);
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
/// Detect narrow screens. This is used to show a simpler UI on mobile devices,
|
|
/// especially for the web demo at <https://egui.rs>.
|
|
pub fn is_mobile(ctx: &egui::Context) -> bool {
|
|
let screen_size = ctx.screen_rect().size();
|
|
screen_size.x < 550.0
|
|
}
|