diff options
Diffstat (limited to 'siplib')
-rw-r--r-- | siplib/sip-tqt.h | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/siplib/sip-tqt.h b/siplib/sip-tqt.h index f8fc861..08aaf3c 100644 --- a/siplib/sip-tqt.h +++ b/siplib/sip-tqt.h @@ -1454,56 +1454,6 @@ typedef struct _pytqtClassTypeDef { } pytqtClassTypeDef; -/* - * The following are PyQt4-specific extensions. In SIP-TQt v5 they will be pushed - * out to a plugin supplied by PyQt4. - */ - -/* - * The description of a TQt signal for PyQt4. - */ -typedef struct _pyqt4QtSignal { - /* The C++ name and signature of the signal. */ - const char *signature; - - /* The optional docstring. */ - const char *docstring; - - /* - * If the signal is an overload of regular methods then this points to the - * code that implements those methods. - */ - PyMethodDef *non_signals; -} pyqt4QtSignal; - - -/* - * This is the PyQt4-specific extension to the generated class type structure. - */ -typedef struct _pyqt4ClassTypeDef { - /* - * The super-type structure. This must be first in the structure so that - * it can be cast to sipClassTypeDef *. - */ - sipClassTypeDef super; - - /* A pointer to the QObject sub-class's staticMetaObject class variable. */ - const void *qt4_static_metaobject; - - /* - * A set of flags. At the moment only bit 0 is used to say if the type is - * derived from QFlags. - */ - unsigned qt4_flags; - - /* - * The table of signals emitted by the type. These are grouped by signal - * name. - */ - const pyqt4QtSignal *qt4_signals; -} pyqt4ClassTypeDef; - - #ifdef __cplusplus } #endif |