#![doc = include_str!("../README.md")]
#![deny(missing_docs)]
#![allow(clippy::type_complexity)]
#![allow(clippy::collapsible_else_if)]
#![allow(clippy::redundant_clone)]
#![allow(clippy::unnecessary_cast)]
#![allow(clippy::mut_from_ref)]
#![allow(unused_mut)]
extern crate self as kael;
#[macro_use]
mod action;
pub mod accessibility;
pub mod animation;
mod app;
pub mod app_runtime;
pub mod background_jobs;
pub mod gesture;
pub mod panels;
pub mod workspace;
mod arena;
mod asset_cache;
mod assets;
mod auto_updater;
pub mod benchmark;
mod bounds_tree;
mod cache;
mod color;
pub mod colors;
pub mod command_registry;
mod crash_reporter;
pub mod dev_tools;
mod element;
mod elements;
mod executor;
pub mod extension_host;
pub mod extension_rpc;
mod file_watcher;
mod geometry;
mod global;
pub mod golden;
pub mod gpu;
pub mod headless_render;
mod icons;
mod input;
mod inspector;
mod interactive;
pub mod ipc_transport;
mod key_dispatch;
mod keymap;
mod lottie;
pub mod media_capture;
#[cfg(feature = "media")]
pub mod media_playback;
mod path_builder;
mod pixel_snap;
mod platform;
pub mod platform_caps;
pub mod plugin;
pub mod prelude;
mod print;
pub mod process_model;
pub mod runtime;
mod scene;
pub mod scene_graph;
mod scroll_elasticity;
pub mod security;
mod session_store;
#[allow(dead_code)]
mod shadow_cache;
mod shared_string;
mod shared_uri;
pub mod split_pane;
pub mod status_bar;
mod style;
mod styled;
mod subscription;
pub mod supervisor;
mod svg_renderer;
mod tab_stop;
mod taffy;
#[cfg(any(test, feature = "test-support"))]
pub mod test;
pub mod text_engine;
mod text_system;
pub mod theme;
mod tracer;
mod util;
pub mod video_color;
mod view;
pub mod virtual_data;
mod webview;
mod window;
pub mod worker_api;
#[cfg(doc)]
pub mod _ownership_and_data_flow;
#[doc(hidden)]
pub mod private {
pub use anyhow;
pub use inventory;
pub use schemars;
pub use serde;
pub use serde_json;
}
mod seal {
pub trait Sealed {}
}
pub use accessibility::*;
pub use action::*;
pub use anyhow::Result;
pub use app::*;
pub use app_runtime::*;
pub(crate) use arena::*;
pub use asset_cache::*;
pub use assets::*;
pub use auto_updater::*;
pub use background_jobs::*;
pub use benchmark::*;
pub use color::*;
pub use command_registry::{CommandDescriptor, CommandPalette, PaletteCommandId};
pub use crash_reporter::*;
pub use ctor::ctor;
pub use dev_tools::*;
pub use element::*;
pub use elements::*;
pub use executor::*;
pub use extension_host::*;
pub use extension_rpc::*;
pub use file_watcher::*;
pub use geometry::*;
pub use gesture::*;
pub use global::*;
pub use gpu::*;
pub use headless_render::*;
pub use http_client;
pub use input::*;
pub use inspector::*;
pub use interactive::*;
pub use ipc_transport::*;
pub use kael_macros::{AppContext, IntoElement, Render, VisualContext, register_action, test};
use key_dispatch::*;
pub use keymap::*;
pub use lottie::*;
pub use media_capture::*;
#[cfg(feature = "media")]
pub use media_playback::*;
pub use panels::*;
pub use path_builder::*;
pub use pixel_snap::PixelSnapPolicy;
pub use platform::*;
pub use platform_caps::*;
pub use plugin::*;
pub use print::*;
pub use process_model::*;
pub use refineable::*;
pub use runtime::*;
pub use scene::*;
pub use scene_graph::*;
pub use security::*;
pub use session_store::*;
pub use shared_string::*;
pub use shared_uri::*;
pub use smol::Timer;
pub use split_pane::*;
pub use status_bar::*;
pub use style::*;
pub use styled::*;
pub use subscription::*;
pub use supervisor::*;
use svg_renderer::*;
pub(crate) use tab_stop::*;
pub use taffy::{AvailableSpace, LayoutId};
#[cfg(any(test, feature = "test-support"))]
pub use test::*;
pub use text_engine::*;
pub use text_system::*;
pub use theme::*;
pub use tracer::*;
#[cfg(any(test, feature = "test-support"))]
pub use util::smol_timeout;
pub use util::{FutureExt, Timeout, arc_cow::ArcCow};
pub use video_color::*;
pub use view::*;
pub use virtual_data::*;
pub use webview::*;
pub use window::*;
pub use worker_api::*;
pub use workspace::*;
use std::{any::Any, borrow::BorrowMut, future::Future};
use taffy::TaffyLayoutEngine;
pub trait AppContext {
type Result<T>;
#[expect(
clippy::wrong_self_convention,
reason = "`App::new` is an ubiquitous function for creating entities"
)]
fn new<T: 'static>(
&mut self,
build_entity: impl FnOnce(&mut Context<T>) -> T,
) -> Self::Result<Entity<T>>;
fn reserve_entity<T: 'static>(&mut self) -> Self::Result<Reservation<T>>;
fn insert_entity<T: 'static>(
&mut self,
reservation: Reservation<T>,
build_entity: impl FnOnce(&mut Context<T>) -> T,
) -> Self::Result<Entity<T>>;
fn update_entity<T, R>(
&mut self,
handle: &Entity<T>,
update: impl FnOnce(&mut T, &mut Context<T>) -> R,
) -> Self::Result<R>
where
T: 'static;
fn as_mut<'a, T>(&'a mut self, handle: &Entity<T>) -> Self::Result<GpuiBorrow<'a, T>>
where
T: 'static;
fn read_entity<T, R>(
&self,
handle: &Entity<T>,
read: impl FnOnce(&T, &App) -> R,
) -> Self::Result<R>
where
T: 'static;
fn update_window<T, F>(&mut self, window: AnyWindowHandle, f: F) -> Result<T>
where
F: FnOnce(AnyView, &mut Window, &mut App) -> T;
fn read_window<T, R>(
&self,
window: &WindowHandle<T>,
read: impl FnOnce(Entity<T>, &App) -> R,
) -> Result<R>
where
T: 'static;
fn background_spawn<R>(&self, future: impl Future<Output = R> + Send + 'static) -> Task<R>
where
R: Send + 'static;
fn read_global<G, R>(&self, callback: impl FnOnce(&G, &App) -> R) -> Self::Result<R>
where
G: Global;
}
pub struct Reservation<T>(pub(crate) Slot<T>);
impl<T: 'static> Reservation<T> {
pub fn entity_id(&self) -> EntityId {
self.0.entity_id()
}
}
pub trait VisualContext: AppContext {
fn window_handle(&self) -> AnyWindowHandle;
fn invalidate_cache(&mut self, element_id: impl Into<ElementId>) -> Result<()> {
let window = self.window_handle();
let element_id = element_id.into();
self.update_window(window, move |_, window, _| {
window.invalidate_cache(element_id);
})
}
fn update_window_entity<T: 'static, R>(
&mut self,
entity: &Entity<T>,
update: impl FnOnce(&mut T, &mut Window, &mut Context<T>) -> R,
) -> Self::Result<R>;
fn new_window_entity<T: 'static>(
&mut self,
build_entity: impl FnOnce(&mut Window, &mut Context<T>) -> T,
) -> Self::Result<Entity<T>>;
fn replace_root_view<V>(
&mut self,
build_view: impl FnOnce(&mut Window, &mut Context<V>) -> V,
) -> Self::Result<Entity<V>>
where
V: 'static + Render;
fn focus<V>(&mut self, entity: &Entity<V>) -> Self::Result<()>
where
V: Focusable;
}
pub trait EventEmitter<E: Any>: 'static {}
pub trait BorrowAppContext {
fn set_global<T: Global>(&mut self, global: T);
fn update_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
where
G: Global;
fn update_default_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
where
G: Global + Default;
}
impl<C> BorrowAppContext for C
where
C: BorrowMut<App>,
{
fn set_global<G: Global>(&mut self, global: G) {
self.borrow_mut().set_global(global)
}
#[track_caller]
fn update_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
where
G: Global,
{
let mut global = self.borrow_mut().lease_global::<G>();
let result = f(&mut global, self);
self.borrow_mut().end_global_lease(global);
result
}
fn update_default_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
where
G: Global + Default,
{
self.borrow_mut().default_global::<G>();
self.update_global(f)
}
}
pub trait Flatten<T> {
fn flatten(self) -> Result<T>;
}
impl<T> Flatten<T> for Result<Result<T>> {
fn flatten(self) -> Result<T> {
self?
}
}
impl<T> Flatten<T> for Result<T> {
fn flatten(self) -> Result<T> {
self
}
}
#[derive(Default, Debug, serde::Serialize, serde::Deserialize, Clone)]
pub struct GpuSpecs {
pub is_software_emulated: bool,
pub device_name: String,
pub driver_name: String,
pub driver_info: String,
}