pub struct RequestSoftwareInputPanel(/* private fields */);Expand description
This enum describes under what circumstances a software input panel will be requested by input capable widgets.
C++ enum: QStyle::RequestSoftwareInputPanel.
This enum describes under what circumstances a software input panel will be requested by input capable widgets.
See also QInputMethod.
Implementations§
Source§impl RequestSoftwareInputPanel
impl RequestSoftwareInputPanel
Sourcepub const RSIPOnMouseClickAndAlreadyFocused: RequestSoftwareInputPanel
pub const RSIPOnMouseClickAndAlreadyFocused: RequestSoftwareInputPanel
Requests an input panel if the user clicks on the widget, but only if it is already focused. (C++ enum variant: RSIP_OnMouseClickAndAlreadyFocused = 0)
Sourcepub const RSIPOnMouseClick: RequestSoftwareInputPanel
pub const RSIPOnMouseClick: RequestSoftwareInputPanel
Requests an input panel if the user clicks on the widget. (C++ enum variant: RSIP_OnMouseClick = 1)
Trait Implementations§
Source§impl Clone for RequestSoftwareInputPanel
impl Clone for RequestSoftwareInputPanel
Source§fn clone(&self) -> RequestSoftwareInputPanel
fn clone(&self) -> RequestSoftwareInputPanel
Returns a duplicate 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 moreSource§impl Debug for RequestSoftwareInputPanel
impl Debug for RequestSoftwareInputPanel
Source§impl From<RequestSoftwareInputPanel> for c_int
impl From<RequestSoftwareInputPanel> for c_int
Source§fn from(value: RequestSoftwareInputPanel) -> Self
fn from(value: RequestSoftwareInputPanel) -> Self
Converts to this type from the input type.
Source§impl From<i32> for RequestSoftwareInputPanel
impl From<i32> for RequestSoftwareInputPanel
impl Copy for RequestSoftwareInputPanel
impl Eq for RequestSoftwareInputPanel
impl StructuralPartialEq for RequestSoftwareInputPanel
Auto Trait Implementations§
impl Freeze for RequestSoftwareInputPanel
impl RefUnwindSafe for RequestSoftwareInputPanel
impl Send for RequestSoftwareInputPanel
impl Sync for RequestSoftwareInputPanel
impl Unpin for RequestSoftwareInputPanel
impl UnwindSafe for RequestSoftwareInputPanel
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