#include <QSet>
Go to the source code of this file.
◆ DECLARE_GENERICEVENTNOTIFY_SENDER
#define DECLARE_GENERICEVENTNOTIFY_SENDER |
( |
|
T, |
|
|
|
B |
|
) |
| |
Value:class T :
public B,
public GenericEventNotifySender \
{ \
public: \
T (
QWidget *xparent) :
B (xparent), GenericEventNotifySender () { } \
~ T (void) = default; \
\
bool event (QEvent *evt) \
{ \
bool result = true; \
if (! notifyReceiversBefore (this, evt)) \
result = B::event (evt); \
notifyReceiversAfter (this, evt); \
return result; \
} \
}
F77_RET_T const F77_INT F77_CMPLX const F77_INT F77_CMPLX * B
Definition at line 89 of file GenericEventNotify.h.