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