File indexing completed on 2024-04-28 05:30:26

0001 /*
0002     KWin - the KDE window manager
0003     This file is part of the KDE project.
0004 
0005     SPDX-FileCopyrightText: 2022 Xaver Hugl <xaver.hugl@gmail.com>
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #include "placeholderinputeventfilter.h"
0011 
0012 namespace KWin
0013 {
0014 
0015 bool PlaceholderInputEventFilter::pointerEvent(MouseEvent *event, quint32 nativeButton)
0016 {
0017     return true;
0018 }
0019 
0020 bool PlaceholderInputEventFilter::wheelEvent(WheelEvent *event)
0021 {
0022     return true;
0023 }
0024 
0025 bool PlaceholderInputEventFilter::keyEvent(KeyEvent *event)
0026 {
0027     return true;
0028 }
0029 
0030 bool PlaceholderInputEventFilter::touchDown(qint32 id, const QPointF &pos, std::chrono::microseconds time)
0031 {
0032     return true;
0033 }
0034 
0035 bool PlaceholderInputEventFilter::touchMotion(qint32 id, const QPointF &pos, std::chrono::microseconds time)
0036 {
0037     return true;
0038 }
0039 
0040 bool PlaceholderInputEventFilter::touchUp(qint32 id, std::chrono::microseconds time)
0041 {
0042     return true;
0043 }
0044 
0045 }