pub struct CreateGlyphCursorRequest {
    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).

Fields

  • cid - The ID with which you will refer to the cursor, created by xcb_generate_id.
  • source_font - In which font to look for the cursor glyph.
  • mask_font - In which font to look for the mask glyph.
  • source_char - The glyph of source_font to use.
  • mask_char - 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 - The red value of the foreground color.
  • fore_green - The green value of the foreground color.
  • fore_blue - The blue value of the foreground color.
  • back_red - The red value of the background color.
  • back_green - The green value of the background color.
  • back_blue - The blue value of the background color.

Errors

  • Alloc - The X server could not allocate the requested resources (no memory?).
  • Font - The specified source_font or mask_font does not exist.
  • Value - Either source_char or mask_char are not defined in source_font or mask_font, respectively.

Fields

cid: Cursorsource_font: Fontmask_font: Fontsource_char: u16mask_char: u16fore_red: u16fore_green: u16fore_blue: u16back_red: u16back_green: u16back_blue: u16

Implementations

Serialize this request into bytes for the provided connection

Parse this request given its header, its body, and any fds that go along with it

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

The protocol name of the extension that this request belongs to, or None for core requests

Serialize this request into its X11 protocol wire representation. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.