summaryrefslogtreecommitdiffstats
path: root/qcomponenthostnative.cpp
blob: 5b471d3552a429835fdcec7760ac7641eb8ec48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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);
}