Struct ChangePropertyRequest
pub struct ChangePropertyRequest<'input> {
pub mode: PropMode,
pub window: u32,
pub property: u32,
pub type_: u32,
pub format: u8,
pub data_len: u32,
pub data: Cow<'input, [u8]>,
}
Expand description
Changes a window property.
Sets or updates a property on the specified window
. Properties are for
example the window title (WM_NAME
) or its minimum size (WM_NORMAL_HINTS
).
Protocols such as EWMH also use properties - for example EWMH defines the
window title, encoded as UTF-8 string, in the _NET_WM_NAME
property.
§Fields
window
- The window whose property you want to change.mode
-property
- The property you want to change (an atom).type
- The type of the property you want to change (an atom).format
- Specifies whether the data should be viewed as a list of 8-bit, 16-bit or 32-bit quantities. Possible values are 8, 16 and 32. This information allows the X server to correctly perform byte-swap operations as necessary.data_len
- Specifies the number of elements (seeformat
).data
- The property data.
§Errors
Match
- TODO: reasons?Value
- TODO: reasons?Window
- The specifiedwindow
does not exist.Atom
-property
ortype
do not refer to a valid atom.Alloc
- The X server could not store the property (no memory?).
§See
InternAtom
: requestxprop
: program
§Example
/*
* Sets the WM_NAME property of the window to "XCB Example".
*
*/
void my_example(xcb_connection_t *conn, xcb_window_t window) {
xcb_change_property(conn,
XCB_PROP_MODE_REPLACE,
window,
XCB_ATOM_WM_NAME,
XCB_ATOM_STRING,
8,
strlen("XCB Example"),
"XCB Example");
xcb_flush(conn);
}
Fields§
§mode: PropMode
§window: u32
§property: u32
§type_: u32
§format: u8
§data_len: u32
§data: Cow<'input, [u8]>
Implementations§
§impl<'input> ChangePropertyRequest<'input>
impl<'input> ChangePropertyRequest<'input>
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
Serialize this request into bytes for the provided connection
pub fn into_owned(self) -> ChangePropertyRequest<'static>
pub fn into_owned(self) -> ChangePropertyRequest<'static>
Clone all borrowed data in this ChangePropertyRequest.
Trait Implementations§
§impl<'input> Clone for ChangePropertyRequest<'input>
impl<'input> Clone for ChangePropertyRequest<'input>
§fn clone(&self) -> ChangePropertyRequest<'input>
fn clone(&self) -> ChangePropertyRequest<'input>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ChangePropertyRequest<'_>
impl Debug for ChangePropertyRequest<'_>
§impl<'input> Default for ChangePropertyRequest<'input>
impl<'input> Default for ChangePropertyRequest<'input>
§fn default() -> ChangePropertyRequest<'input>
fn default() -> ChangePropertyRequest<'input>
Returns the “default value” for a type. Read more
§impl<'input> Request for ChangePropertyRequest<'input>
impl<'input> Request for ChangePropertyRequest<'input>
impl<'input> VoidRequest for ChangePropertyRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for ChangePropertyRequest<'input>
impl<'input> RefUnwindSafe for ChangePropertyRequest<'input>
impl<'input> Send for ChangePropertyRequest<'input>
impl<'input> Sync for ChangePropertyRequest<'input>
impl<'input> Unpin for ChangePropertyRequest<'input>
impl<'input> UnwindSafe for ChangePropertyRequest<'input>
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)