_ZN11QMetaObject7connectEPK7QObjectiS2_iiPi

Name

QMetaObject::connect -- connect signals

Synopsis


#include <QtCore/qmetaobject.h>

bool QMetaObject::connect(const QObject * sender, int signal_index, const QObject * receiver, int method_index, int type, int * types);

Description

The QMetaObject::connect() function shall connect the signal with signal_index index from the sender to the receiver's slot.

The type specifies connection type and should have one of the Qt::ConnectionType values.

types is a 0-terminated vector of meta types for queued connections.

If signal_index is -1, then the function shall effectively connect all signals from the sender to the receiver's slot.

This function is not intended to be used by applications directly, but may appear among appliction dependencies as a result of usage of other functions and macros.