Using any c++ function as a Qt slot

风流意气都作罢 提交于 2019-12-01 15:17:06
pnezis

You cannot in Qt versions < Qt 5.

In order to use signals/slots the meta object compiler has to be invoked. To make this happen your class should meet the following requirements:

  • Inherit from QObject or any other subclass (eg QWidget, QPushButton etc)
  • The Q_OBJECT macro should be defined in the private section of the class in order to enable meta-object features such as slots
  • Use the Qt keywords slots and signals in order to declare which functions should be handles by the meta compiler as slots or signals

For more details check the corresponding documentation pages about the meta-object system and the signals & slots

Also check the QObject documentation:

Notice that the Q_OBJECT macro is mandatory for any object that implements signals, slots or properties. You also need to run the Meta Object Compiler on the source file. We strongly recommend the use of this macro in all subclasses of QObject regardless of whether or not they actually use signals, slots and properties, since failure to do so may lead certain functions to exhibit strange behavior.

Edit: Since Qt 5, functors and lambda expressions can be used as slot. See New Signal Slot Syntax in Qt 5

Since Qt 5, functors and lambda expressions can be used as slot (as previously mentioned, here: http://qt-project.org/wiki/New_Signal_Slot_Syntax).

As I could not find example code, I added the following:

This example uses boost::function for a class member ClassName::classMember() without parameters.

    boost::function<void()> f= boost::bind(&ClassName::classMember, classInstance);
    connect(QObjectInstance, &QObject::signalName, f);

When the Qt signal and class member have parameters (for instance ClassName::classMember(int)), the boost function should be adapted as follows:

    boost::function<void(int)> f= boost::bind(&ClassName::classMember, classInstance, _1);

More information on boost::bind can be found in the documentation: http://www.boost.org/doc/libs/1_55_0/libs/bind/bind.html

In Qt 5, you can. See http://qt-project.org/wiki/New_Signal_Slot_Syntax

In Qt 4, this is not directly supported but there are a couple of libraries which provide this functionality by proxying the signal via a slot in a hidden QObject which then calls your non-slot function. My attempt at this can be found at https://github.com/robertknight/qt-signal-tools . There are links to other implementations on the bottom of the README.

Unlikely. The Qt-meta-object-compiler (moc) wraps the function, are marked as slot-s, in relatively large code-wrapper. Files, created by moc, begin with moc_, look them.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!