![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qobject_p.h>
Classes | |
| struct | Data |
Public Member Functions | |
| QMetaCallEvent (ushort method_offset, ushort method_relative, QObjectPrivate::StaticMetaCallFunction callFunction, const QObject *sender, int signalId, void **args, QLatch *latch) | |
| QMetaCallEvent (QtPrivate::QSlotObjectBase *slotObj, const QObject *sender, int signalId, void **args, QLatch *latch) | |
| QMetaCallEvent (QtPrivate::SlotObjUniquePtr slotObj, const QObject *sender, int signalId, void **args, QLatch *latch) | |
| virtual void | placeMetaCall (QObject *object) override |
| Public Member Functions inherited from QAbstractMetaCallEvent | |
| QAbstractMetaCallEvent (const QObject *sender, int signalId, QLatch *latch=nullptr) | |
| ~QAbstractMetaCallEvent () | |
| const QObject * | sender () const |
| int | signalId () const |
| Public Member Functions inherited from QEvent | |
| QEvent (Type type) | |
| Constructs an event object of type type. | |
| virtual | ~QEvent () |
| Destroys the event. | |
| Type | type () const |
| Returns the event type. | |
| bool | spontaneous () const |
Returns true if the event originated outside the application (a system event); otherwise returns false. | |
| virtual void | setAccepted (bool accepted) |
| bool | isAccepted () const |
| void | accept () |
| Sets the accept flag of the event object, the equivalent of calling setAccepted(true). | |
| void | ignore () |
| Clears the accept flag parameter of the event object, the equivalent of calling setAccepted(false). | |
| bool | isInputEvent () const noexcept |
| bool | isPointerEvent () const noexcept |
| bool | isSinglePointEvent () const noexcept |
| virtual QEvent * | clone () const |
| Creates and returns an identical copy of this event. | |
Protected Member Functions | |
| QMetaCallEvent (const QObject *sender, int signalId, Data &&data) | |
| Protected Member Functions inherited from QEvent | |
| QT_DEFINE_TAG_STRUCT (InputEventTag) | |
| QEvent (Type type, InputEventTag) | |
| QT_DEFINE_TAG_STRUCT (PointerEventTag) | |
| QEvent (Type type, PointerEventTag) | |
| QT_DEFINE_TAG_STRUCT (SinglePointEventTag) | |
| QEvent (Type type, SinglePointEventTag) | |
Protected Attributes | |
| struct QMetaCallEvent::Data | d |
| Protected Attributes inherited from QEvent | |
| quint16 | t |
Definition at line 351 of file qobject_p.h.
| QMetaCallEvent::QMetaCallEvent | ( | ushort | method_offset, |
| ushort | method_relative, | ||
| QObjectPrivate::StaticMetaCallFunction | callFunction, | ||
| const QObject * | sender, | ||
| int | signalId, | ||
| void ** | args, | ||
| QLatch * | latch ) |
Used for blocking queued connections, just passes args through without allocating any memory.
Definition at line 492 of file qobject.cpp.
| QMetaCallEvent::QMetaCallEvent | ( | QtPrivate::QSlotObjectBase * | slotO, |
| const QObject * | sender, | ||
| int | signalId, | ||
| void ** | args, | ||
| QLatch * | latch ) |
Used for blocking queued connections, just passes args through without allocating any memory.
Definition at line 507 of file qobject.cpp.
| QMetaCallEvent::QMetaCallEvent | ( | QtPrivate::SlotObjUniquePtr | slotO, |
| const QObject * | sender, | ||
| int | signalId, | ||
| void ** | args, | ||
| QLatch * | latch ) |
Used for blocking queued connections, just passes args through without allocating any memory.
Definition at line 523 of file qobject.cpp.
|
inlineprotected |
Definition at line 534 of file qobject.cpp.
Implements QAbstractMetaCallEvent.
Definition at line 543 of file qobject.cpp.
|
protected |