File indexing completed on 2025-03-23 05:02:55
0001 /* 0002 SPDX-FileCopyrightText: 2022 David Redondo <kde@david-redondo.de> 0003 0004 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 0007 #pragma once 0008 0009 #include <qnamespace.h> 0010 0011 namespace KWin 0012 { 0013 0014 uint32_t qtMouseButtonToButton(Qt::MouseButton button); 0015 Qt::MouseButton buttonToQtMouseButton(uint32_t button); 0016 0017 }