aboutsummaryrefslogtreecommitdiffstats
path: root/PySide2/global.h.in
diff options
context:
space:
mode:
authorjumaroch <juma@roch.com>2015-11-04 18:30:54 +0100
committerjumaroch <juma@roch.com>2015-11-04 18:30:54 +0100
commit27add5d671f824eeb55b3caaaea35ef5d03b9ebc (patch)
tree7f64f035089450c5cb3128a1c5b4e577f14d7887 /PySide2/global.h.in
parent643472eb3eb21d0d730a430c342393a11161a598 (diff)
fix metaobject and signal/slots
Diffstat (limited to 'PySide2/global.h.in')
-rw-r--r--PySide2/global.h.in94
1 files changed, 35 insertions, 59 deletions
diff --git a/PySide2/global.h.in b/PySide2/global.h.in
index 8d77b5f19..0fb649dab 100644
--- a/PySide2/global.h.in
+++ b/PySide2/global.h.in
@@ -141,14 +141,6 @@ public:
: QGenericArgument(aName, static_cast<const void *>(&aData))
{}
};
-template <class T>
-class QArgument<T &>: public QGenericArgument
-{
-public:
- inline QArgument(const char *aName, T &aData)
- : QGenericArgument(aName, static_cast<const void *>(&aData))
- {}
-};
template <typename T>
@@ -327,22 +319,48 @@ struct Q_CORE_EXPORT QMetaObject
} d;
};
-struct QMetaObjectExtraData
-{
- const QMetaObject **objects;
- int (*static_metacall)(QMetaObject::Call, int, void **);
-};
+class Q_CORE_EXPORT QMetaObject::Connection {
+ void *d_ptr; //QObjectPrivate::Connection*
+ explicit Connection(void *data) : d_ptr(data) { }
+ friend class QObject;
+ friend class QObjectPrivate;
+ friend struct QMetaObject;
+public:
+ ~Connection();
+ Connection();
+ Connection(const Connection &other);
+ Connection &operator=(const Connection &other);
+#ifdef Q_QDOC
+ operator bool() const;
+#else
+ typedef void *Connection::*RestrictedBool;
+ operator RestrictedBool() const { return d_ptr ? &Connection::d_ptr : 0; }
+#endif
-inline const char *QMetaObject::className() const
-{ return d.stringdata; }
+#ifdef Q_COMPILER_RVALUE_REFS
+ inline Connection(Connection &&o) : d_ptr(o.d_ptr) { o.d_ptr = 0; }
+ inline Connection &operator=(Connection &&other)
+ { qSwap(d_ptr, other.d_ptr); return *this; }
+#endif
+};
inline const QMetaObject *QMetaObject::superClass() const
{ return d.superdata; }
+namespace QtPrivate {
+ /* Trait that tells is a the Object has a Q_OBJECT macro */
+ template <typename Object> struct HasQ_OBJECT_Macro {
+ template <typename T>
+ static char test(int (T::*)(QMetaObject::Call, int, void **));
+ static int test(int (Object::*)(QMetaObject::Call, int, void **));
+ enum { Value = sizeof(test(&Object::qt_metacall)) == sizeof(int) };
+ };
+}
+
QT_END_NAMESPACE
-// Qt5: this was defined in qt4, but we cannot use it, because then QObject becomes inconsistent!
-#undef Q_QDOC
+/
+#define Q_QDOC
#if @ENABLE_X11@
#define Q_OS_X11
@@ -388,48 +406,6 @@ QT_END_NAMESPACE
#undef Q_DECLARE_INTERFACE
#include <QtSql/QtSql>
#include <QtSvg/QtSvg>
-
-class Q_CORE_EXPORT QMetaObject::Connection {
- void *d_ptr; //QObjectPrivate::Connection*
- explicit Connection(void *data) : d_ptr(data) { }
- friend class QObject;
- friend class QObjectPrivate;
- friend struct QMetaObject;
-public:
- ~Connection();
- Connection();
- Connection(const Connection &other);
- Connection &operator=(const Connection &other);
-#ifdef Q_QDOC
- operator bool() const;
-#else
- typedef void *Connection::*RestrictedBool;
- operator RestrictedBool() const { return d_ptr ? &Connection::d_ptr : 0; }
-#endif
-
-#ifdef Q_COMPILER_RVALUE_REFS
- inline Connection(Connection &&o) : d_ptr(o.d_ptr) { o.d_ptr = 0; }
- inline Connection &operator=(Connection &&other)
- { qSwap(d_ptr, other.d_ptr); return *this; }
-#endif
-};
-
-inline const QMetaObject *QMetaObject::superClass() const
-{ return d.superdata; }
-
-namespace QtPrivate {
- /* Trait that tells is a the Object has a Q_OBJECT macro */
- template <typename Object> struct HasQ_OBJECT_Macro {
- template <typename T>
- static char test(int (T::*)(QMetaObject::Call, int, void **));
- static int test(int (Object::*)(QMetaObject::Call, int, void **));
- enum { Value = sizeof(test(&Object::qt_metacall)) == sizeof(int) };
- };
-}
-
-QT_END_NAMESPACE
-
-
#if @Qt5WebKit_FOUND@
# include <QtWebKit/QtWebKit>
#endif