mirror of
https://github.com/emilk/egui.git
synced 2026-08-30 21:30:03 -04:00
Adds an accessibility inspector plugin that shows the current AccessKit tree: https://github.com/user-attachments/assets/78f4f221-1bd2-4ce4-adf5-fc3b00f5c16c Macos has a built in accessibility inspector, but it doesn't seem to work with AccessKit / eframe so this provides some insight into the accesskit state. This also showed a couple issues that are easy to fix: - [ ] Links show up as `Label` instead of links - [ ] Not all supported actions are advertised (e.g. scrolling) - [ ] The resize handles in windows shouldn't be focusable - [ ] Checkbox has no value - [ ] Menus should have the button as parent widget (not 100% sure on this one) Currently the plugin lives in the demo app, but I think it should be moved somewhere else. Maybe egui_extras? This could also be relevant for #4650
26 lines
684 B
Rust
26 lines
684 B
Rust
//! Demo app for egui
|
|
#![allow(clippy::missing_errors_doc)]
|
|
|
|
mod apps;
|
|
mod backend_panel;
|
|
mod frame_history;
|
|
mod wrap_app;
|
|
|
|
pub use wrap_app::{Anchor, WrapApp};
|
|
|
|
/// Time of day as seconds since midnight. Used for clock in demo app.
|
|
pub(crate) fn seconds_since_midnight() -> f64 {
|
|
use chrono::Timelike as _;
|
|
let time = chrono::Local::now().time();
|
|
time.num_seconds_from_midnight() as f64 + 1e-9 * (time.nanosecond() as f64)
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
#[cfg(feature = "accessibility_inspector")]
|
|
pub mod accessibility_inspector;
|
|
#[cfg(target_arch = "wasm32")]
|
|
mod web;
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
pub use web::*;
|