Struct x11rb_protocol::protocol::xproto::CreateGlyphCursorRequest
source · [−]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 byxcb_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 ofsource_font
to use.mask_char
- The glyph ofmask_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 specifiedsource_font
ormask_font
does not exist.Value
- Eithersource_char
ormask_char
are not defined insource_font
ormask_font
, respectively.
Fields
cid: Cursor
source_font: Font
mask_font: Font
source_char: u16
mask_char: u16
fore_red: u16
fore_green: u16
fore_blue: u16
back_red: u16
back_green: u16
back_blue: u16
Implementations
sourceimpl CreateGlyphCursorRequest
impl CreateGlyphCursorRequest
sourcepub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
pub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations
sourceimpl Clone for CreateGlyphCursorRequest
impl Clone for CreateGlyphCursorRequest
sourcefn clone(&self) -> CreateGlyphCursorRequest
fn clone(&self) -> CreateGlyphCursorRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateGlyphCursorRequest
impl Debug for CreateGlyphCursorRequest
sourceimpl Default for CreateGlyphCursorRequest
impl Default for CreateGlyphCursorRequest
sourcefn default() -> CreateGlyphCursorRequest
fn default() -> CreateGlyphCursorRequest
Returns the “default value” for a type. Read more
sourceimpl Hash for CreateGlyphCursorRequest
impl Hash for CreateGlyphCursorRequest
sourceimpl Ord for CreateGlyphCursorRequest
impl Ord for CreateGlyphCursorRequest
sourceimpl PartialEq<CreateGlyphCursorRequest> for CreateGlyphCursorRequest
impl PartialEq<CreateGlyphCursorRequest> for CreateGlyphCursorRequest
sourcefn eq(&self, other: &CreateGlyphCursorRequest) -> bool
fn eq(&self, other: &CreateGlyphCursorRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateGlyphCursorRequest) -> bool
fn ne(&self, other: &CreateGlyphCursorRequest) -> bool
This method tests for !=
.
sourceimpl PartialOrd<CreateGlyphCursorRequest> for CreateGlyphCursorRequest
impl PartialOrd<CreateGlyphCursorRequest> for CreateGlyphCursorRequest
sourcefn partial_cmp(&self, other: &CreateGlyphCursorRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &CreateGlyphCursorRequest) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Request for CreateGlyphCursorRequest
impl Request for CreateGlyphCursorRequest
impl Copy for CreateGlyphCursorRequest
impl Eq for CreateGlyphCursorRequest
impl StructuralEq for CreateGlyphCursorRequest
impl StructuralPartialEq for CreateGlyphCursorRequest
impl VoidRequest for CreateGlyphCursorRequest
Auto Trait Implementations
impl RefUnwindSafe for CreateGlyphCursorRequest
impl Send for CreateGlyphCursorRequest
impl Sync for CreateGlyphCursorRequest
impl Unpin for CreateGlyphCursorRequest
impl UnwindSafe for CreateGlyphCursorRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more