KDecoration2

decorationbridge.cpp
1/*
2 * SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5 */
6#include "decorationbridge.h"
7
8Q_DECLARE_METATYPE(Qt::MouseButton)
9
10namespace KDecoration2
11{
12DecorationBridge::DecorationBridge(QObject *parent)
13 : QObject(parent)
14{
15 qRegisterMetaType<Qt::MouseButton>();
16}
17
18DecorationBridge::~DecorationBridge() = default;
19
20}
21
22#include "moc_decorationbridge.cpp"
Framework for creating window decorations.
MouseButton
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:52:07 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.