xcb: minor touch-ups
This commit is contained in:
@@ -26,27 +26,27 @@ pub const Connection = opaque {
|
||||
return import.xcb_create_window(c, depth, wid, parent, x, y, width, height, border_width, _class, visual, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn createWindowAuxChecked(c: *Connection, depth: u8, wid: Window, parent: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, _class: WindowClass, visual: Visualid, value_mask: Cw, value_list: [*c]const CreateWindowValueList) VoidCookie {
|
||||
pub inline fn createWindowAuxChecked(c: *Connection, depth: u8, wid: Window, parent: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, _class: WindowClass, visual: Visualid, value_mask: Cw, value_list: *const CreateWindowValueList) VoidCookie {
|
||||
return import.xcb_create_window_aux_checked(c, depth, wid, parent, x, y, width, height, border_width, _class, visual, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn createWindowAux(c: *Connection, depth: u8, wid: Window, parent: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, _class: WindowClass, visual: Visualid, value_mask: Cw, value_list: [*c]const CreateWindowValueList) VoidCookie {
|
||||
pub inline fn createWindowAux(c: *Connection, depth: u8, wid: Window, parent: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, _class: WindowClass, visual: Visualid, value_mask: Cw, value_list: *const CreateWindowValueList) VoidCookie {
|
||||
return import.xcb_create_window_aux(c, depth, wid, parent, x, y, width, height, border_width, _class, visual, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn changeWindowAttributesChecked(c: *Connection, window: Window, value_mask: u32, value_list: ?*const anyopaque) VoidCookie {
|
||||
pub inline fn changeWindowAttributesChecked(c: *Connection, window: Window, value_mask: Cw, value_list: ?*const anyopaque) VoidCookie {
|
||||
return import.xcb_change_window_attributes_checked(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn changeWindowAttributes(c: *Connection, window: Window, value_mask: u32, value_list: ?*const anyopaque) VoidCookie {
|
||||
pub inline fn changeWindowAttributes(c: *Connection, window: Window, value_mask: Cw, value_list: ?*const anyopaque) VoidCookie {
|
||||
return import.xcb_change_window_attributes(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn changeWindowAttributesAuxChecked(c: *Connection, window: Window, value_mask: u32, value_list: [*c]const ChangeWindowAttributesValueList) VoidCookie {
|
||||
pub inline fn changeWindowAttributesAuxChecked(c: *Connection, window: Window, value_mask: Cw, value_list: *const ChangeWindowAttributesValueList) VoidCookie {
|
||||
return import.xcb_change_window_attributes_aux_checked(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn changeWindowAttributesAux(c: *Connection, window: Window, value_mask: u32, value_list: [*c]const ChangeWindowAttributesValueList) VoidCookie {
|
||||
pub inline fn changeWindowAttributesAux(c: *Connection, window: Window, value_mask: Cw, value_list: *const ChangeWindowAttributesValueList) VoidCookie {
|
||||
return import.xcb_change_window_attributes_aux(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
@@ -126,19 +126,19 @@ pub const Connection = opaque {
|
||||
return import.xcb_unmap_subwindows(c, window);
|
||||
}
|
||||
|
||||
pub inline fn configureWindowChecked(c: *Connection, window: Window, value_mask: u16, value_list: ?*const anyopaque) VoidCookie {
|
||||
pub inline fn configureWindowChecked(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: ?*const anyopaque) VoidCookie {
|
||||
return import.xcb_configure_window_checked(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn configureWindow(c: *Connection, window: Window, value_mask: u16, value_list: ?*const anyopaque) VoidCookie {
|
||||
pub inline fn configureWindow(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: ?*const anyopaque) VoidCookie {
|
||||
return import.xcb_configure_window(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn configureWindowAuxChecked(c: *Connection, window: Window, value_mask: u16, value_list: [*c]const ConfigureWindowValueList) VoidCookie {
|
||||
pub inline fn configureWindowAuxChecked(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: *const ConfigureWindowValueList) VoidCookie {
|
||||
return import.xcb_configure_window_aux_checked(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
pub inline fn configureWindowAux(c: *Connection, window: Window, value_mask: u16, value_list: [*c]const ConfigureWindowValueList) VoidCookie {
|
||||
pub inline fn configureWindowAux(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: *const ConfigureWindowValueList) VoidCookie {
|
||||
return import.xcb_configure_window_aux(c, window, value_mask, value_list);
|
||||
}
|
||||
|
||||
@@ -2496,7 +2496,7 @@ pub const SetMode = enum(c_uint) {
|
||||
_,
|
||||
};
|
||||
|
||||
pub const ConfigWindow = packed struct(c_uint) {
|
||||
pub const ConfigWindow = packed struct(u16) {
|
||||
X: bool = false,
|
||||
Y: bool = false,
|
||||
WIDTH: bool = false,
|
||||
@@ -2504,7 +2504,7 @@ pub const ConfigWindow = packed struct(c_uint) {
|
||||
BORDER_WIDTH: bool = false,
|
||||
SIBLING: bool = false,
|
||||
STACK_MODE: bool = false,
|
||||
_pad7: u25 = 0,
|
||||
_pad7: u9 = 0,
|
||||
};
|
||||
|
||||
pub const StackMode = enum(c_uint) {
|
||||
@@ -3958,10 +3958,10 @@ pub const import = struct {
|
||||
pub extern fn xcb_create_window(c: *Connection, depth: u8, wid: Window, parent: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, _class: WindowClass, visual: Visualid, value_mask: Cw, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_create_window_aux_checked(c: *Connection, depth: u8, wid: Window, parent: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, _class: WindowClass, visual: Visualid, value_mask: Cw, value_list: *const CreateWindowValueList) VoidCookie;
|
||||
pub extern fn xcb_create_window_aux(c: *Connection, depth: u8, wid: Window, parent: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, _class: WindowClass, visual: Visualid, value_mask: Cw, value_list: *const CreateWindowValueList) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes_checked(c: *Connection, window: Window, value_mask: u32, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes(c: *Connection, window: Window, value_mask: u32, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes_aux_checked(c: *Connection, window: Window, value_mask: u32, value_list: [*c]const ChangeWindowAttributesValueList) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes_aux(c: *Connection, window: Window, value_mask: u32, value_list: [*c]const ChangeWindowAttributesValueList) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes_checked(c: *Connection, window: Window, value_mask: Cw, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes(c: *Connection, window: Window, value_mask: Cw, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes_aux_checked(c: *Connection, window: Window, value_mask: Cw, value_list: *const ChangeWindowAttributesValueList) VoidCookie;
|
||||
pub extern fn xcb_change_window_attributes_aux(c: *Connection, window: Window, value_mask: Cw, value_list: *const ChangeWindowAttributesValueList) VoidCookie;
|
||||
pub extern fn xcb_get_window_attributes(c: *Connection, window: Window) GetWindowAttributesCookie;
|
||||
pub extern fn xcb_get_window_attributes_unchecked(c: *Connection, window: Window) GetWindowAttributesCookie;
|
||||
pub extern fn xcb_get_window_attributes_reply(c: *Connection, cookie: GetWindowAttributesCookie, e: ?*?*GenericError) ?*GetWindowAttributesReply;
|
||||
@@ -3981,10 +3981,10 @@ pub const import = struct {
|
||||
pub extern fn xcb_unmap_window(c: *Connection, window: Window) VoidCookie;
|
||||
pub extern fn xcb_unmap_subwindows_checked(c: *Connection, window: Window) VoidCookie;
|
||||
pub extern fn xcb_unmap_subwindows(c: *Connection, window: Window) VoidCookie;
|
||||
pub extern fn xcb_configure_window_checked(c: *Connection, window: Window, value_mask: u16, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_configure_window(c: *Connection, window: Window, value_mask: u16, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_configure_window_aux_checked(c: *Connection, window: Window, value_mask: u16, value_list: [*c]const ConfigureWindowValueList) VoidCookie;
|
||||
pub extern fn xcb_configure_window_aux(c: *Connection, window: Window, value_mask: u16, value_list: [*c]const ConfigureWindowValueList) VoidCookie;
|
||||
pub extern fn xcb_configure_window_checked(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_configure_window(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: ?*const anyopaque) VoidCookie;
|
||||
pub extern fn xcb_configure_window_aux_checked(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: *const ConfigureWindowValueList) VoidCookie;
|
||||
pub extern fn xcb_configure_window_aux(c: *Connection, window: Window, value_mask: ConfigWindow, value_list: *const ConfigureWindowValueList) VoidCookie;
|
||||
pub extern fn xcb_circulate_window_checked(c: *Connection, direction: u8, window: Window) VoidCookie;
|
||||
pub extern fn xcb_circulate_window(c: *Connection, direction: u8, window: Window) VoidCookie;
|
||||
pub extern fn xcb_get_geometry(c: *Connection, drawable: Drawable) GetGeometryCookie;
|
||||
|
||||
Reference in New Issue
Block a user