summaryrefslogtreecommitdiffstats
path: root/qcomponenthostnative.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qcomponenthostnative.cpp')
-rw-r--r--qcomponenthostnative.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/qcomponenthostnative.cpp b/qcomponenthostnative.cpp
new file mode 100644
index 0000000..5b471d3
--- /dev/null
+++ b/qcomponenthostnative.cpp
@@ -0,0 +1,47 @@
+#include "qcomponenthostnative.h"
+
+QComponentHostNative::QComponentHostNative(QWidget *parent)
+ : QCOMPONENTHOSTNATIVE_BASECLASS(parent)
+{
+}
+
+// ### Empty implementations to work around limitation in generator
+void QComponentHostNative::childEvent(QChildEvent *e)
+{
+ QCOMPONENTHOSTNATIVE_BASECLASS::childEvent(e);
+}
+
+bool QComponentHostNative::eventFilter(QObject *o, QEvent *e)
+{
+ return QCOMPONENTHOSTNATIVE_BASECLASS::eventFilter(o, e);
+}
+
+void QComponentHostNative::focusInEvent(QFocusEvent *e)
+{
+ QCOMPONENTHOSTNATIVE_BASECLASS::focusInEvent(e);
+}
+
+void QComponentHostNative::paintEvent(QPaintEvent *e)
+{
+ QCOMPONENTHOSTNATIVE_BASECLASS::paintEvent(e);
+}
+
+void QComponentHostNative::resizeEvent(QResizeEvent *e)
+{
+ QCOMPONENTHOSTNATIVE_BASECLASS::resizeEvent(e);
+}
+
+void QComponentHostNative::showEvent(QShowEvent *e)
+{
+ QCOMPONENTHOSTNATIVE_BASECLASS::showEvent(e);
+}
+
+void QComponentHostNative::hideEvent(QHideEvent *e)
+{
+ QCOMPONENTHOSTNATIVE_BASECLASS::hideEvent(e);
+}
+
+bool QComponentHostNative::event(QEvent *e)
+{
+ return QCOMPONENTHOSTNATIVE_BASECLASS::event(e);
+}