Struct xcb::ffi::xproto::xcb_create_glyph_cursor_request_t[][src]

#[repr(C)]pub struct xcb_create_glyph_cursor_request_t {
    pub major_opcode: u8,
    pub pad0: u8,
    pub length: u16,
    pub cid: xcb_cursor_t,
    pub source_font: xcb_font_t,
    pub mask_font: xcb_font_t,
    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,
}

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).

Fields

major_opcode: u8pad0: u8length: u16cid: xcb_cursor_t

The ID with which you will refer to the cursor, created by xcb_generate_id.

source_font: xcb_font_t

In which font to look for the cursor glyph.

mask_font: xcb_font_t

In which font to look for the mask glyph.

source_char: u16

The glyph of source_font to use.

mask_char: u16

The 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: u16

The red value of the foreground color.

fore_green: u16

The green value of the foreground color.

fore_blue: u16

The blue value of the foreground color.

back_red: u16

The red value of the background color.

back_green: u16

The green value of the background color.

back_blue: u16

The blue value of the background color.

Trait Implementations

impl Clone for xcb_create_glyph_cursor_request_t[src]

impl Copy for xcb_create_glyph_cursor_request_t[src]

Auto Trait Implementations

impl RefUnwindSafe for xcb_create_glyph_cursor_request_t

impl Send for xcb_create_glyph_cursor_request_t

impl Sync for xcb_create_glyph_cursor_request_t

impl Unpin for xcb_create_glyph_cursor_request_t

impl UnwindSafe for xcb_create_glyph_cursor_request_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.