cli/gtk: move actual IPC code tp apprt

This commit is contained in:
Jeffrey C. Ollie
2025-07-12 22:59:44 -05:00
parent 824185f23e
commit 72e47cf8bc
8 changed files with 107 additions and 61 deletions

View File

@@ -32,6 +32,7 @@ pub const ColorScheme = structs.ColorScheme;
pub const CursorPos = structs.CursorPos;
pub const IMEPos = structs.IMEPos;
pub const Selection = structs.Selection;
pub const OpenNewWindowIPCOptions = structs.OpenNewWindowIPCOptions;
pub const SurfaceSize = structs.SurfaceSize;
/// The implementation to use for the app runtime. This is comptime chosen
@@ -49,6 +50,7 @@ pub const runtime = switch (build_config.artifact) {
pub const App = runtime.App;
pub const Surface = runtime.Surface;
pub const IPC = runtime.IPC;
/// Runtime is the runtime to use for Ghostty. All runtimes do not provide
/// equivalent feature sets.