Struct xcb::x::ImageText8
source · pub struct ImageText8<'a> {
pub drawable: Drawable,
pub gc: Gcontext,
pub x: i16,
pub y: i16,
pub string: &'a [u8],
}
Expand description
Draws text
Fills the destination rectangle with the background pixel from gc
, then
paints the text with the foreground pixel from gc
. The upper-left corner of
the filled rectangle is at [x, y - font-ascent]. The width is overall-width,
the height is font-ascent + font-descent. The overall-width, font-ascent and
font-descent are as returned by QueryTextExtents (TODO).
Note that using X core fonts is deprecated (but still supported) in favor of client-side rendering using Xft.
This request has no reply.
Associated cookie types are VoidCookie and VoidCookieChecked.
Fields§
§drawable: Drawable
The drawable (Window or Pixmap) to draw text on.
gc: Gcontext
The graphics context to use.
The following graphics context components are used: plane-mask, foreground, background, font, subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask.
x: i16
The x coordinate of the first character, relative to the origin of drawable
.
y: i16
The y coordinate of the first character, relative to the origin of drawable
.
string: &'a [u8]
The string to draw. Only the first 255 characters are relevant due to the data
type of string_len
.
Trait Implementations§
source§impl<'a> Clone for ImageText8<'a>
impl<'a> Clone for ImageText8<'a>
source§fn clone(&self) -> ImageText8<'a>
fn clone(&self) -> ImageText8<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'a> Debug for ImageText8<'a>
impl<'a> Debug for ImageText8<'a>
source§impl<'a> RawRequest for ImageText8<'a>
impl<'a> RawRequest for ImageText8<'a>
source§fn raw_request(&self, c: &Connection, checked: bool) -> u64
fn raw_request(&self, c: &Connection, checked: bool) -> u64
source§impl<'a> Request for ImageText8<'a>
impl<'a> Request for ImageText8<'a>
impl<'a> RequestWithoutReply for ImageText8<'a>
Auto Trait Implementations§
impl<'a> Freeze for ImageText8<'a>
impl<'a> RefUnwindSafe for ImageText8<'a>
impl<'a> Send for ImageText8<'a>
impl<'a> Sync for ImageText8<'a>
impl<'a> Unpin for ImageText8<'a>
impl<'a> UnwindSafe for ImageText8<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)