mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-20 02:36:22 +03:00
44 lines
1.1 KiB
Zig
44 lines
1.1 KiB
Zig
/// ContentScale is the ratio between the current DPI and the platform's
|
|
/// default DPI. This is used to determine how much certain rendered elements
|
|
/// need to be scaled up or down.
|
|
pub const ContentScale = struct {
|
|
x: f32,
|
|
y: f32,
|
|
};
|
|
|
|
/// The size of the surface in pixels.
|
|
pub const SurfaceSize = struct {
|
|
width: u32,
|
|
height: u32,
|
|
};
|
|
|
|
/// The position of the cursor in pixels.
|
|
pub const CursorPos = struct {
|
|
x: f32,
|
|
y: f32,
|
|
};
|
|
|
|
/// Input Method Editor (IME) position.
|
|
pub const IMEPos = struct {
|
|
x: f64,
|
|
y: f64,
|
|
};
|
|
|
|
/// The clipboard type.
|
|
///
|
|
/// If this is changed, you must also update ghostty.h
|
|
pub const Clipboard = enum(u1) {
|
|
standard = 0, // ctrl+c/v
|
|
selection = 1, // also known as the "primary" clipboard
|
|
};
|
|
|
|
/// Clipboard request. This is used to request clipboard contents and must
|
|
/// be sent as a response to a ClipboardRequest event.
|
|
pub const ClipboardRequest = union(enum) {
|
|
/// A direct paste of clipboard contents.
|
|
paste: void,
|
|
|
|
/// A request to write clipboard contents via OSC 52.
|
|
osc_52: u8,
|
|
};
|