[][src]Struct qt_widgets::SlotOfQAbstractButtonBool

#[repr(C)]pub struct SlotOfQAbstractButtonBool { /* fields omitted */ }

Binds a Qt signal with arguments *mut crate::QAbstractButton,bool to a Rust closure.

Corresponding C++ argument types: (QAbstractButton*, bool).

Create an object using new() and bind your closure using set(). The closure will be called with the signal's arguments when the slot is invoked. Use connect() method of a qt_core::Signal object to connect the signal to this slot. The closure will be executed each time the slot is invoked until source signals are disconnected or the slot object is destroyed.

The slot object takes ownership of the passed closure. If set() is called again, previously set closure is dropped. Make sure that the slot object does not outlive objects referenced by the closure.

If set() was not called, slot invocation has no effect.

Methods

impl SlotOfQAbstractButtonBool[src]

pub unsafe fn meta_object(&self) -> Ptr<QMetaObject>[src]

pub unsafe fn new<T: FnMut(QPtr<QAbstractButton>, bool) + 'static>(
    parent: impl CastInto<Ptr<QObject>>,
    callback: T
) -> QBox<SlotOfQAbstractButtonBool>
[src]

Creates a new object.

pub unsafe fn qt_metacall(
    &self,
    arg1: Call,
    arg2: c_int,
    arg3: *mut *mut c_void
) -> c_int
[src]

pub unsafe fn qt_metacast(&self, arg1: *const c_char) -> *mut c_void[src]

pub unsafe fn set<T: FnMut(QPtr<QAbstractButton>, bool) + 'static>(
    &self,
    callback: T
)
[src]

Assigns callback as the signal handler.

func will be called each time a connected signal is emitted. Any previously assigned function will be deregistered. Passing None will deregister the handler without setting a new one.

pub unsafe fn slot(&self, arg0: impl CastInto<Ptr<QAbstractButton>>, arg1: bool)[src]

Calls the slot directly, invoking the assigned handler (if any).

pub unsafe fn static_meta_object() -> Ref<QMetaObject>[src]

pub unsafe fn tr(
    s: *const c_char,
    c: *const c_char,
    n: c_int
) -> CppBox<QString>
[src]

pub unsafe fn tr_utf8(
    s: *const c_char,
    c: *const c_char,
    n: c_int
) -> CppBox<QString>
[src]

Trait Implementations

impl AsReceiver for SlotOfQAbstractButtonBool[src]

type Arguments = (*mut QAbstractButton, bool)

Argument types expected by this receiver.

impl CppDeletable for SlotOfQAbstractButtonBool[src]

unsafe fn delete(&self)[src]

Calls C++ function: [destructor] void ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool::~ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool().

impl Deref for SlotOfQAbstractButtonBool[src]

type Target = QObject

The resulting type after dereferencing.

fn deref(&self) -> &QObject[src]

Calls C++ function: QObject* static_cast<QObject*>(ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool* ptr).

impl DynamicCast<SlotOfQAbstractButtonBool> for QObject[src]

unsafe fn dynamic_cast(ptr: Ptr<QObject>) -> Ptr<SlotOfQAbstractButtonBool>[src]

Calls C++ function: ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool* dynamic_cast<ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool*>(QObject* ptr).

impl StaticDowncast<SlotOfQAbstractButtonBool> for QObject[src]

unsafe fn static_downcast(ptr: Ptr<QObject>) -> Ptr<SlotOfQAbstractButtonBool>[src]

Calls C++ function: ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool* static_cast<ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool*>(QObject* ptr).

impl StaticUpcast<QObject> for SlotOfQAbstractButtonBool[src]

unsafe fn static_upcast(ptr: Ptr<SlotOfQAbstractButtonBool>) -> Ptr<QObject>[src]

Calls C++ function: QObject* static_cast<QObject*>(ctr_qt_widgets_ffi_slot_wrapper_QAbstractButton_ptr_bool* ptr).

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, 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.