summaryrefslogtreecommitdiffstats
path: root/siplib
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2023-01-22 12:15:55 +0100
committerSlávek Banko <slavek.banko@axis.cz>2023-01-22 13:23:20 +0100
commitd768e91379d44b22260cddb3559c1e2243c3b1f5 (patch)
treee17b20e8c6e752c94fb29c8e02810afb3bb6923f /siplib
parent0f630aff5c42d03eb301cd3fc5faff80d9c3c727 (diff)
downloadsip4-tqt-d768e91379d44b22260cddb3559c1e2243c3b1f5.tar.gz
sip4-tqt-d768e91379d44b22260cddb3559c1e2243c3b1f5.zip
Drop the remaining Qt4 related parts.r14.1.0
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'siplib')
-rw-r--r--siplib/sip-tqt.h50
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