src/gui/native_core.zig
Ref: Size: 949 B History
//! Window-free native GUI model, transport runtime, appearance/font policy,
//! picker, persistence, and interaction policy. The native window and painter
//! consume this component; keeping it as its own module lets its tests run
//! without window libraries.
const client = @import("client");
const term = @import("term");
pub const workspace = @import("workspace.zig");
pub const runtime = @import("runtime.zig");
pub const picker = @import("picker.zig");
pub const popover = @import("popover.zig");
pub const persistence = @import("persistence.zig");
pub const interaction = @import("interaction.zig");
pub const config = @import("config.zig");
pub const theme = @import("theme.zig");
pub const font_options = @import("font_options.zig");
test {
_ = client;
_ = term;
_ = workspace;
_ = runtime;
_ = picker;
_ = popover;
_ = persistence;
_ = interaction;
_ = config;
_ = theme;
_ = font_options;
}