41f76e8f03
Refactor the main API to split Loop and Vaxis types. This enables the core Vaxis type to be more easily referenced in other types, since it doesn't require a comptime type parameter. This will make the switch to the zg unicode library easier.
31 lines
930 B
Zig
31 lines
930 B
Zig
const std = @import("std");
|
|
|
|
pub const Vaxis = @import("Vaxis.zig");
|
|
pub const Loop = @import("Loop.zig").Loop;
|
|
|
|
pub const Queue = @import("queue.zig").Queue;
|
|
pub const Key = @import("Key.zig");
|
|
pub const Cell = @import("Cell.zig");
|
|
pub const Segment = Cell.Segment;
|
|
pub const PrintOptions = Window.PrintOptions;
|
|
pub const Style = Cell.Style;
|
|
pub const Color = Cell.Color;
|
|
pub const Image = @import("Image.zig");
|
|
pub const Mouse = @import("Mouse.zig");
|
|
pub const Screen = @import("Screen.zig");
|
|
pub const AllocatingScreen = @import("InternalScreen.zig");
|
|
pub const Winsize = @import("Tty.zig").Winsize;
|
|
pub const Window = @import("Window.zig");
|
|
|
|
pub const ziglyph = @import("ziglyph");
|
|
pub const widgets = @import("widgets.zig");
|
|
pub const gwidth = @import("gwidth.zig");
|
|
|
|
/// Initialize a Vaxis application.
|
|
pub fn init(opts: Vaxis.Options) !Vaxis {
|
|
return Vaxis.init(opts);
|
|
}
|
|
|
|
test {
|
|
std.testing.refAllDecls(@This());
|
|
}
|