You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
905 B
45 lines
905 B
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2022 Xaver Hugl <xaver.hugl@gmail.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "placeholderinputeventfilter.h" |
|
|
|
namespace KWin |
|
{ |
|
|
|
bool PlaceholderInputEventFilter::pointerEvent(MouseEvent *event, quint32 nativeButton) |
|
{ |
|
return true; |
|
} |
|
|
|
bool PlaceholderInputEventFilter::wheelEvent(WheelEvent *event) |
|
{ |
|
return true; |
|
} |
|
|
|
bool PlaceholderInputEventFilter::keyEvent(KeyEvent *event) |
|
{ |
|
return true; |
|
} |
|
|
|
bool PlaceholderInputEventFilter::touchDown(qint32 id, const QPointF &pos, std::chrono::microseconds time) |
|
{ |
|
return true; |
|
} |
|
|
|
bool PlaceholderInputEventFilter::touchMotion(qint32 id, const QPointF &pos, std::chrono::microseconds time) |
|
{ |
|
return true; |
|
} |
|
|
|
bool PlaceholderInputEventFilter::touchUp(qint32 id, std::chrono::microseconds time) |
|
{ |
|
return true; |
|
} |
|
|
|
}
|
|
|