在Qt / PyQt中将自定义QEvent传播到父窗口小部件

时间:2010-07-05 15:03:34

标签: qt events pyqt event-propagation

拳头,对问题的长度道歉。

我正在尝试将自定义Qt事件从子窗口小部件传播到顶部父窗口小部件,以便根据事件类型触发某些操作,而不是链接信号。

Qt docs建议使用postEvent()发布的每个具有accept()ignore()方法的事件都可以传播(意味着每个QEvent子类)。

我尝试覆盖customEvents方法而不是events,但无济于事。

的Python

我在Python中使用PyQt4尝试了这个(Qt版本是4.6)。

from PyQt4.QtGui import *
from PyQt4.QtCore import *

class Foo(QWidget):
    def doEvent(self):
        QApplication.postEvent(self, QEvent(12345))

    def event(self, event):
        event.ignore()
        return False

class Bar(QWidget):
    def __init__(self, *args, **kwargs):
        super(Bar, self).__init__(*args, **kwargs)
        self.foo = Foo(self)
        layout = QHBoxLayout()
        layout.addWidget(self.foo)
        self.setLayout(layout)

    def event(self, event):
        if event.type() == 12345:
            self.someEventHandler()
        return True

    def someEventHandler(self):
        print 'Handler in {0}'.format(self.__class__.__name__)

if __name__=='__main__':
    app = QApplication([''])
    bar = Bar()
    bar.show()
    bar.foo.doEvent()
    app.exec_()

在此示例中Bar.someEventHandler()只会在事件以self.parent()作为第一个参数发布时触发,如下所示:

def doEvent(self):
    QApplication.postEvent(self.parent(), QEvent(12345))

这是可以理解的,因为事件直接传递给接收对象。

C ++

C ++中的类似示例:

foobar.h中

#ifndef FOOBAR_H
#define FOOBAR_H

#include <QtGui>

class Foo : public QWidget
{
    Q_OBJECT

public:
    Foo(QWidget *parent = 0);
    void doEvent();
    bool event(QEvent *);
};


class Bar : public QWidget
{
    Q_OBJECT

public:
    Bar(QWidget *parent = 0);
    Foo *foo;
    bool event(QEvent *);
};

#endif // FOOBAR_H

foobar.cpp

#include "foobar.h"

Foo::Foo(QWidget *parent)
     : QWidget(parent) {}

void Foo::doEvent() {
    QEvent *event = new QEvent(QEvent::User);
    QApplication::postEvent(this, event);
}

bool Foo::event(QEvent *event)
{
    event->ignore();
    return QWidget::event(event);
}

Bar::Bar(QWidget *parent)
     : QWidget(parent)
 {
    foo = new Foo(this);
}

bool Bar::event(QEvent *event)
{
    if (event->type() == QEvent::User) {
        qDebug() << "Handler triggered";
        return true;
    }
    return QWidget::event(event);
}

的main.cpp

#include <QtGui>
#include "foobar.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    Bar bar(0);
    bar.show();
    bar.foo->doEvent();
    return app.exec();
}

与python相同,只有在事件直接传递给对象时才有效。

void Foo::doEvent() {
    QEvent *event = new QEvent(QEvent::User);
    QApplication::postEvent(this->parentWidget(), event);
}

也许我错过了这一点,是否有可能只向上传播Key和Mouse事件?

3 个答案:

答案 0 :(得分:18)

我花了一些时间浏览Qt源代码来回答你的问题,我最终想到的是:事件向父窗口小部件的传播是由QApplication::notify执行的,基本上是switch长{{}} 1}}语句与各种事件。例如,这是QEvent::WhatsThisClicked

的完成方式
...
case QEvent::WhatsThisClicked:
        {
            QWidget *w = static_cast<QWidget *>(receiver);
            while (w) {
                res = d->notify_helper(w, e);
                if ((res && e->isAccepted()) || w->isWindow())
                    break;
                w = w->parentWidget();
            }
        }
...

现在,重点是:对于用户定义的事件(以及许多其他显式处理的标准Qt事件)执行,因为default子句是:

 default:
        res = d->notify_helper(receiver, e);
        break;

并且notify_helper不传播事件。所以,我的答案是:显然,用户定义的事件不会传播到父窗口小部件,你必须自己做(或更好:覆盖QApplication::notify(它是一个虚拟公共成员)并为你的事件添加事件传播(或多个))。

我希望有所帮助。

答案 1 :(得分:5)

在Python中重新实现QApplication.notify传播自定义事件。

在Qt中notfy_helper确保调用事件过滤器(QApplications和接收器),但我跳过它,因为我不需要它们,notfy_helper是私有成员。

from PyQt4.QtCore import QEvent
from PyQt4.QtGui import QApplication

class MyApp(QApplication):
    def notify(self, receiver, event):
        if event.type() > QEvent.User:
            w = receiver
            while(w):
                # Note that this calls `event` method directly thus bypassing
                # calling qApplications and receivers event filters
                res = w.event(event);
                if res and event.isAccepted():
                    return res
                w = w.parent()
        return super(MyApp, self).notify(receiver, event)

而不是使用QApplication的实例,我们使用子类的实例。

import sys
if __name__=='__main__':
    app = MyApp(sys.argv)

答案 2 :(得分:1)

作为rebus答案的替代方案,此代码段实现了事件的手动传播:

def _manual_propagate(target, evt):
    app = QtGui.QApplication.instance()
    while target:
        app.sendEvent(target, evt)
        if not evt.isAccepted():
            if hasattr(target, 'parent'):
                target = target.parent()
        else:
            target = None
    return evt.isAccepted()

请注意,这使用sendEvent,因此必须在目标对象所在的线程上调用。这个限制可以通过更多间接来解决。

请注意,您需要自己调用_manual_propagate /而不是/ sendEvent。这是rebus技术的“自动化程度较低”版本。

此外,由于此版本使用sendEvent,因此可以正确调用对象上的事件过滤器。


自定义事件未传播的相关原因(至少在Qt 4.8中)是:

//qobject.cpp
bool QObject::event(QEvent *e)
{
    switch (e->type()) {
    //several cases skipped
    default:
        if (e->type() >= QEvent::User) {
            customEvent(e);
            break;
        }
        return false;
    }
    return true;
}

//more skips

/*!
    This event handler can be reimplemented in a subclass to receive
    custom events. Custom events are user-defined events with a type
    value at least as large as the QEvent::User item of the
    QEvent::Type enum, and is typically a QEvent subclass. The event
    is passed in the \a event parameter.

    \sa event(), QEvent
*/
void QObject::customEvent(QEvent * /* event */)
{
}

也就是说,QObject::event在收到自定义事件时会调用另一种方法,然后break调出switch语句并执行return true;'。这个return true向呼叫者发出信号(通常QCoreApplication::notify表示事件已被处理。