返回介绍

QSignal Class

发布于 2019-10-04 15:02:36 字数 4739 浏览 1080 评论 0 收藏 0

The QSignal class can be used to send signals for classes that don't inherit QObject. More...

#include <qsignal.h>

Inherits QObject.

List of all member functions.

Public Members

  • QSignal ( QObject*parent = 0, constchar*name = 0 )
  • ~QSignal ()
  • bool connect ( constQObject*receiver, constchar*member )
  • bool disconnect ( constQObject*receiver, constchar*member = 0 )
  • void activate ()
  • bool isBlocked () const (obsolete)
  • void block ( boolb ) (obsolete)
  • void setParameter ( intvalue ) (obsolete)
  • int parameter () const (obsolete)
  • void setValue ( constQVariant&value )
  • QVariant value () const

Detailed Description

The QSignal class can be used to send signals for classes that don't inherit QObject.

If you want to send signals from a class that does not inherit QObject, you can create an internal QSignal object to emit the signal. You must also provide a function that connects the signal to an outside object slot. This is how we have implemented signals in the QMenuData class, which is not a QObject.

In general, we recommend inheriting QObject instead. QObject provides much more functionality.

You can set a single QVariant parameter for the signal with setValue().

Note that QObject is a private base class of QSignal, i.e. you cannot call any QObject member functions from a QSignal object.

Example:

        #include <qsignal.h>

        class MyClass
        {
        public:
            MyClass();
            ~MyClass();

            void doSomething();

            void connect( QObject *receiver, const char *member );

        private:
            QSignal *sig;
        };

        MyClass::MyClass()
        {
            sig = new QSignal;
        }

        MyClass::~MyClass()
        {
            delete sig;
        }

        void MyClass::doSomething()
        {
            // ... does something
            sig->activate(); // emits the signal
        }

        void MyClass::connect( QObject *receiver, const char *member )
        {
            sig->connect( receiver, member );
        }
    

See also Input/Output and Networking and Miscellaneous Classes.


Member Function Documentation

QSignal::QSignal ( QObject*parent = 0, constchar*name = 0 )

Constructs a signal object called name, with the parent object parent. These arguments are passed directly to QObject.

QSignal::~QSignal ()

Destroys the signal. All connections are removed, as is the case with all QObjects.

void QSignal::activate ()

Emits the signal. If the platform supports QVariant and a parameter has been set with setValue(), this value is passed in the signal.

void QSignal::block ( boolb )

This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

Blocks the signal if b is TRUE, or unblocks the signal if b is FALSE.

An activated signal disappears into hyperspace if it is blocked.

See also isBlocked(), activate() and QObject::blockSignals().

bool QSignal::connect ( constQObject*receiver, constchar*member )

Connects the signal to member in object receiver.

See also disconnect() and QObject::connect().

bool QSignal::disconnect ( constQObject*receiver, constchar*member = 0 )

Disonnects the signal from member in object receiver.

See also connect() and QObject::disconnect().

bool QSignal::isBlocked () const

This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

Returns TRUE if the signal is blocked, or FALSE if it is not blocked.

The signal is not blocked by default.

See also block() and QObject::signalsBlocked().

int QSignal::parameter () const

This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

void QSignal::setParameter ( intvalue )

This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

void QSignal::setValue ( constQVariant&value )

Sets the signal's parameter to value

QVariant QSignal::value () const

Returns the signal's parameter

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文