[][src]Struct qt_widgets::q_style::RequestSoftwareInputPanel

#[repr(transparent)]
pub struct RequestSoftwareInputPanel(_);

This enum describes under what circumstances a software input panel will be requested by input capable widgets.

C++ enum: QStyle::RequestSoftwareInputPanel.

C++ documentation:

This enum describes under what circumstances a software input panel will be requested by input capable widgets.

See also QInputMethod.

Methods

impl RequestSoftwareInputPanel[src]

pub fn to_int(&self) -> c_int[src]

impl RequestSoftwareInputPanel[src]

pub const RSIPOnMouseClickAndAlreadyFocused: RequestSoftwareInputPanel[src]

Requests an input panel if the user clicks on the widget, but only if it is already focused. (C++ enum variant: RSIP_OnMouseClickAndAlreadyFocused = 0)

pub const RSIPOnMouseClick: RequestSoftwareInputPanel[src]

Requests an input panel if the user clicks on the widget. (C++ enum variant: RSIP_OnMouseClick = 1)

Trait Implementations

impl Clone for RequestSoftwareInputPanel[src]

impl Copy for RequestSoftwareInputPanel[src]

impl Debug for RequestSoftwareInputPanel[src]

impl Eq for RequestSoftwareInputPanel[src]

impl From<RequestSoftwareInputPanel> for c_int[src]

impl From<i32> for RequestSoftwareInputPanel[src]

impl PartialEq<RequestSoftwareInputPanel> for RequestSoftwareInputPanel[src]

impl StructuralEq for RequestSoftwareInputPanel[src]

impl StructuralPartialEq for RequestSoftwareInputPanel[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.