Struct xcb::x::QueryTextExtents
source · pub struct QueryTextExtents<'a> {
pub font: Fontable,
pub string: &'a [Char2b],
}
Expand description
get text extents
Query text extents from the X11 server. This request returns the bounding box
of the specified 16-bit character string in the specified font
or the font
contained in the specified graphics context.
font_ascent
is set to the maximum of the ascent metrics of all characters in
the string. font_descent
is set to the maximum of the descent metrics.
overall_width
is set to the sum of the character-width metrics of all
characters in the string. For each character in the string, let W be the sum of
the character-width metrics of all characters preceding it in the string. Let L
be the left-side-bearing metric of the character plus W. Let R be the
right-side-bearing metric of the character plus W. The lbearing member is set
to the minimum L of all characters in the string. The rbearing member is set to
the maximum R.
For fonts defined with linear indexing rather than 2-byte matrix indexing, each Char2b structure is interpreted as a 16-bit number with byte1 as the most significant byte. If the font has no defined default character, undefined characters in the string are taken to have all zero metrics.
Characters with all zero metrics are ignored. If the font has no defined default_char, the undefined characters in the string are also ignored.
This request replies QueryTextExtentsReply.
Associated cookie types are QueryTextExtentsCookie and QueryTextExtentsCookieUnchecked.
Fields§
§font: Fontable
The font
to calculate text extents in. You can also pass a graphics context.
string: &'a [Char2b]
The text to get text extents for.
Trait Implementations§
source§impl<'a> Clone for QueryTextExtents<'a>
impl<'a> Clone for QueryTextExtents<'a>
source§fn clone(&self) -> QueryTextExtents<'a>
fn clone(&self) -> QueryTextExtents<'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 QueryTextExtents<'a>
impl<'a> Debug for QueryTextExtents<'a>
source§impl<'a> RawRequest for QueryTextExtents<'a>
impl<'a> RawRequest for QueryTextExtents<'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 QueryTextExtents<'a>
impl<'a> Request for QueryTextExtents<'a>
source§impl<'a> RequestWithReply for QueryTextExtents<'a>
impl<'a> RequestWithReply for QueryTextExtents<'a>
source§type Reply = QueryTextExtentsReply
type Reply = QueryTextExtentsReply
source§type Cookie = QueryTextExtentsCookie
type Cookie = QueryTextExtentsCookie
source§type CookieUnchecked = QueryTextExtentsCookieUnchecked
type CookieUnchecked = QueryTextExtentsCookieUnchecked
Auto Trait Implementations§
impl<'a> Freeze for QueryTextExtents<'a>
impl<'a> RefUnwindSafe for QueryTextExtents<'a>
impl<'a> Send for QueryTextExtents<'a>
impl<'a> Sync for QueryTextExtents<'a>
impl<'a> Unpin for QueryTextExtents<'a>
impl<'a> UnwindSafe for QueryTextExtents<'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
)