/* SPDX-FileCopyrightText: 2012 Jekyll Wu SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ // Own #include "WindowSystemInfo.h" #include "config-konsole.h" #include #include #include #if HAVE_X11 #if KWINDOWSYSTEM_VERSION >= QT_VERSION_CHECK(5, 101, 0) #include #endif #endif using Konsole::WindowSystemInfo; bool WindowSystemInfo::HAVE_TRANSPARENCY = false; bool WindowSystemInfo::compositingActive() { #if KWINDOWSYSTEM_VERSION >= QT_VERSION_CHECK(5, 101, 0) #if HAVE_X11 return KX11Extras::compositingActive(); #else return true; #endif #else return KWindowSystem::compositingActive(); #endif }