#include <qobject_p.h>
Inheritance diagram for QMetaCallEvent:


Definition at line 119 of file qobject_p.h.
Public Member Functions | |
| QMetaCallEvent (int id, const QObject *sender=0, int nargs=0, int *types=0, void **args=0) | |
| QMetaCallEvent (int id, const QObject *sender, int idFrom, int idTo, int nargs=0, int *types=0, void **args=0) | |
| ~QMetaCallEvent () | |
| int | id () const |
| const QObject * | sender () const |
| int | signalIdStart () const |
| int | signalIdEnd () const |
| void ** | args () const |
Private Attributes | |
| int | id_ |
| const QObject * | sender_ |
| int | idFrom_ |
| int | idTo_ |
| int | nargs_ |
| int * | types_ |
| void ** | args_ |
| QMetaCallEvent::QMetaCallEvent | ( | int | id, | |
| const QObject * | sender = 0, |
|||
| int | nargs = 0, |
|||
| int * | types = 0, |
|||
| void ** | args = 0 | |||
| ) |
| QMetaCallEvent::QMetaCallEvent | ( | int | id, | |
| const QObject * | sender, | |||
| int | idFrom, | |||
| int | idTo, | |||
| int | nargs = 0, |
|||
| int * | types = 0, |
|||
| void ** | args = 0 | |||
| ) |
| QMetaCallEvent::~QMetaCallEvent | ( | ) |
Definition at line 469 of file qobject.cpp.
References args_, QMetaType::destroy(), i, nargs_, qFree(), and types_.
00470 { 00471 for (int i = 0; i < nargs_; ++i) { 00472 if (types_[i] && args_[i]) 00473 QMetaType::destroy(types_[i], args_[i]); 00474 } 00475 if (types_) qFree(types_); 00476 if (args_) qFree(args_); 00477 }
Here is the call graph for this function:

| int QMetaCallEvent::id | ( | ) | const [inline] |
| const QObject* QMetaCallEvent::sender | ( | ) | const [inline] |
Definition at line 129 of file qobject_p.h.
Referenced by QObject::event().
00129 { return sender_; }
| int QMetaCallEvent::signalIdStart | ( | ) | const [inline] |
Definition at line 130 of file qobject_p.h.
Referenced by QObject::event().
00130 { return idFrom_; }
| int QMetaCallEvent::signalIdEnd | ( | ) | const [inline] |
| void** QMetaCallEvent::args | ( | ) | const [inline] |
int QMetaCallEvent::id_ [private] |
Definition at line 135 of file qobject_p.h.
const QObject* QMetaCallEvent::sender_ [private] |
Definition at line 136 of file qobject_p.h.
int QMetaCallEvent::idFrom_ [private] |
Definition at line 137 of file qobject_p.h.
int QMetaCallEvent::idTo_ [private] |
Definition at line 138 of file qobject_p.h.
int QMetaCallEvent::nargs_ [private] |
int* QMetaCallEvent::types_ [private] |
void** QMetaCallEvent::args_ [private] |
1.5.1