1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#include <QtVirtualKeyboard/private/inputview_p.h>
5
6QT_BEGIN_NAMESPACE
7namespace QtVirtualKeyboard {
8
9/*!
10 \class QtVirtualKeyboard::InputView
11 \internal
12*/
13
14InputView::InputView(QWindow *parent) :
15 QQuickView(parent)
16{
17}
18
19void InputView::resizeEvent(QResizeEvent *event)
20{
21 QQuickWindow::resizeEvent(event);
22 emit sizeChanged();
23}
24
25} // namespace QtVirtualKeyboard
26QT_END_NAMESPACE
27

source code of qtvirtualkeyboard/src/virtualkeyboard/inputview.cpp