[][src]Struct qt_widgets::SignalOfQDate

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

Emits a Qt signal with arguments *const ::qt_core::QDate.

Corresponding C++ argument types: (const QDate&).

Use connect() method of this object to connect this signal to a slot. Use emit() method to emit the signal.

Methods

impl SignalOfQDate[src]

pub unsafe fn connect_with_type<R>(
    &self,
    connection_type: ConnectionType,
    receiver: R
) -> CppBox<Connection> where
    R: AsReceiver,
    (*const QDate,): ArgumentsCompatible<R::Arguments>, 
[src]

Connects this signal to another signal or slot.

This is a shortcut for self.signal().connect(receiver).

pub unsafe fn connect<R>(&self, receiver: R) -> CppBox<Connection> where
    R: AsReceiver,
    (*const QDate,): ArgumentsCompatible<R::Arguments>, 
[src]

Connects this signal to another signal or slot, using auto connection type.

This is a shortcut for self.signal().connect(receiver).

impl SignalOfQDate[src]

pub fn signal(&self) -> Signal<(*const QDate,)>[src]

Returns a Signal object representing the signal.

This method is useful if you need to connect another signal to this signal. However, when you need to connect this signal to another signal or slot, it's simpler to use the connect() method of this object directly.

pub unsafe fn emit(&self, arg0: impl CastInto<Ref<QDate>>)[src]

Emits the signal.

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

pub unsafe fn new() -> QBox<SignalOfQDate>[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 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 SignalOfQDate[src]

type Arguments = (*const QDate,)

Argument types expected by this receiver.

impl CppDeletable for SignalOfQDate[src]

unsafe fn delete(&self)[src]

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

impl Deref for SignalOfQDate[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_signal_wrapper_QDate_const_ref* ptr).

impl DynamicCast<SignalOfQDate> for QObject[src]

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

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

impl StaticDowncast<SignalOfQDate> for QObject[src]

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

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

impl StaticUpcast<QObject> for SignalOfQDate[src]

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

Calls C++ function: QObject* static_cast<QObject*>(ctr_qt_widgets_ffi_signal_wrapper_QDate_const_ref* 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.