mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 23:00:04 -04:00
Roll out new egui icon and logo (#7995)
For the first time _ever_, egui has a logo! <img width="3925" height="1406" alt="egui-logo" src="https://github.com/user-attachments/assets/cfaf1d43-9338-490f-ae82-99b420baa1b0" /> Made by [Studio Gruhl](https://www.studiogruhl.com/) and paid for by [Rerun.io](https://rerun.io/).
This commit is contained in:
@@ -27,20 +27,30 @@ impl crate::View for About {
|
||||
fn ui(&mut self, ui: &mut egui::Ui) {
|
||||
use egui::special_emojis::{OS_APPLE, OS_LINUX, OS_WINDOWS};
|
||||
|
||||
ui.heading("egui");
|
||||
ui.vertical_centered(|ui| {
|
||||
ui.add_space(4.0);
|
||||
let egui_icon = egui::include_image!("../../data/egui-logo.svg");
|
||||
ui.add(
|
||||
egui::Image::new(egui_icon.clone())
|
||||
.max_height(30.0)
|
||||
.tint(ui.visuals().strong_text_color()),
|
||||
);
|
||||
ui.add_space(4.0);
|
||||
});
|
||||
|
||||
ui.label(format!(
|
||||
"egui is an immediate mode GUI library written in Rust. egui runs both on the web and natively on {}{}{}. \
|
||||
On the web it is compiled to WebAssembly and rendered with WebGL.{}",
|
||||
"egui is an immediate mode GUI library written in Rust. egui runs natively on {}{}{}, and \
|
||||
on the web it is compiled to WebAssembly and rendered with WebGL or WebGPU.{}",
|
||||
OS_APPLE, OS_LINUX, OS_WINDOWS,
|
||||
if cfg!(target_arch = "wasm32") {
|
||||
" Everything you see is rendered as textured triangles. There is no DOM, HTML, JS or CSS. Just Rust."
|
||||
} else {""}
|
||||
));
|
||||
ui.label("egui is designed to be easy to use, portable, and fast.");
|
||||
|
||||
ui.add_space(12.0);
|
||||
ui.label("egui is easy to use, portable, and fast.");
|
||||
|
||||
ui.heading("Immediate mode");
|
||||
ui.add_space(12.0);
|
||||
about_immediate_mode(ui);
|
||||
|
||||
ui.add_space(12.0);
|
||||
@@ -52,12 +62,12 @@ impl crate::View for About {
|
||||
|
||||
ui.horizontal_wrapped(|ui| {
|
||||
ui.spacing_mut().item_spacing.x = 0.0;
|
||||
ui.label("egui development is sponsored by ");
|
||||
ui.weak("egui development is sponsored by ");
|
||||
ui.hyperlink_to("Rerun.io", "https://www.rerun.io/");
|
||||
ui.label(", a startup building an SDK for visualizing streams of multimodal data. ");
|
||||
ui.label("For an example of a real-world egui app, see ");
|
||||
ui.weak(", a startup building a data platform for robotics. ");
|
||||
ui.weak("For an example of a professional egui app, run ");
|
||||
ui.hyperlink_to("rerun.io/viewer", "https://www.rerun.io/viewer");
|
||||
ui.label(" (runs in your browser).");
|
||||
ui.weak(" (in your browser!).");
|
||||
});
|
||||
|
||||
ui.add_space(12.0);
|
||||
@@ -72,11 +82,9 @@ fn about_immediate_mode(ui: &mut egui::Ui) {
|
||||
ui.style_mut().spacing.interact_size.y = 0.0; // hack to make `horizontal_wrapped` work better with text.
|
||||
|
||||
ui.horizontal_wrapped(|ui| {
|
||||
ui.spacing_mut().item_spacing.x = 0.0;
|
||||
ui.label("Immediate mode is a GUI paradigm that lets you create a GUI with less code and simpler control flow. For example, this is how you create a ");
|
||||
let _ = ui.small_button("button");
|
||||
ui.label(" in egui:");
|
||||
});
|
||||
ui.spacing_mut().item_spacing.x = 0.0;
|
||||
ui.label("This is how you create a button in egui:");
|
||||
});
|
||||
|
||||
ui.add_space(8.0);
|
||||
crate::rust_view_ui(
|
||||
|
||||
Reference in New Issue
Block a user