use crate::{q_meta_object::Connection, ConnectionType, QBox, QObject, QPtr};
use cpp_core::{CastInto, CppBox, CppDeletable, Ptr, Ref, StaticUpcast};
use std::ffi::CStr;
use std::fmt;
use std::marker::PhantomData;
/// Argument types compatible for signal connection.
///
/// Qt allows to connect senders to receivers if their argument types are the same.
/// Additionally, Qt allows receivers to have fewer arguments than the sender.
/// Other arguments are simply omitted in such a connection.
///
/// Note that Qt also allows to connect senders to receivers when their argument types
/// are not the same but there is a conversion from sender's argument types
/// to receiver's corresponding argument types. This ability is not exposed in Rust
/// wrapper's API.
///
/// Argument types are expressed as a tuple.
/// `ArgumentsCompatible<T1>` is implemented for `T2` tuple if
/// `T1` tuple can be constructed by removing some elements from the end of `T2`.
///
/// For instance, `ArgumentsCompatible<T>` and `ArgumentsCompatible<()>` are implemented
/// for every `T`.
///
/// `ArgumentsCompatible` is implemented for tuples with up to 16 items.
pub trait ArgumentsCompatible<T> {}
/// Reference to a particular signal or slot of a particular object.
///
/// A `Receiver` can be used as the receiving side of a Qt signal connection.
/// The `Arguments` generic argument specifies argument types of this signal or slot.
pub struct Receiver<Arguments> {
q_object: Ref<QObject>,
receiver_id: &'static CStr,
_marker: PhantomData<Arguments>,
}
impl<A> Clone for Receiver<A> {
fn clone(&self) -> Self {
Receiver {
q_object: self.q_object,
receiver_id: self.receiver_id,
_marker: PhantomData,
}
}
}
impl<A> Copy for Receiver<A> {}
impl<A> fmt::Debug for Receiver<A> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("Receiver")
.field("q_object", &self.q_object)
.field("receiver_id", &self.receiver_id)
.finish()
}
}
impl<A> Receiver<A> {
/// Creates a `Receiver` than references a signal or a slot of `q_object` identified by
/// `receiver_id`.
///
/// This function should not be used manually. It's normally called from functions
/// generated by `ritual`. `receiver_id` is the ID returned by Qt's `SIGNAL` and `SLOT`
/// C++ macros.
///
/// # Safety
///
/// `q_object` must contain a valid pointer to a `QObject`-based object. The object
/// must outlive the created `Receiver` object.
pub unsafe fn new(q_object: impl CastInto<Ref<QObject>>, receiver_id: &'static CStr) -> Self {
Self {
q_object: q_object.cast_into(),
receiver_id,
_marker: PhantomData,
}
}
}
/// Reference to a particular signal of a particular object.
///
/// The `Arguments` generic argument specifies argument types of this signal.
pub struct Signal<Arguments>(Receiver<Arguments>);
impl<A> Clone for Signal<A> {
fn clone(&self) -> Self {
Signal(self.0)
}
}
impl<A> Copy for Signal<A> {}
impl<A> fmt::Debug for Signal<A> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("Signal")
.field("qobject", &self.0.q_object)
.field("receiver_id", &self.0.receiver_id)
.finish()
}
}
impl<A> Signal<A> {
/// Creates a `Signal` than references a signal of `q_object` identified by
/// `receiver_id`.
///
/// This function should not be used manually. It's normally called from functions
/// generated by `ritual`. `receiver_id` is the ID returned by Qt's `SIGNAL`
/// C++ macro.
///
/// # Safety
///
/// `q_object` must contain a valid pointer to a `QObject`-based object. The object
/// must outlive the created `Signal` object.
pub unsafe fn new(q_object: impl CastInto<Ref<QObject>>, receiver_id: &'static CStr) -> Self {
Signal(Receiver::new(q_object, receiver_id))
}
}
/// Values that can be used for specifying the receiving side of a Qt signal connection.
pub trait AsReceiver {
/// Argument types expected by this receiver.
type Arguments;
/// Returns information about this receiver.
fn as_receiver(&self) -> Receiver<Self::Arguments>;
}
impl<A> AsReceiver for Receiver<A> {
type Arguments = A;
fn as_receiver(&self) -> Receiver<A> {
*self
}
}
impl<A> AsReceiver for Signal<A> {
type Arguments = A;
fn as_receiver(&self) -> Receiver<A> {
self.0
}
}
impl<T> AsReceiver for Ptr<T>
where
T: AsReceiver,
{
type Arguments = <T as AsReceiver>::Arguments;
fn as_receiver(&self) -> Receiver<Self::Arguments> {
(**self).as_receiver()
}
}
impl<T> AsReceiver for Ref<T>
where
T: AsReceiver,
{
type Arguments = <T as AsReceiver>::Arguments;
fn as_receiver(&self) -> Receiver<Self::Arguments> {
(**self).as_receiver()
}
}
impl<'a, T: CppDeletable> AsReceiver for &'a CppBox<T>
where
T: AsReceiver,
{
type Arguments = <T as AsReceiver>::Arguments;
fn as_receiver(&self) -> Receiver<Self::Arguments> {
(***self).as_receiver()
}
}
impl<'a, T: StaticUpcast<QObject> + CppDeletable> AsReceiver for &'a QBox<T>
where
T: AsReceiver,
{
type Arguments = <T as AsReceiver>::Arguments;
fn as_receiver(&self) -> Receiver<Self::Arguments> {
(***self).as_receiver()
}
}
impl<'a, T: StaticUpcast<QObject>> AsReceiver for &'a QPtr<T>
where
T: AsReceiver,
{
type Arguments = <T as AsReceiver>::Arguments;
fn as_receiver(&self) -> Receiver<Self::Arguments> {
(***self).as_receiver()
}
}
impl<SignalArguments> Signal<SignalArguments> {
/// Creates a Qt connection between this signal and `receiver`, using the specified
/// `connection_type`.
///
/// Returns an object that represents the connection. You can use `is_valid()` on this object
/// to determine if the connection was successful.
///
/// The connection will automatically be deleted when either the sender or the receiver
/// is deleted.
///
/// # Safety
///
/// The `QObject`s referenced by `self` and `receiver` must be alive.
///
/// [C++ documentation](https://doc.qt.io/qt-5/qobject.html#connect):
/// <div style='border: 1px solid #5CFF95; background: #D6FFE4; padding: 16px;'>
/// <p>Creates a connection of the given <em>type</em> from the <em>signal</em> in the <em>sender</em> object to the <em>method</em> in the <em>receiver</em> object. Returns a handle to the connection that can be used to disconnect it later.</p>
/// <p>You must use the <code>SIGNAL()</code> and <code>SLOT()</code> macros when specifying the <em>signal</em> and the <em>method</em>, for example:</p>
/// <div>
/// <pre><a href="https://doc.qt.io/qt-5/qlabel.html">QLabel</a> *label = new <a href="https://doc.qt.io/qt-5/qlabel.html">QLabel</a>;
/// <a href="https://doc.qt.io/qt-5/qscrollbar.html">QScrollBar</a> *scrollBar = new <a href="https://doc.qt.io/qt-5/qscrollbar.html">QScrollBar</a>;
/// <a href="https://doc.qt.io/qt-5/qobject.html#QObject">QObject</a>::connect(scrollBar, SIGNAL(valueChanged(int)),
/// label, SLOT(setNum(int)));</pre>
/// </div>
/// <p>This example ensures that the label always displays the current scroll bar value. Note that the signal and slots parameters must not contain any variable names, only the type. E.g. the following would not work and return false:</p>
/// <div>
/// <pre>// WRONG
/// <a href="https://doc.qt.io/qt-5/qobject.html#QObject">QObject</a>::connect(scrollBar, SIGNAL(valueChanged(int value)),
/// label, SLOT(setNum(int value)));</pre>
/// </div>
/// <p>A signal can also be connected to another signal:</p>
/// <div>
/// <pre>class MyWidget : public <a href="https://doc.qt.io/qt-5/qwidget.html">QWidget</a>
/// {
/// Q_OBJECT
/// public:
/// MyWidget();
/// signals:
/// buttonClicked();
/// private:
/// <a href="https://doc.qt.io/qt-5/qpushbutton.html">QPushButton</a> *myButton;
/// };
/// MyWidget::MyWidget()
/// {
/// myButton = new <a href="https://doc.qt.io/qt-5/qpushbutton.html">QPushButton</a>(this);
/// connect(myButton, SIGNAL(clicked()),
/// this, SIGNAL(buttonClicked()));
/// }</pre>
/// </div>
/// <p>In this example, the <code>MyWidget</code> constructor relays a signal from a private member variable, and makes it available under a name that relates to <code>MyWidget</code>.</p>
/// <p>A signal can be connected to many slots and signals. Many signals can be connected to one slot.</p>
/// <p>If a signal is connected to several slots, the slots are activated in the same order in which the connections were made, when the signal is emitted.</p>
/// <p>The function returns a <a href="https://doc.qt.io/qt-5/qmetaobject-connection.html">QMetaObject::Connection</a> that represents a handle to a connection if it successfully connects the signal to the slot. The connection handle will be invalid if it cannot create the connection, for example, if <a href="https://doc.qt.io/qt-5/qobject.html">QObject</a> is unable to verify the existence of either <em>signal</em> or <em>method</em>, or if their signatures aren't compatible. You can check if the handle is valid by casting it to a bool.</p>
/// <p>By default, a signal is emitted for every connection you make; two signals are emitted for duplicate connections. You can break all of these connections with a single <a href="https://doc.qt.io/qt-5/qobject.html#disconnect">disconnect</a>() call. If you pass the <a href="https://doc.qt.io/qt-5/qt.html#ConnectionType-enum">Qt::UniqueConnection</a> <em>type</em>, the connection will only be made if it is not a duplicate. If there is already a duplicate (exact same signal to the exact same slot on the same objects), the connection will fail and connect will return an invalid <a href="https://doc.qt.io/qt-5/qmetaobject-connection.html">QMetaObject::Connection</a>.</p>
/// <p><strong>Note: </strong>Qt::UniqueConnections do not work for lambdas, non-member functions and functors; they only apply to connecting to member functions.</p>
/// <p>The optional <em>type</em> parameter describes the type of connection to establish. In particular, it determines whether a particular signal is delivered to a slot immediately or queued for delivery at a later time. If the signal is queued, the parameters must be of types that are known to Qt's meta-object system, because Qt needs to copy the arguments to store them in an event behind the scenes. If you try to use a queued connection and get the error message</p>
/// <div>
/// <pre><a href="https://doc.qt.io/qt-5/qobject.html#QObject">QObject</a>::connect: Cannot queue arguments of type 'MyType'
/// (Make sure 'MyType' is registered using <a href="https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType-1">qRegisterMetaType</a>().)</pre>
/// </div>
/// <p>call <a href="https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType-1">qRegisterMetaType</a>() to register the data type before you establish the connection.</p>
/// <p><strong>Note:</strong> This function is <a href="https://doc.qt.io/qt-5/threads-reentrancy.html">thread-safe</a>.</p>
/// <p><strong>See also </strong><a href="https://doc.qt.io/qt-5/qobject.html#disconnect">disconnect</a>(), <a href="https://doc.qt.io/qt-5/qobject.html#sender">sender</a>(), <a href="https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType-1">qRegisterMetaType</a>(), <a href="https://doc.qt.io/qt-5/qmetatype.html#Q_DECLARE_METATYPE">Q_DECLARE_METATYPE</a>(), and <a href="https://doc.qt.io/qt-5/signalsandslots-syntaxes.html">Differences between String-Based and Functor-Based Connections</a>.</p>
/// </div>
pub unsafe fn connect_with_type<R>(
&self,
connection_type: ConnectionType,
receiver: R,
) -> CppBox<Connection>
where
R: AsReceiver,
SignalArguments: ArgumentsCompatible<R::Arguments>,
{
let receiver = receiver.as_receiver();
crate::QObject::connect_5a(
self.0.q_object.as_ptr(),
self.0.receiver_id.as_ptr(),
receiver.q_object.as_ptr(),
receiver.receiver_id.as_ptr(),
connection_type,
)
}
/// Creates a Qt connection between this signal and `receiver`, using auto connection type.
///
/// See `connect_with_type` for more details.
pub unsafe fn connect<R>(&self, receiver: R) -> CppBox<Connection>
where
R: AsReceiver,
SignalArguments: ArgumentsCompatible<R::Arguments>,
{
self.connect_with_type(ConnectionType::AutoConnection, receiver)
}
}