Lines Matching defs:Screen
2016 pub struct Screen { struct
2017 pub ext_data: *mut XExtData,
2018 pub display: *mut _XDisplay,
2019 pub root: Window,
2020 pub width: ::std::os::raw::c_int,
2021 pub height: ::std::os::raw::c_int,
2022 pub mwidth: ::std::os::raw::c_int,
2023 pub mheight: ::std::os::raw::c_int,
2024 pub ndepths: ::std::os::raw::c_int,
2025 pub depths: *mut Depth,
2026 pub root_depth: ::std::os::raw::c_int,
2027 pub root_visual: *mut Visual,
2028 pub default_gc: GC,
2029 pub cmap: Colormap,
2030 pub white_pixel: ::std::os::raw::c_ulong,
2031 pub black_pixel: ::std::os::raw::c_ulong,
2032 pub max_maps: ::std::os::raw::c_int,
2033 pub min_maps: ::std::os::raw::c_int,
2034 pub backing_store: ::std::os::raw::c_int,
2035 pub save_unders: ::std::os::raw::c_int,
2036 pub root_input_mask: ::std::os::raw::c_long,
2638 pub fn XDefaultScreenOfDisplay(arg1: *mut Display) -> *mut Screen; in XDefaultScreenOfDisplay()