Skip to main content

gpui/
gpui.rs

1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3#![allow(clippy::type_complexity)] // Not useful, GPUI makes heavy use of callbacks
4#![allow(clippy::collapsible_else_if)] // False positives in platform specific code
5#![allow(unused_mut)] // False positives in platform specific code
6
7extern crate self as gpui;
8#[macro_use]
9mod action;
10mod app;
11
12mod arena;
13mod asset_cache;
14mod assets;
15mod bounds_tree;
16mod color;
17/// The default colors used by GPUI.
18pub mod colors;
19#[cfg(feature = "profiler")]
20mod debug_overlay;
21mod element;
22mod elements;
23mod executor;
24mod platform_scheduler;
25pub(crate) use platform_scheduler::PlatformScheduler;
26mod geometry;
27mod gestures;
28mod global;
29mod input;
30mod inspector;
31mod interactive;
32mod key_dispatch;
33mod keymap;
34mod path_builder;
35mod platform;
36pub mod prelude;
37/// Profiling utilities for task, frame, and thread performance tracking.
38pub mod profiler;
39#[cfg(any(
40    test,
41    target_os = "windows",
42    target_os = "linux",
43    target_family = "wasm",
44    feature = "test-support",
45    feature = "bench-support"
46))]
47#[expect(missing_docs)]
48pub mod queue;
49mod scene;
50mod shared_uri;
51mod spring;
52mod style;
53mod styled;
54mod subscription;
55mod svg_renderer;
56mod tab_stop;
57mod taffy;
58#[cfg(any(test, feature = "test-support"))]
59pub mod test;
60mod text_system;
61mod util;
62mod view;
63mod window;
64
65#[cfg(any(test, feature = "test-support"))]
66pub use proptest;
67
68#[cfg(doc)]
69pub mod _accessibility;
70#[cfg(doc)]
71pub mod _ownership_and_data_flow;
72
73/// Do not touch, here be dragons for use by gpui_macros and such.
74#[doc(hidden)]
75pub mod private {
76    pub use anyhow;
77    pub use inventory;
78    pub use schemars;
79    pub use serde;
80    pub use serde_json;
81}
82
83mod seal {
84    /// A mechanism for restricting implementations of a trait to only those in GPUI.
85    /// See: <https://predr.ag/blog/definitive-guide-to-sealed-traits-in-rust/>
86    pub trait Sealed {}
87}
88
89pub use accesskit;
90pub use accesskit::Action as AccessibleAction;
91pub use accesskit::{Orientation, Role, Toggled};
92pub use action::*;
93pub use anyhow::Result;
94pub use app::*;
95pub(crate) use arena::*;
96pub use asset_cache::*;
97pub use assets::*;
98pub use color::*;
99pub use ctor::ctor;
100#[cfg(feature = "profiler")]
101pub use debug_overlay::*;
102pub use element::*;
103pub use elements::*;
104pub use executor::*;
105pub use geometry::*;
106pub use gestures::*;
107pub use global::*;
108pub use gpui_macros::{
109    AppContext, IntoElement, Render, VisualContext, bench, property_test, register_action, test,
110};
111pub use spring::*;
112
113/// Defines a Criterion benchmark group for benchmarks annotated with [`gpui::bench`].
114///
115/// This mirrors `criterion::criterion_group!` so GPUI benchmark files can keep the
116/// same shape as ordinary Criterion benchmarks.
117///
118/// [`gpui::bench`]: crate::bench
119#[macro_export]
120macro_rules! bench_group {
121    ($($tokens:tt)*) => {
122        criterion::criterion_group!($($tokens)*);
123    };
124}
125
126/// Defines the entry point for GPUI Criterion benchmark groups.
127///
128/// This mirrors `criterion::criterion_main!` so GPUI benchmark files can keep the
129/// same shape as ordinary Criterion benchmarks.
130#[macro_export]
131macro_rules! bench_main {
132    ($($tokens:tt)*) => {
133        criterion::criterion_main!($($tokens)*);
134    };
135}
136pub use gpui_shared_string::*;
137pub use gpui_util::arc_cow::ArcCow;
138pub use http_client;
139pub use input::*;
140pub use inspector::*;
141pub use interactive::*;
142use key_dispatch::*;
143pub use keymap::*;
144pub use path_builder::*;
145pub use platform::*;
146pub use profiler::*;
147#[cfg(any(target_os = "windows", target_os = "linux", target_family = "wasm"))]
148pub use queue::{PriorityQueueReceiver, PriorityQueueSender};
149pub use refineable::*;
150pub use scene::*;
151pub use shared_uri::*;
152use std::{any::Any, future::Future};
153pub use style::*;
154pub use styled::*;
155pub use subscription::*;
156pub use svg_renderer::*;
157pub(crate) use tab_stop::*;
158use taffy::TaffyLayoutEngine;
159pub use taffy::{AvailableSpace, LayoutId};
160#[cfg(any(test, feature = "test-support"))]
161pub use test::*;
162pub use text_system::*;
163pub use util::{FutureExt, Timeout};
164pub use view::*;
165pub use window::*;
166
167#[cfg(not(target_family = "wasm"))]
168pub use pollster::block_on;
169
170/// The context trait, allows the different contexts in GPUI to be used
171/// interchangeably for certain operations.
172pub trait AppContext {
173    /// Create a new entity in the app context.
174    #[expect(
175        clippy::wrong_self_convention,
176        reason = "`App::new` is an ubiquitous function for creating entities"
177    )]
178    fn new<T: 'static>(&mut self, build_entity: impl FnOnce(&mut Context<T>) -> T) -> Entity<T>;
179
180    /// Reserve a slot for a entity to be inserted later.
181    /// The returned [Reservation] allows you to obtain the [EntityId] for the future entity.
182    fn reserve_entity<T: 'static>(&mut self) -> Reservation<T>;
183
184    /// Insert a new entity in the app context based on a [Reservation] previously obtained from [`reserve_entity`].
185    ///
186    /// [`reserve_entity`]: Self::reserve_entity
187    fn insert_entity<T: 'static>(
188        &mut self,
189        reservation: Reservation<T>,
190        build_entity: impl FnOnce(&mut Context<T>) -> T,
191    ) -> Entity<T>;
192
193    /// Update a entity in the app context.
194    fn update_entity<T, R>(
195        &mut self,
196        handle: &Entity<T>,
197        update: impl FnOnce(&mut T, &mut Context<T>) -> R,
198    ) -> R
199    where
200        T: 'static;
201
202    /// Update a entity in the app context.
203    fn as_mut<'a, T>(&'a mut self, handle: &Entity<T>) -> GpuiBorrow<'a, T>
204    where
205        T: 'static;
206
207    /// Read a entity from the app context.
208    fn read_entity<T, R>(&self, handle: &Entity<T>, read: impl FnOnce(&T, &App) -> R) -> R
209    where
210        T: 'static;
211
212    /// Update a window for the given handle.
213    fn update_window<T, F>(&mut self, window: AnyWindowHandle, f: F) -> Result<T>
214    where
215        F: FnOnce(AnyView, &mut Window, &mut App) -> T;
216
217    /// Run `f` against the entity's *current* window — the most recently
218    /// rendered window that referenced the entity. Returns `None` if the
219    /// entity has no current window or that window is unavailable. See
220    /// [`App::with_window`] for the underlying lookup.
221    fn with_window<R>(
222        &mut self,
223        entity_id: EntityId,
224        f: impl FnOnce(&mut Window, &mut App) -> R,
225    ) -> Option<R>;
226
227    /// Read a window off of the application context.
228    fn read_window<T, R>(
229        &self,
230        window: &WindowHandle<T>,
231        read: impl FnOnce(Entity<T>, &App) -> R,
232    ) -> Result<R>
233    where
234        T: 'static;
235
236    /// Spawn a future on a background thread
237    fn background_spawn<R>(&self, future: impl Future<Output = R> + Send + 'static) -> Task<R>
238    where
239        R: Send + 'static;
240
241    /// Read a global from this app context
242    fn read_global<G, R>(&self, callback: impl FnOnce(&G, &App) -> R) -> R
243    where
244        G: Global;
245}
246
247/// Returned by [Context::reserve_entity] to later be passed to [Context::insert_entity].
248/// Allows you to obtain the [EntityId] for a entity before it is created.
249pub struct Reservation<T>(pub(crate) Slot<T>);
250
251impl<T: 'static> Reservation<T> {
252    /// Returns the [EntityId] that will be associated with the entity once it is inserted.
253    pub fn entity_id(&self) -> EntityId {
254        self.0.entity_id()
255    }
256}
257
258/// This trait is used for the different visual contexts in GPUI that
259/// require a window to be present.
260pub trait VisualContext: AppContext {
261    /// The result type for window operations.
262    type Result<T>;
263
264    /// Returns the handle of the window associated with this context.
265    fn window_handle(&self) -> AnyWindowHandle;
266
267    /// Update a view with the given callback
268    fn update_window_entity<T: 'static, R>(
269        &mut self,
270        entity: &Entity<T>,
271        update: impl FnOnce(&mut T, &mut Window, &mut Context<T>) -> R,
272    ) -> Self::Result<R>;
273
274    /// Create a new entity, with access to `Window`.
275    fn new_window_entity<T: 'static>(
276        &mut self,
277        build_entity: impl FnOnce(&mut Window, &mut Context<T>) -> T,
278    ) -> Self::Result<Entity<T>>;
279
280    /// Replace the root view of a window with a new view.
281    fn replace_root_view<V>(
282        &mut self,
283        build_view: impl FnOnce(&mut Window, &mut Context<V>) -> V,
284    ) -> Self::Result<Entity<V>>
285    where
286        V: 'static + Render;
287
288    /// Focus a entity in the window, if it implements the [`Focusable`] trait.
289    fn focus<V>(&mut self, entity: &Entity<V>) -> Self::Result<()>
290    where
291        V: Focusable;
292}
293
294/// A trait for tying together the types of a GPUI entity and the events it can
295/// emit.
296pub trait EventEmitter<E: Any>: 'static {}
297
298/// A helper trait for auto-implementing certain methods on contexts that
299/// can be used interchangeably.
300pub trait BorrowAppContext {
301    /// Set a global value on the context.
302    fn set_global<T: Global>(&mut self, global: T);
303    /// Updates the global state of the given type.
304    fn update_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
305    where
306        G: Global;
307    /// Updates the global state of the given type, creating a default if it didn't exist before.
308    fn update_default_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
309    where
310        G: Global + Default;
311}
312
313impl<C> BorrowAppContext for C
314where
315    C: std::borrow::BorrowMut<App>,
316{
317    fn set_global<G: Global>(&mut self, global: G) {
318        self.borrow_mut().set_global(global)
319    }
320
321    #[track_caller]
322    fn update_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
323    where
324        G: Global,
325    {
326        let mut global = self.borrow_mut().lease_global::<G>();
327        let result = f(&mut global, self);
328        self.borrow_mut().end_global_lease(global);
329        result
330    }
331
332    fn update_default_global<G, R>(&mut self, f: impl FnOnce(&mut G, &mut Self) -> R) -> R
333    where
334        G: Global + Default,
335    {
336        self.borrow_mut().default_global::<G>();
337        self.update_global(f)
338    }
339}
340
341/// Information about the GPU GPUI is running on.
342#[derive(Default, Debug, serde::Serialize, serde::Deserialize, Clone)]
343pub struct GpuSpecs {
344    /// Whether the GPU is really a fake (like `llvmpipe`) running on the CPU.
345    pub is_software_emulated: bool,
346    /// The name of the device, as reported by Vulkan.
347    pub device_name: String,
348    /// The name of the driver, as reported by Vulkan.
349    pub driver_name: String,
350    /// Further information about the driver, as reported by Vulkan.
351    pub driver_info: String,
352}