pub struct CreateGlyphCursor {
pub cid: Cursor,
pub source_font: Font,
pub mask_font: Font,
pub source_char: u16,
pub mask_char: u16,
pub fore_red: u16,
pub fore_green: u16,
pub fore_blue: u16,
pub back_red: u16,
pub back_green: u16,
pub back_blue: u16,
}Expand description
create cursor
Creates a cursor from a font glyph. X provides a set of standard cursor shapes in a special font named cursor. Applications are encouraged to use this interface for their cursors because the font can be customized for the individual display type.
All pixels which are set to 1 in the source will use the foreground color (as
specified by fore_red, fore_green and fore_blue). All pixels set to 0
will use the background color (as specified by back_red, back_green and
back_blue).
This request has no reply.
Associated cookie types are VoidCookie and VoidCookieChecked.
Fields§
§cid: CursorThe ID with which you will refer to the cursor, created by Connection::generate_id.
source_font: FontIn which font to look for the cursor glyph.
mask_font: FontIn which font to look for the mask glyph.
source_char: u16The glyph of source_font to use.
mask_char: u16The glyph of mask_font to use as a mask: Pixels which are set to 1 define
which source pixels are displayed. All pixels which are set to 0 are not
displayed.
fore_red: u16The red value of the foreground color.
fore_green: u16The green value of the foreground color.
fore_blue: u16The blue value of the foreground color.
back_red: u16The red value of the background color.
back_green: u16The green value of the background color.
back_blue: u16The blue value of the background color.
Trait Implementations§
Source§impl Clone for CreateGlyphCursor
impl Clone for CreateGlyphCursor
Source§fn clone(&self) -> CreateGlyphCursor
fn clone(&self) -> CreateGlyphCursor
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more