syntax signal/slots QT - question
I have some questions about signal and slots. First thing the syntax look like this:
Quote:
connect(const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
If i am not wrong:
const QObject *sender-> is the button that start the signal?
const char *signal, -> the signal
const char *method->element receive the signal
Qt::ConnectionType type-> slot
Other question i have, i can call the signal using emit or other way without buttons? thx again!
Re: syntax signal/slots QT - question
Please read the doc for QObject::connect and the doc for signals & slots.