Can Qt signals return a value?
OK. So, I did a little more investigating. Seems this is possible. I was able to emit a signal, and receive value from the slot the signal was connected to. But, the problem was that it only returned the last return value from the multiple connected slots: Here’s a simple class definition (main.cpp): #include <QObject> … Read more