2017-09-12 16:14:03 +00:00
|
|
|
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
|
|
|
|
2020-01-07 16:26:28 +00:00
|
|
|
project(KWin)
|
2020-09-21 11:07:41 +00:00
|
|
|
set(PROJECT_VERSION "5.20.80")
|
2014-08-20 13:43:27 +00:00
|
|
|
set(PROJECT_VERSION_MAJOR 5)
|
2014-03-18 13:39:42 +00:00
|
|
|
|
2020-09-17 05:02:13 +00:00
|
|
|
set(QT_MIN_VERSION "5.15.0")
|
2020-09-17 05:02:13 +00:00
|
|
|
set(KF5_MIN_VERSION "5.74")
|
2014-03-18 13:39:42 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules ${CMAKE_MODULE_PATH})
|
2014-03-18 13:39:42 +00:00
|
|
|
|
2017-08-25 16:18:20 +00:00
|
|
|
find_package(ECM 5.38 REQUIRED NO_MODULE)
|
2014-03-18 13:39:42 +00:00
|
|
|
|
|
|
|
include(FeatureSummary)
|
|
|
|
include(WriteBasicConfigVersionFile)
|
2014-04-03 08:15:57 +00:00
|
|
|
include(GenerateExportHeader)
|
2014-03-18 13:39:42 +00:00
|
|
|
|
|
|
|
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
|
2020-09-16 18:55:35 +00:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} )
|
2014-03-18 13:39:42 +00:00
|
|
|
|
|
|
|
find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
|
|
|
|
Concurrent
|
|
|
|
Core
|
|
|
|
DBus
|
|
|
|
Quick
|
2014-10-31 06:53:04 +00:00
|
|
|
QuickWidgets
|
2014-03-18 13:39:42 +00:00
|
|
|
Script
|
2019-09-17 07:55:00 +00:00
|
|
|
Sensors
|
2014-03-18 13:39:42 +00:00
|
|
|
UiTools
|
|
|
|
Widgets
|
|
|
|
X11Extras
|
|
|
|
)
|
2014-04-16 20:26:01 +00:00
|
|
|
|
|
|
|
find_package(Qt5Test ${QT_MIN_VERSION} CONFIG QUIET)
|
|
|
|
set_package_properties(Qt5Test PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
PURPOSE "Required for tests"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2014-04-16 20:26:01 +00:00
|
|
|
add_feature_info("Qt5Test" Qt5Test_FOUND "Required for building tests")
|
|
|
|
if (NOT Qt5Test_FOUND)
|
|
|
|
set(BUILD_TESTING OFF CACHE BOOL "Build the testing tree.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include(KDEInstallDirs)
|
|
|
|
include(KDECMakeSettings)
|
2016-01-28 14:08:23 +00:00
|
|
|
include(KDECompilerSettings NO_POLICY_SCOPE)
|
2019-11-05 09:47:05 +00:00
|
|
|
include(KDEClangFormat)
|
2014-04-16 20:26:01 +00:00
|
|
|
|
|
|
|
include(ECMInstallIcons)
|
2015-02-19 16:12:18 +00:00
|
|
|
include(ECMOptionalAddSubdirectory)
|
2020-02-17 14:42:01 +00:00
|
|
|
include(ECMConfiguredInstall)
|
2014-04-16 20:26:01 +00:00
|
|
|
|
2019-02-12 07:54:41 +00:00
|
|
|
add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0 -DQT_USE_QSTRINGBUILDER -DQT_NO_URL_CAST_FROM_STRING)
|
2014-03-18 13:39:42 +00:00
|
|
|
|
2020-09-28 13:01:01 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2017-02-07 19:49:22 +00:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
2014-05-14 08:13:23 +00:00
|
|
|
|
2014-04-02 10:02:36 +00:00
|
|
|
find_package(Qt5Multimedia QUIET)
|
|
|
|
set_package_properties(Qt5Multimedia PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
PURPOSE "Runtime-only dependency for effect video playback"
|
|
|
|
TYPE RUNTIME
|
|
|
|
)
|
2014-03-18 13:39:42 +00:00
|
|
|
|
|
|
|
# required frameworks by Core
|
2014-09-19 05:44:42 +00:00
|
|
|
find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
|
2014-03-18 13:39:42 +00:00
|
|
|
Config
|
|
|
|
ConfigWidgets
|
|
|
|
CoreAddons
|
|
|
|
Crash
|
|
|
|
GlobalAccel
|
|
|
|
I18n
|
2019-09-17 07:55:00 +00:00
|
|
|
IconThemes
|
|
|
|
IdleTime
|
2014-03-18 13:39:42 +00:00
|
|
|
Notifications
|
2015-07-06 14:50:33 +00:00
|
|
|
Package
|
2014-03-18 13:39:42 +00:00
|
|
|
Plasma
|
2019-09-17 07:55:00 +00:00
|
|
|
Wayland
|
2014-03-18 13:39:42 +00:00
|
|
|
WidgetsAddons
|
|
|
|
WindowSystem
|
|
|
|
)
|
|
|
|
# required frameworks by config modules
|
2014-09-19 05:44:42 +00:00
|
|
|
find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
|
2014-03-18 13:39:42 +00:00
|
|
|
Completion
|
2014-04-02 10:02:36 +00:00
|
|
|
Declarative
|
2014-03-18 13:39:42 +00:00
|
|
|
KCMUtils
|
|
|
|
KIO
|
|
|
|
NewStuff
|
2015-07-07 15:35:57 +00:00
|
|
|
Service
|
2019-09-17 07:55:00 +00:00
|
|
|
TextWidgets
|
2014-03-18 13:39:42 +00:00
|
|
|
XmlGui
|
|
|
|
)
|
|
|
|
|
2015-03-31 07:30:19 +00:00
|
|
|
find_package(Threads)
|
|
|
|
set_package_properties(Threads PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
PURPOSE "Needed for VirtualTerminal support in KWin Wayland"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
2015-03-31 07:30:19 +00:00
|
|
|
|
2014-03-18 13:39:42 +00:00
|
|
|
# optional frameworks
|
2014-09-19 05:44:42 +00:00
|
|
|
find_package(KF5Activities ${KF5_MIN_VERSION} CONFIG)
|
2014-04-23 18:28:30 +00:00
|
|
|
set_package_properties(KF5Activities PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
PURPOSE "Enable building of KWin with kactivities support"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2014-04-23 18:28:30 +00:00
|
|
|
add_feature_info("KF5Activities" KF5Activities_FOUND "Enable building of KWin with kactivities support")
|
|
|
|
|
2014-09-19 05:44:42 +00:00
|
|
|
find_package(KF5DocTools ${KF5_MIN_VERSION} CONFIG)
|
2014-04-23 18:28:30 +00:00
|
|
|
set_package_properties(KF5DocTools PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
PURPOSE "Enable building documentation"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2014-04-23 18:28:30 +00:00
|
|
|
add_feature_info("KF5DocTools" KF5DocTools_FOUND "Enable building documentation")
|
2014-03-18 13:39:42 +00:00
|
|
|
|
2020-07-21 13:33:03 +00:00
|
|
|
find_package(KF5Runner ${KF5_MIN_VERSION} CONFIG)
|
|
|
|
set_package_properties(KF5Runner PROPERTIES
|
|
|
|
PURPOSE "Enable building of KWin with krunner support"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
|
|
|
add_feature_info("KF5Runner" KF5Runner_FOUND "Enable building of KWin with krunner support")
|
|
|
|
|
2019-01-17 20:49:12 +00:00
|
|
|
find_package(KF5Kirigami2 ${KF5_MIN_VERSION} CONFIG)
|
|
|
|
set_package_properties(KF5Kirigami2 PROPERTIES
|
|
|
|
DESCRIPTION "A QtQuick based components set"
|
2020-09-29 14:46:32 +00:00
|
|
|
PURPOSE "Required at runtime for Virtual desktop KCM"
|
2019-01-17 20:49:12 +00:00
|
|
|
TYPE RUNTIME
|
|
|
|
)
|
|
|
|
|
2020-01-29 21:20:55 +00:00
|
|
|
find_package(KDecoration2 5.18.0 CONFIG REQUIRED)
|
2014-09-19 11:59:51 +00:00
|
|
|
|
2015-11-05 13:09:23 +00:00
|
|
|
find_package(KScreenLocker CONFIG REQUIRED)
|
|
|
|
set_package_properties(KScreenLocker PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "For screenlocker integration in kwin_wayland"
|
|
|
|
)
|
2015-11-05 13:09:23 +00:00
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
find_package(KWaylandServer CONFIG REQUIRED)
|
|
|
|
set_package_properties(KWaylandServer PROPERTIES
|
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "For Wayland integration"
|
|
|
|
)
|
|
|
|
|
2017-02-17 13:59:20 +00:00
|
|
|
find_package(Breeze 5.9.0 CONFIG)
|
2016-04-07 12:25:42 +00:00
|
|
|
set_package_properties(Breeze PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "For setting the default window decoration plugin"
|
|
|
|
)
|
|
|
|
if (${Breeze_FOUND})
|
|
|
|
if (${BREEZE_WITH_KDECORATION})
|
2016-04-07 12:25:42 +00:00
|
|
|
set(HAVE_BREEZE_DECO true)
|
|
|
|
else()
|
|
|
|
set(HAVE_BREEZE_DECO FALSE)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(HAVE_BREEZE_DECO FALSE)
|
|
|
|
endif()
|
|
|
|
add_feature_info("Breeze-Decoration" HAVE_BREEZE_DECO "Default decoration plugin Breeze")
|
|
|
|
|
2014-03-18 13:39:42 +00:00
|
|
|
find_package(EGL)
|
|
|
|
set_package_properties(EGL PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
TYPE RUNTIME
|
|
|
|
PURPOSE "Required to build KWin with EGL support"
|
|
|
|
)
|
2014-03-18 13:39:42 +00:00
|
|
|
|
2014-02-10 16:34:09 +00:00
|
|
|
find_package(epoxy)
|
2019-09-17 09:15:35 +00:00
|
|
|
set_package_properties(epoxy PROPERTIES
|
|
|
|
DESCRIPTION "libepoxy"
|
|
|
|
URL "https://github.com/anholt/libepoxy"
|
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "OpenGL dispatch library"
|
|
|
|
)
|
2014-02-10 16:34:09 +00:00
|
|
|
|
2016-11-22 07:34:59 +00:00
|
|
|
set(HAVE_DL_LIBRARY FALSE)
|
2019-09-17 09:15:35 +00:00
|
|
|
if (epoxy_HAS_GLX)
|
2016-11-22 07:34:59 +00:00
|
|
|
find_library(DL_LIBRARY dl)
|
2019-09-17 09:15:35 +00:00
|
|
|
if (DL_LIBRARY)
|
2016-11-22 07:34:59 +00:00
|
|
|
set(HAVE_DL_LIBRARY TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-09-02 16:19:04 +00:00
|
|
|
find_package(Wayland 1.2 OPTIONAL_COMPONENTS Egl)
|
2014-03-18 13:39:42 +00:00
|
|
|
set_package_properties(Wayland PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "Required for building KWin with Wayland support"
|
|
|
|
)
|
2020-09-02 11:36:19 +00:00
|
|
|
add_feature_info("Wayland::EGL" Wayland_Egl_FOUND "Enable building of Wayland backend.")
|
2015-11-30 07:34:52 +00:00
|
|
|
set(HAVE_WAYLAND_EGL FALSE)
|
2019-09-17 09:15:35 +00:00
|
|
|
if (Wayland_Egl_FOUND)
|
2015-11-30 07:34:52 +00:00
|
|
|
set(HAVE_WAYLAND_EGL TRUE)
|
|
|
|
endif()
|
2014-08-19 07:31:31 +00:00
|
|
|
|
2016-12-26 10:59:10 +00:00
|
|
|
find_package(XKB 0.7.0)
|
2014-03-18 13:39:42 +00:00
|
|
|
set_package_properties(XKB PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "Required for building KWin with Wayland support"
|
|
|
|
)
|
2014-03-18 13:39:42 +00:00
|
|
|
|
2018-01-16 19:54:11 +00:00
|
|
|
find_package(Libinput 1.9)
|
2018-01-23 16:28:18 +00:00
|
|
|
set_package_properties(Libinput PROPERTIES TYPE REQUIRED PURPOSE "Required for input handling on Wayland.")
|
2014-08-14 12:43:57 +00:00
|
|
|
|
|
|
|
find_package(UDev)
|
2019-09-17 09:15:35 +00:00
|
|
|
set_package_properties(UDev PROPERTIES
|
2019-11-26 17:39:20 +00:00
|
|
|
URL "https://www.freedesktop.org/wiki/Software/systemd/"
|
2019-09-17 09:15:35 +00:00
|
|
|
DESCRIPTION "Linux device library."
|
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "Required for input handling on Wayland."
|
|
|
|
)
|
2014-08-14 12:43:57 +00:00
|
|
|
|
2016-10-17 14:12:48 +00:00
|
|
|
find_package(Libdrm 2.4.62)
|
2015-04-09 12:49:32 +00:00
|
|
|
set_package_properties(Libdrm PROPERTIES TYPE OPTIONAL PURPOSE "Required for drm output on Wayland.")
|
|
|
|
set(HAVE_DRM FALSE)
|
2019-09-17 09:15:35 +00:00
|
|
|
if (Libdrm_FOUND)
|
2015-04-09 12:49:32 +00:00
|
|
|
set(HAVE_DRM TRUE)
|
|
|
|
endif()
|
|
|
|
|
2015-04-10 08:44:07 +00:00
|
|
|
find_package(gbm)
|
2018-08-29 18:02:16 +00:00
|
|
|
set_package_properties(gbm PROPERTIES TYPE OPTIONAL PURPOSE "Required for egl output of drm backend.")
|
2015-04-10 08:44:07 +00:00
|
|
|
set(HAVE_GBM FALSE)
|
2019-09-17 09:15:35 +00:00
|
|
|
if (HAVE_DRM AND gbm_FOUND)
|
2015-04-10 08:44:07 +00:00
|
|
|
set(HAVE_GBM TRUE)
|
|
|
|
endif()
|
|
|
|
|
[platforms/drm] EGLStream DRM Backend Initial Implementation
Summary:
This is the initial implementation of a DRM backend based on the EGLDevice,
EGLOutput, and EGLStream extensions, supporting NVIDIA graphics hardware using
their proprietary driver. The new backend will be used if the environment
variable KWIN_DRM_USE_EGL_STREAMS is set. On initialization, it will attempt to
create an EGLDevice based on the DRM device currently in use and create
EGLOutputs and EGLStreams for any attached displays. These are used to control
presentation of the final composited frame. Additionally, it will register the
wl_eglstream_controller Wayland interface so that native EGL windows created by
clients can be attached to an EGLStream allowing buffer contents to be shared
with the compositor as a GL texture.
At this time there are two known bugs in the NVIDIA driver's EGL implementation
affecting desktop functionality. The first can result in tooltip windows drawn
by plasmashell to contain incorrect contents. The second prevents KWayland from
being able to query the format of EGLStream-backed buffers which interferes
with the blur effect. Fixes for both of these are currently in development and
should appear in an upcoming NVIDIA driver release.
Additionally, hardware cursors are currently not supported with this backend.
Enabling them causes the desktop to intermittently hang for several seconds.
This is also likely a bug in the NVIDIA DRM-KMS implementation but the root
cause is still under investigation.
Test Plan:
On a system with an NVIDIA graphics card running a recent release of their
proprietary driver
* Ensure the nvidia_drm kernel module is loaded with the option "modeset=1"
("# cat /sys/module/nvidia_drm/parameters/modeset" should print "Y")
* Ensure EGL external platform support is installed
https://github.com/NVIDIA/eglexternalplatform
* Ensure KWin was build with the CMake option
KWIN_BUILD_EGL_STREAM_BACKEND=ON (this is the default)
* Start a plasma wayland session with the environment variable
KWIN_DRM_USE_EGL_STREAMS set
* Ensure output from KWin OpenGL initialization indicates the NVIDIA EGL
driver is in use (as opposed to Mesa / llvmpipe).
* Desktop should be fully functional and perform smoothly.
Reviewers: #kwin, romangg, davidedmundson
Reviewed By: #kwin, romangg, davidedmundson
Subscribers: kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D18570
2019-04-15 14:26:22 +00:00
|
|
|
option(KWIN_BUILD_EGL_STREAM_BACKEND "Enable building of EGLStream based DRM backend" ON)
|
2019-09-17 09:15:35 +00:00
|
|
|
if (HAVE_DRM AND KWIN_BUILD_EGL_STREAM_BACKEND)
|
[platforms/drm] EGLStream DRM Backend Initial Implementation
Summary:
This is the initial implementation of a DRM backend based on the EGLDevice,
EGLOutput, and EGLStream extensions, supporting NVIDIA graphics hardware using
their proprietary driver. The new backend will be used if the environment
variable KWIN_DRM_USE_EGL_STREAMS is set. On initialization, it will attempt to
create an EGLDevice based on the DRM device currently in use and create
EGLOutputs and EGLStreams for any attached displays. These are used to control
presentation of the final composited frame. Additionally, it will register the
wl_eglstream_controller Wayland interface so that native EGL windows created by
clients can be attached to an EGLStream allowing buffer contents to be shared
with the compositor as a GL texture.
At this time there are two known bugs in the NVIDIA driver's EGL implementation
affecting desktop functionality. The first can result in tooltip windows drawn
by plasmashell to contain incorrect contents. The second prevents KWayland from
being able to query the format of EGLStream-backed buffers which interferes
with the blur effect. Fixes for both of these are currently in development and
should appear in an upcoming NVIDIA driver release.
Additionally, hardware cursors are currently not supported with this backend.
Enabling them causes the desktop to intermittently hang for several seconds.
This is also likely a bug in the NVIDIA DRM-KMS implementation but the root
cause is still under investigation.
Test Plan:
On a system with an NVIDIA graphics card running a recent release of their
proprietary driver
* Ensure the nvidia_drm kernel module is loaded with the option "modeset=1"
("# cat /sys/module/nvidia_drm/parameters/modeset" should print "Y")
* Ensure EGL external platform support is installed
https://github.com/NVIDIA/eglexternalplatform
* Ensure KWin was build with the CMake option
KWIN_BUILD_EGL_STREAM_BACKEND=ON (this is the default)
* Start a plasma wayland session with the environment variable
KWIN_DRM_USE_EGL_STREAMS set
* Ensure output from KWin OpenGL initialization indicates the NVIDIA EGL
driver is in use (as opposed to Mesa / llvmpipe).
* Desktop should be fully functional and perform smoothly.
Reviewers: #kwin, romangg, davidedmundson
Reviewed By: #kwin, romangg, davidedmundson
Subscribers: kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D18570
2019-04-15 14:26:22 +00:00
|
|
|
set(HAVE_EGL_STREAMS TRUE)
|
|
|
|
endif()
|
|
|
|
|
2015-05-06 15:47:07 +00:00
|
|
|
find_package(libhybris)
|
|
|
|
set_package_properties(libhybris PROPERTIES TYPE OPTIONAL PURPOSE "Required for libhybris backend")
|
2015-05-08 11:19:04 +00:00
|
|
|
set(HAVE_LIBHYBRIS ${libhybris_FOUND})
|
2015-05-06 15:47:07 +00:00
|
|
|
|
2014-03-18 13:39:42 +00:00
|
|
|
find_package(X11)
|
2019-09-17 09:15:35 +00:00
|
|
|
set_package_properties(X11 PROPERTIES
|
|
|
|
DESCRIPTION "X11 libraries"
|
|
|
|
URL "https://www.x.org"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
2016-01-13 14:40:02 +00:00
|
|
|
add_feature_info("XInput" X11_Xinput_FOUND "Required for poll-free mouse cursor updates")
|
|
|
|
set(HAVE_X11_XINPUT ${X11_Xinput_FOUND})
|
2014-03-18 13:39:42 +00:00
|
|
|
|
|
|
|
# All the required XCB components
|
2019-09-17 09:15:35 +00:00
|
|
|
find_package(XCB 1.10 REQUIRED COMPONENTS
|
|
|
|
COMPOSITE
|
|
|
|
CURSOR
|
|
|
|
DAMAGE
|
|
|
|
GLX
|
|
|
|
ICCCM
|
|
|
|
IMAGE
|
|
|
|
KEYSYMS
|
|
|
|
RANDR
|
|
|
|
RENDER
|
|
|
|
SHAPE
|
|
|
|
SHM
|
|
|
|
SYNC
|
|
|
|
XCB
|
|
|
|
XFIXES
|
2014-03-18 13:39:42 +00:00
|
|
|
)
|
|
|
|
set_package_properties(XCB PROPERTIES TYPE REQUIRED)
|
|
|
|
|
|
|
|
# and the optional XCB dependencies
|
2014-06-11 05:51:07 +00:00
|
|
|
if (XCB_ICCCM_VERSION VERSION_LESS "0.4")
|
|
|
|
set(XCB_ICCCM_FOUND FALSE)
|
|
|
|
endif()
|
2014-03-18 13:39:42 +00:00
|
|
|
add_feature_info("XCB-ICCCM" XCB_ICCCM_FOUND "Required for building test applications for KWin")
|
|
|
|
|
2015-03-19 10:07:49 +00:00
|
|
|
find_package(X11_XCB)
|
|
|
|
set_package_properties(X11_XCB PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
PURPOSE "Required for building X11 windowed backend of kwin_wayland"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2015-03-19 10:07:49 +00:00
|
|
|
|
2015-08-14 14:52:40 +00:00
|
|
|
# dependencies for QPA plugin
|
2017-10-16 15:25:21 +00:00
|
|
|
find_package(Qt5FontDatabaseSupport REQUIRED)
|
|
|
|
find_package(Qt5ThemeSupport REQUIRED)
|
|
|
|
find_package(Qt5EventDispatcherSupport REQUIRED)
|
2016-10-27 00:43:21 +00:00
|
|
|
|
2015-08-14 14:52:40 +00:00
|
|
|
find_package(Freetype REQUIRED)
|
2019-09-17 09:15:35 +00:00
|
|
|
set_package_properties(Freetype PROPERTIES
|
|
|
|
DESCRIPTION "A font rendering engine"
|
|
|
|
URL "https://www.freetype.org"
|
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "Needed for KWin's QPA plugin."
|
|
|
|
)
|
2015-08-14 14:52:40 +00:00
|
|
|
find_package(Fontconfig REQUIRED)
|
2018-12-12 18:15:53 +00:00
|
|
|
set_package_properties(Fontconfig PROPERTIES
|
2019-09-17 09:15:35 +00:00
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "Needed for KWin's QPA plugin."
|
|
|
|
)
|
2015-08-14 14:52:40 +00:00
|
|
|
|
2016-02-03 14:48:13 +00:00
|
|
|
find_package(Xwayland)
|
|
|
|
set_package_properties(Xwayland PROPERTIES
|
2019-03-25 18:11:15 +00:00
|
|
|
URL "https://x.org"
|
2016-02-03 14:48:13 +00:00
|
|
|
DESCRIPTION "Xwayland X server"
|
|
|
|
TYPE RUNTIME
|
|
|
|
PURPOSE "Needed for running kwin_wayland"
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
2016-02-03 14:48:13 +00:00
|
|
|
|
2017-09-10 10:05:29 +00:00
|
|
|
find_package(Libcap)
|
|
|
|
set_package_properties(Libcap PROPERTIES
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Needed for running kwin_wayland with real-time scheduling policy"
|
|
|
|
)
|
|
|
|
set(HAVE_LIBCAP ${Libcap_FOUND})
|
|
|
|
|
Decode full monitor vendor name from EDID using hwdata
Test Plan:
KScreen now shows "Dell Inc." instead of DEL and
"Eizo Nano Corporation" instead of ENC in output names, which
matches closer to what's written on my monitors.
Reviewers: graesslin, davidedmundson, #plasma
Reviewed By: davidedmundson, #plasma
Subscribers: apol, feverfew, ngraham, davidedmundson, mart, kwin, sebas
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D10041
2020-02-26 11:37:01 +00:00
|
|
|
find_package(hwdata)
|
|
|
|
set_package_properties(hwdata PROPERTIES
|
|
|
|
TYPE RUNTIME
|
|
|
|
PURPOSE "Runtime-only dependency needed for mapping monitor hardware vendor IDs to full names"
|
|
|
|
URL "https://github.com/vcrhonek/hwdata"
|
|
|
|
)
|
|
|
|
|
2020-05-17 06:26:41 +00:00
|
|
|
find_package(QAccessibilityClient CONFIG)
|
|
|
|
set_package_properties(QAccessibilityClient PROPERTIES
|
|
|
|
URL "https://www.kde.org"
|
|
|
|
DESCRIPTION "KDE client-side accessibility library"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Required to enable accessibility features"
|
|
|
|
)
|
|
|
|
set(HAVE_ACCESSIBILITY ${QAccessibilityClient_FOUND})
|
|
|
|
|
2020-05-31 18:57:51 +00:00
|
|
|
if(CMAKE_SYSTEM MATCHES "FreeBSD")
|
|
|
|
find_package(epoll)
|
|
|
|
set_package_properties(epoll PROPERTIES DESCRIPTION "I/O event notification facility"
|
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "Needed for running kwin_wayland"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2017-08-12 12:01:45 +00:00
|
|
|
include(ECMQMLModules)
|
|
|
|
ecm_find_qmlmodule(QtQuick 2.3)
|
|
|
|
ecm_find_qmlmodule(QtQuick.Controls 1.2)
|
|
|
|
ecm_find_qmlmodule(QtQuick.Layouts 1.3)
|
|
|
|
ecm_find_qmlmodule(QtQuick.Window 2.1)
|
|
|
|
ecm_find_qmlmodule(QtMultimedia 5.0)
|
|
|
|
ecm_find_qmlmodule(org.kde.kquickcontrolsaddons 2.0)
|
|
|
|
ecm_find_qmlmodule(org.kde.plasma.core 2.0)
|
|
|
|
ecm_find_qmlmodule(org.kde.plasma.components 2.0)
|
|
|
|
|
2008-01-03 15:22:19 +00:00
|
|
|
########### configure tests ###############
|
2013-11-15 12:37:47 +00:00
|
|
|
include(CMakeDependentOption)
|
|
|
|
|
|
|
|
option(KWIN_BUILD_DECORATIONS "Enable building of KWin decorations." ON)
|
|
|
|
option(KWIN_BUILD_KCMS "Enable building of KWin configuration modules." ON)
|
|
|
|
option(KWIN_BUILD_TABBOX "Enable building of KWin Tabbox functionality" ON)
|
|
|
|
option(KWIN_BUILD_XRENDER_COMPOSITING "Enable building of KWin with XRender Compositing support" ON)
|
2014-02-13 19:06:33 +00:00
|
|
|
cmake_dependent_option(KWIN_BUILD_ACTIVITIES "Enable building of KWin with kactivities support" ON "KF5Activities_FOUND" OFF)
|
2020-07-21 13:33:03 +00:00
|
|
|
cmake_dependent_option(KWIN_BUILD_RUNNERS "Enable building of KWin with krunner support" ON "KF5Runner_FOUND" OFF)
|
2011-07-06 15:42:24 +00:00
|
|
|
|
2012-03-16 07:37:09 +00:00
|
|
|
# Binary name of KWin
|
|
|
|
set(KWIN_NAME "kwin")
|
2014-06-10 10:05:54 +00:00
|
|
|
set(KWIN_INTERNAL_NAME_X11 "kwin_x11")
|
|
|
|
set(KWIN_INTERNAL_NAME_WAYLAND "kwin_wayland")
|
2012-03-16 07:37:09 +00:00
|
|
|
|
2011-08-13 08:36:50 +00:00
|
|
|
# KWIN_HAVE_XRENDER_COMPOSITING - whether XRender-based compositing support is available: may be disabled
|
2019-09-17 09:15:35 +00:00
|
|
|
if (KWIN_BUILD_XRENDER_COMPOSITING)
|
|
|
|
set(KWIN_HAVE_XRENDER_COMPOSITING 1)
|
2013-02-25 10:14:56 +00:00
|
|
|
endif()
|
2008-01-03 15:22:19 +00:00
|
|
|
|
2015-08-10 12:50:45 +00:00
|
|
|
include_directories(${XKB_INCLUDE_DIR})
|
2014-03-29 08:30:45 +00:00
|
|
|
|
2014-10-24 19:58:59 +00:00
|
|
|
include_directories(${epoxy_INCLUDE_DIR})
|
2015-10-30 10:50:31 +00:00
|
|
|
set(HAVE_EPOXY_GLX ${epoxy_HAS_GLX})
|
2014-10-24 19:58:59 +00:00
|
|
|
|
2008-01-03 15:22:19 +00:00
|
|
|
# for things that are also used by kwin libraries
|
2011-02-19 08:58:44 +00:00
|
|
|
configure_file(libkwineffects/kwinconfig.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/libkwineffects/kwinconfig.h )
|
2008-01-03 15:22:19 +00:00
|
|
|
# for kwin internal things
|
2015-08-10 12:50:45 +00:00
|
|
|
set(HAVE_X11_XCB ${X11_XCB_FOUND})
|
2015-05-12 08:03:00 +00:00
|
|
|
|
2015-12-08 10:42:48 +00:00
|
|
|
include(CheckIncludeFile)
|
2014-03-18 13:39:42 +00:00
|
|
|
include(CheckIncludeFiles)
|
2015-12-08 10:42:48 +00:00
|
|
|
include(CheckSymbolExists)
|
2014-03-18 08:30:40 +00:00
|
|
|
check_include_files(unistd.h HAVE_UNISTD_H)
|
|
|
|
check_include_files(malloc.h HAVE_MALLOC_H)
|
2015-12-08 10:42:48 +00:00
|
|
|
|
|
|
|
check_include_file("sys/prctl.h" HAVE_SYS_PRCTL_H)
|
|
|
|
check_symbol_exists(PR_SET_DUMPABLE "sys/prctl.h" HAVE_PR_SET_DUMPABLE)
|
2017-04-26 04:57:32 +00:00
|
|
|
check_symbol_exists(PR_SET_PDEATHSIG "sys/prctl.h" HAVE_PR_SET_PDEATHSIG)
|
Disallow ptrace on greeter and kwin_wayland process on FreeBSD [... for the future]
Summary:
Similar to[[ https://phabricator.kde.org/D1216 | D1216 ]] add procctl call to disable ptrace on FreeBSD.
We cannot do the procfs-lookup to check whether the process is already being run inside gdb -- however, on FreeBSD, we could use the P_TRACED flag of the process to figure this out:
> sys/proc.h:#define P_TRACED 0x00800 /* Debugged process being traced. */
And the code would look something similar to
```
pid_t pid = getpid();
struct procstat *prstat = procstat_open_sysctl();
struct kinfo_proc *procinfo;
unsigned int cnt;
procinfo = procstat_getprocs(prstat, KERN_PROC_PID, pid, &cnt);
long p_flags = procinfo->ki_flag;
int p_traced = p_flags & P_TRACED;
if (p_traced != P_TRACED) {
mode = PROC_TRACE_CTL_DISABLE;
procctl(P_PID, getpid(), PROC_TRACE_CTL, &mode);
}
procstat_freeprocs(prstat,procinfo);
procstat_close(prstat);
```
But as wayland is [far] in the future on FreeBSD, and that check above is a bit lengthy, I think it is enough if we add it once it is needed.
Reviewers: rakuco, graesslin
Reviewed By: graesslin
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1425
2016-05-10 06:49:58 +00:00
|
|
|
check_include_file("sys/procctl.h" HAVE_SYS_PROCCTL_H)
|
|
|
|
check_symbol_exists(PROC_TRACE_CTL "sys/procctl.h" HAVE_PROC_TRACE_CTL)
|
|
|
|
if (HAVE_PR_SET_DUMPABLE OR HAVE_PROC_TRACE_CTL)
|
|
|
|
set(CAN_DISABLE_PTRACE TRUE)
|
|
|
|
endif()
|
|
|
|
add_feature_info("prctl/procctl tracing control"
|
|
|
|
CAN_DISABLE_PTRACE
|
|
|
|
"Required for disallowing ptrace on kwin_wayland process")
|
2015-12-08 10:42:48 +00:00
|
|
|
|
2017-07-31 15:34:37 +00:00
|
|
|
check_include_file("sys/sysmacros.h" HAVE_SYS_SYSMACROS_H)
|
2008-01-03 15:22:19 +00:00
|
|
|
|
2017-07-23 10:02:58 +00:00
|
|
|
check_include_file("linux/vt.h" HAVE_LINUX_VT_H)
|
|
|
|
add_feature_info("linux/vt.h"
|
|
|
|
HAVE_LINUX_VT_H
|
|
|
|
"Required for virtual terminal support under wayland")
|
|
|
|
check_include_file("linux/fb.h" HAVE_LINUX_FB_H)
|
|
|
|
add_feature_info("linux/fb.h"
|
|
|
|
HAVE_LINUX_FB_H
|
|
|
|
"Required for the fbdev backend")
|
2008-01-03 15:22:19 +00:00
|
|
|
|
2017-09-10 10:05:29 +00:00
|
|
|
check_symbol_exists(SCHED_RESET_ON_FORK "sched.h" HAVE_SCHED_RESET_ON_FORK)
|
|
|
|
add_feature_info("SCHED_RESET_ON_FORK"
|
|
|
|
HAVE_SCHED_RESET_ON_FORK
|
|
|
|
"Required for running kwin_wayland with real-time scheduling")
|
|
|
|
|
2020-07-22 17:29:23 +00:00
|
|
|
|
|
|
|
pkg_check_modules(PipeWire IMPORTED_TARGET libpipewire-0.3)
|
|
|
|
add_feature_info(PipeWire PipeWire_FOUND "Required for Wayland screencasting")
|
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
configure_file(config-kwin.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-kwin.h)
|
2019-07-09 09:14:37 +00:00
|
|
|
|
2008-01-03 15:22:19 +00:00
|
|
|
########### global ###############
|
2014-03-19 07:10:45 +00:00
|
|
|
set(kwin_effects_dbus_xml ${CMAKE_CURRENT_SOURCE_DIR}/org.kde.kwin.Effects.xml)
|
2020-04-01 22:41:38 +00:00
|
|
|
qt5_add_dbus_interface(effects_interface_SRCS ${kwin_effects_dbus_xml} kwineffects_interface)
|
2020-04-02 11:14:23 +00:00
|
|
|
add_library(KWinEffectsInterface STATIC ${effects_interface_SRCS})
|
2020-04-01 22:41:38 +00:00
|
|
|
target_link_libraries(KWinEffectsInterface Qt5::DBus)
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-08-11 16:03:01 +00:00
|
|
|
include_directories(BEFORE
|
2011-02-19 08:58:44 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/libkwineffects
|
2007-06-22 16:32:06 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2011-02-19 08:58:44 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/libkwineffects
|
2007-04-29 17:35:43 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/effects
|
2009-09-13 11:36:45 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tabbox
|
2017-08-11 19:40:49 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/platformsupport
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
add_subdirectory(libkwineffects)
|
|
|
|
if (KWIN_BUILD_KCMS)
|
|
|
|
add_subdirectory(kcmkwin)
|
2013-02-25 10:14:56 +00:00
|
|
|
endif()
|
2011-04-28 14:18:15 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
add_subdirectory(data)
|
2007-06-22 16:32:06 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
add_subdirectory(effects)
|
|
|
|
add_subdirectory(scripts)
|
|
|
|
add_subdirectory(tabbox)
|
2014-03-04 07:17:44 +00:00
|
|
|
add_subdirectory(scripting)
|
2016-06-20 09:21:16 +00:00
|
|
|
add_subdirectory(helpers)
|
2013-02-15 15:47:09 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
########### next target ###############
|
|
|
|
|
2020-01-22 12:45:51 +00:00
|
|
|
set(kwin_SRCS
|
2020-05-18 19:37:41 +00:00
|
|
|
3rdparty/xcursor.c
|
2019-09-17 07:55:00 +00:00
|
|
|
abstract_client.cpp
|
|
|
|
abstract_opengl_context_attribute_builder.cpp
|
2018-03-28 23:27:21 +00:00
|
|
|
abstract_output.cpp
|
2019-06-13 09:36:07 +00:00
|
|
|
abstract_wayland_output.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
activation.cpp
|
2017-01-11 09:21:03 +00:00
|
|
|
appmenu.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
atoms.cpp
|
|
|
|
client_machine.cpp
|
2020-01-07 15:12:11 +00:00
|
|
|
colorcorrection/clockskewnotifier.cpp
|
|
|
|
colorcorrection/clockskewnotifierengine.cpp
|
[colorcorrection] Night Color - blue light filter at nighttime
With Wayland KWin needs to provide certain services, which were provided
before that by the Xserver. One of these is gamma correction, which includes
the - by many people beloved - functionality to reduce the blue light at
nighttime. This patch provides the KWin part of that. It is self contained,
but in the end will work in tandem with a lib in Plasma Workspace and a KCM
in Plasma Desktop, which can be used to configure Night Color.
* Three modi:
** Automatic: The location and sun timings are determined automatically
(location data updates will be provided by the workspace)
** Location: The sun timings are determined by fixed location data
** Timings: The sun timings are set manually by the user
* Color temperature value changes are smoothly applied:
** Configuration changes, which lead to other current values are changed
in a quick way over a few seconds
** Changes on sunrise and sunset are applied slowly over the course of few
minutes till several hours depending on the configuration
* The current color value is set immediately at startup or after suspend
phases and VT switches. There is no flickering.
* All configuration is done via a DBus interface, changed values are tested
on correctness and applied atomically
* Self contained mechanism, speaks directly to the hardware by setting the
gamma ramps on the CRTC
* Currently working on DRM backend, extensible to other platform backends in
the future
* The code is written in a way to make the classes later easily extendable to
also provide normal color correction, as it's currently done by KGamma on X
Test Plan:
Manually with the workspace parts and added integration tests in KWin using
the virtual backend.
BUG:371494
Reviewers: #kwin, graesslin
Subscribers: kwin, plasma-devel, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D5928
2017-12-11 09:43:12 +00:00
|
|
|
colorcorrection/colorcorrectdbusinterface.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
colorcorrection/manager.cpp
|
[colorcorrection] Night Color - blue light filter at nighttime
With Wayland KWin needs to provide certain services, which were provided
before that by the Xserver. One of these is gamma correction, which includes
the - by many people beloved - functionality to reduce the blue light at
nighttime. This patch provides the KWin part of that. It is self contained,
but in the end will work in tandem with a lib in Plasma Workspace and a KCM
in Plasma Desktop, which can be used to configure Night Color.
* Three modi:
** Automatic: The location and sun timings are determined automatically
(location data updates will be provided by the workspace)
** Location: The sun timings are determined by fixed location data
** Timings: The sun timings are set manually by the user
* Color temperature value changes are smoothly applied:
** Configuration changes, which lead to other current values are changed
in a quick way over a few seconds
** Changes on sunrise and sunset are applied slowly over the course of few
minutes till several hours depending on the configuration
* The current color value is set immediately at startup or after suspend
phases and VT switches. There is no flickering.
* All configuration is done via a DBus interface, changed values are tested
on correctness and applied atomically
* Self contained mechanism, speaks directly to the hardware by setting the
gamma ramps on the CRTC
* Currently working on DRM backend, extensible to other platform backends in
the future
* The code is written in a way to make the classes later easily extendable to
also provide normal color correction, as it's currently done by KGamma on X
Test Plan:
Manually with the workspace parts and added integration tests in KWin using
the virtual backend.
BUG:371494
Reviewers: #kwin, graesslin
Subscribers: kwin, plasma-devel, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D5928
2017-12-11 09:43:12 +00:00
|
|
|
colorcorrection/suncalc.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
composite.cpp
|
|
|
|
cursor.cpp
|
|
|
|
dbusinterface.cpp
|
|
|
|
debug_console.cpp
|
|
|
|
decorations/decoratedclient.cpp
|
|
|
|
decorations/decorationbridge.cpp
|
|
|
|
decorations/decorationpalette.cpp
|
|
|
|
decorations/decorationrenderer.cpp
|
|
|
|
decorations/decorations_logging.cpp
|
|
|
|
decorations/settings.cpp
|
|
|
|
deleted.cpp
|
2020-07-22 17:29:23 +00:00
|
|
|
dmabuftexture.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
effectloader.cpp
|
|
|
|
effects.cpp
|
2017-06-26 04:56:55 +00:00
|
|
|
egl_context_attribute_builder.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
events.cpp
|
|
|
|
focuschain.cpp
|
|
|
|
geometrytip.cpp
|
|
|
|
gestures.cpp
|
|
|
|
globalshortcuts.cpp
|
|
|
|
group.cpp
|
2017-11-16 20:48:19 +00:00
|
|
|
idle_inhibition.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
input.cpp
|
|
|
|
input_event.cpp
|
|
|
|
input_event_spy.cpp
|
2020-09-30 10:28:42 +00:00
|
|
|
inputmethod.cpp
|
2020-07-11 16:40:28 +00:00
|
|
|
inputpanelv1client.cpp
|
2020-09-04 07:03:04 +00:00
|
|
|
inputpanelv1integration.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
internal_client.cpp
|
|
|
|
keyboard_input.cpp
|
|
|
|
keyboard_layout.cpp
|
|
|
|
keyboard_layout_switching.cpp
|
|
|
|
keyboard_repeat.cpp
|
|
|
|
killwindow.cpp
|
|
|
|
layers.cpp
|
2020-08-07 19:01:42 +00:00
|
|
|
layershellv1client.cpp
|
|
|
|
layershellv1integration.cpp
|
2018-01-23 16:28:18 +00:00
|
|
|
libinput/connection.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
libinput/context.cpp
|
2018-01-23 16:28:18 +00:00
|
|
|
libinput/device.cpp
|
|
|
|
libinput/events.cpp
|
|
|
|
libinput/libinput_logging.cpp
|
2019-10-26 03:40:01 +00:00
|
|
|
linux_dmabuf.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
logind.cpp
|
|
|
|
main.cpp
|
|
|
|
modifier_only_shortcuts.cpp
|
|
|
|
moving_client_x11_filter.cpp
|
|
|
|
netinfo.cpp
|
|
|
|
onscreennotification.cpp
|
|
|
|
options.cpp
|
|
|
|
osd.cpp
|
|
|
|
outline.cpp
|
|
|
|
outputscreens.cpp
|
|
|
|
overlaywindow.cpp
|
|
|
|
placement.cpp
|
|
|
|
platform.cpp
|
|
|
|
pointer_input.cpp
|
|
|
|
popup_input_filter.cpp
|
|
|
|
rootinfo_filter.cpp
|
2020-02-18 13:52:08 +00:00
|
|
|
rulebooksettings.cpp
|
2020-05-18 19:37:41 +00:00
|
|
|
rules.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
scene.cpp
|
|
|
|
screenedge.cpp
|
|
|
|
screenlockerwatcher.cpp
|
|
|
|
screens.cpp
|
|
|
|
scripting/dbuscall.cpp
|
|
|
|
scripting/meta.cpp
|
|
|
|
scripting/screenedgeitem.cpp
|
|
|
|
scripting/scriptedeffect.cpp
|
|
|
|
scripting/scripting.cpp
|
|
|
|
scripting/scripting_logging.cpp
|
|
|
|
scripting/scripting_model.cpp
|
|
|
|
scripting/scriptingutils.cpp
|
|
|
|
scripting/timer.cpp
|
|
|
|
scripting/workspace_wrapper.cpp
|
|
|
|
shadow.cpp
|
|
|
|
sm.cpp
|
2020-04-22 11:59:42 +00:00
|
|
|
subsurfacemonitor.cpp
|
2020-04-27 11:01:17 +00:00
|
|
|
syncalarmx11filter.cpp
|
2020-02-17 18:39:17 +00:00
|
|
|
tablet_input.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
thumbnailitem.cpp
|
|
|
|
toplevel.cpp
|
2018-12-01 13:52:47 +00:00
|
|
|
touch_hide_cursor_spy.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
touch_input.cpp
|
|
|
|
udev.cpp
|
|
|
|
unmanaged.cpp
|
|
|
|
useractions.cpp
|
|
|
|
utils.cpp
|
|
|
|
virtualdesktops.cpp
|
|
|
|
virtualdesktopsdbustypes.cpp
|
|
|
|
virtualkeyboard_dbus.cpp
|
|
|
|
was_user_interaction_x11_filter.cpp
|
|
|
|
wayland_server.cpp
|
2020-02-17 18:39:17 +00:00
|
|
|
waylandclient.cpp
|
2020-05-07 14:29:41 +00:00
|
|
|
waylandshellintegration.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
window_property_notify_x11_filter.cpp
|
|
|
|
workspace.cpp
|
2019-09-24 08:48:08 +00:00
|
|
|
x11client.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
x11eventfilter.cpp
|
|
|
|
xcbutils.cpp
|
2020-05-18 19:37:41 +00:00
|
|
|
xcursortheme.cpp
|
2019-08-30 21:36:58 +00:00
|
|
|
xdgshellclient.cpp
|
2020-09-03 19:26:04 +00:00
|
|
|
xdgshellintegration.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
xkb.cpp
|
2020-04-27 18:44:12 +00:00
|
|
|
xwaylandclient.cpp
|
2018-08-22 12:36:11 +00:00
|
|
|
xwl/xwayland_interface.cpp
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-01-07 15:12:11 +00:00
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
2020-01-22 12:45:51 +00:00
|
|
|
set(kwin_SRCS
|
|
|
|
${kwin_SRCS}
|
2020-01-07 15:12:11 +00:00
|
|
|
colorcorrection/clockskewnotifierengine_linux.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
[colorcorrection] Night Color - blue light filter at nighttime
With Wayland KWin needs to provide certain services, which were provided
before that by the Xserver. One of these is gamma correction, which includes
the - by many people beloved - functionality to reduce the blue light at
nighttime. This patch provides the KWin part of that. It is self contained,
but in the end will work in tandem with a lib in Plasma Workspace and a KCM
in Plasma Desktop, which can be used to configure Night Color.
* Three modi:
** Automatic: The location and sun timings are determined automatically
(location data updates will be provided by the workspace)
** Location: The sun timings are determined by fixed location data
** Timings: The sun timings are set manually by the user
* Color temperature value changes are smoothly applied:
** Configuration changes, which lead to other current values are changed
in a quick way over a few seconds
** Changes on sunrise and sunset are applied slowly over the course of few
minutes till several hours depending on the configuration
* The current color value is set immediately at startup or after suspend
phases and VT switches. There is no flickering.
* All configuration is done via a DBus interface, changed values are tested
on correctness and applied atomically
* Self contained mechanism, speaks directly to the hardware by setting the
gamma ramps on the CRTC
* Currently working on DRM backend, extensible to other platform backends in
the future
* The code is written in a way to make the classes later easily extendable to
also provide normal color correction, as it's currently done by KGamma on X
Test Plan:
Manually with the workspace parts and added integration tests in KWin using
the virtual backend.
BUG:371494
Reviewers: #kwin, graesslin
Subscribers: kwin, plasma-devel, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D5928
2017-12-11 09:43:12 +00:00
|
|
|
include(ECMQtDeclareLoggingCategory)
|
2020-01-22 12:45:51 +00:00
|
|
|
ecm_qt_declare_logging_category(kwin_SRCS
|
[colorcorrection] Night Color - blue light filter at nighttime
With Wayland KWin needs to provide certain services, which were provided
before that by the Xserver. One of these is gamma correction, which includes
the - by many people beloved - functionality to reduce the blue light at
nighttime. This patch provides the KWin part of that. It is self contained,
but in the end will work in tandem with a lib in Plasma Workspace and a KCM
in Plasma Desktop, which can be used to configure Night Color.
* Three modi:
** Automatic: The location and sun timings are determined automatically
(location data updates will be provided by the workspace)
** Location: The sun timings are determined by fixed location data
** Timings: The sun timings are set manually by the user
* Color temperature value changes are smoothly applied:
** Configuration changes, which lead to other current values are changed
in a quick way over a few seconds
** Changes on sunrise and sunset are applied slowly over the course of few
minutes till several hours depending on the configuration
* The current color value is set immediately at startup or after suspend
phases and VT switches. There is no flickering.
* All configuration is done via a DBus interface, changed values are tested
on correctness and applied atomically
* Self contained mechanism, speaks directly to the hardware by setting the
gamma ramps on the CRTC
* Currently working on DRM backend, extensible to other platform backends in
the future
* The code is written in a way to make the classes later easily extendable to
also provide normal color correction, as it's currently done by KGamma on X
Test Plan:
Manually with the workspace parts and added integration tests in KWin using
the virtual backend.
BUG:371494
Reviewers: #kwin, graesslin
Subscribers: kwin, plasma-devel, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D5928
2017-12-11 09:43:12 +00:00
|
|
|
HEADER
|
|
|
|
colorcorrect_logging.h
|
|
|
|
IDENTIFIER
|
|
|
|
KWIN_COLORCORRECTION
|
|
|
|
CATEGORY_NAME
|
|
|
|
kwin_colorcorrection
|
|
|
|
DEFAULT_SEVERITY
|
|
|
|
Critical
|
|
|
|
)
|
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
if (KWIN_BUILD_TABBOX)
|
2018-11-04 16:37:07 +00:00
|
|
|
include_directories(${Qt5Gui_PRIVATE_INCLUDE_DIRS})
|
2020-01-22 12:45:51 +00:00
|
|
|
set(kwin_SRCS ${kwin_SRCS}
|
2011-06-30 11:02:30 +00:00
|
|
|
tabbox/clientmodel.cpp
|
2012-11-17 10:50:59 +00:00
|
|
|
tabbox/desktopchain.cpp
|
2011-06-30 11:02:30 +00:00
|
|
|
tabbox/desktopmodel.cpp
|
2013-12-10 06:14:44 +00:00
|
|
|
tabbox/switcheritem.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
tabbox/tabbox.cpp
|
|
|
|
tabbox/tabbox_logging.cpp
|
2011-06-30 11:02:30 +00:00
|
|
|
tabbox/tabboxconfig.cpp
|
|
|
|
tabbox/tabboxhandler.cpp
|
2017-08-18 15:32:31 +00:00
|
|
|
tabbox/x11_filter.cpp
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
2013-02-25 10:14:56 +00:00
|
|
|
endif()
|
2011-06-30 11:02:30 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
if (KWIN_BUILD_ACTIVITIES)
|
2020-01-22 12:45:51 +00:00
|
|
|
set(kwin_SRCS ${kwin_SRCS}
|
2013-04-04 14:14:12 +00:00
|
|
|
activities.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2020-07-21 13:33:03 +00:00
|
|
|
if (KWIN_BUILD_RUNNERS)
|
|
|
|
set(kwin_SRCS ${kwin_SRCS}
|
|
|
|
runners/windowsrunnerinterface.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-01-23 16:28:18 +00:00
|
|
|
if (HAVE_LINUX_VT_H)
|
2020-01-22 12:45:51 +00:00
|
|
|
set(kwin_SRCS ${kwin_SRCS}
|
2019-09-17 09:15:35 +00:00
|
|
|
virtual_terminal.cpp
|
|
|
|
)
|
2020-05-31 21:52:28 +00:00
|
|
|
set(KWIN_TTY_PREFIX "/dev/tty")
|
2014-08-14 12:43:57 +00:00
|
|
|
endif()
|
|
|
|
|
2020-05-31 18:57:51 +00:00
|
|
|
if(CMAKE_SYSTEM MATCHES "FreeBSD")
|
|
|
|
# We know it has epoll, so supports VT as well
|
|
|
|
set(kwin_SRCS ${kwin_SRCS}
|
|
|
|
virtual_terminal.cpp
|
|
|
|
)
|
2020-05-31 21:52:28 +00:00
|
|
|
set(KWIN_TTY_PREFIX "/dev/ttyv")
|
2020-05-31 18:57:51 +00:00
|
|
|
endif()
|
2020-05-31 21:52:28 +00:00
|
|
|
if(KWIN_TTY_PREFIX)
|
|
|
|
set_source_files_properties(virtual_terminal.cpp PROPERTIES COMPILE_DEFINITIONS KWIN_TTY_PREFIX="${KWIN_TTY_PREFIX}")
|
|
|
|
endif()
|
2020-05-31 18:57:51 +00:00
|
|
|
|
2020-01-22 12:45:51 +00:00
|
|
|
kconfig_add_kcfg_files(kwin_SRCS settings.kcfgc)
|
|
|
|
kconfig_add_kcfg_files(kwin_SRCS colorcorrection/colorcorrect_settings.kcfgc)
|
2020-02-18 13:52:08 +00:00
|
|
|
kconfig_add_kcfg_files(kwin_SRCS rulesettings.kcfgc)
|
|
|
|
kconfig_add_kcfg_files(kwin_SRCS rulebooksettingsbase.kcfgc)
|
2013-01-24 14:25:34 +00:00
|
|
|
|
2020-01-22 12:45:51 +00:00
|
|
|
qt5_add_dbus_adaptor(kwin_SRCS org.kde.KWin.xml dbusinterface.h KWin::DBusInterface)
|
|
|
|
qt5_add_dbus_adaptor(kwin_SRCS org.kde.kwin.Compositing.xml dbusinterface.h KWin::CompositorDBusInterface)
|
|
|
|
qt5_add_dbus_adaptor(kwin_SRCS org.kde.kwin.ColorCorrect.xml colorcorrection/colorcorrectdbusinterface.h KWin::ColorCorrect::ColorCorrectDBusInterface)
|
|
|
|
qt5_add_dbus_adaptor(kwin_SRCS ${kwin_effects_dbus_xml} effects.h KWin::EffectsHandlerImpl)
|
|
|
|
qt5_add_dbus_adaptor(kwin_SRCS org.kde.KWin.VirtualDesktopManager.xml dbusinterface.h KWin::VirtualDesktopManagerDBusInterface)
|
|
|
|
qt5_add_dbus_adaptor(kwin_SRCS org.kde.KWin.Session.xml sm.h KWin::SessionManager)
|
2020-07-21 13:33:03 +00:00
|
|
|
if (KWIN_BUILD_RUNNERS)
|
|
|
|
qt5_add_dbus_adaptor(kwin_SRCS "runners/org.kde.krunner1.xml" runners/windowsrunnerinterface.h KWin::WindowsRunner)
|
|
|
|
endif()
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-01-22 12:45:51 +00:00
|
|
|
qt5_add_dbus_interface(kwin_SRCS ${KSCREENLOCKER_DBUS_INTERFACES_DIR}/kf5_org.freedesktop.ScreenSaver.xml screenlocker_interface)
|
|
|
|
qt5_add_dbus_interface(kwin_SRCS ${KSCREENLOCKER_DBUS_INTERFACES_DIR}/org.kde.screensaver.xml kscreenlocker_interface)
|
|
|
|
qt5_add_dbus_interface(kwin_SRCS org.kde.kappmenu.xml appmenu_interface)
|
2017-01-11 09:21:03 +00:00
|
|
|
|
2020-01-22 12:45:51 +00:00
|
|
|
ki18n_wrap_ui(kwin_SRCS
|
2016-03-14 09:23:52 +00:00
|
|
|
debug_console.ui
|
2013-12-12 13:17:26 +00:00
|
|
|
shortcutdialog.ui
|
|
|
|
)
|
|
|
|
|
2013-02-25 11:05:36 +00:00
|
|
|
########### target link libraries ###############
|
|
|
|
|
|
|
|
set(kwin_OWN_LIBS
|
2019-09-17 07:55:00 +00:00
|
|
|
kwineffects
|
2019-09-18 10:31:02 +00:00
|
|
|
kwin4_effect_builtins
|
2013-02-25 11:05:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(kwin_QT_LIBS
|
2013-10-02 13:23:56 +00:00
|
|
|
Qt5::Concurrent
|
2013-08-20 06:47:47 +00:00
|
|
|
Qt5::DBus
|
2013-08-20 07:10:18 +00:00
|
|
|
Qt5::Quick
|
2014-03-04 07:17:44 +00:00
|
|
|
Qt5::Script
|
2019-09-17 07:55:00 +00:00
|
|
|
Qt5::Sensors
|
2013-02-25 11:05:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(kwin_KDE_LIBS
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::ConfigCore
|
2013-12-12 13:17:26 +00:00
|
|
|
KF5::ConfigWidgets
|
2019-09-17 07:55:00 +00:00
|
|
|
KF5::CoreAddons
|
2013-12-09 08:33:58 +00:00
|
|
|
KF5::GlobalAccel
|
2015-06-26 08:51:11 +00:00
|
|
|
KF5::GlobalAccelPrivate
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::I18n
|
|
|
|
KF5::Notifications
|
2015-07-06 14:50:33 +00:00
|
|
|
KF5::Package
|
2013-10-15 23:36:24 +00:00
|
|
|
KF5::Plasma
|
2017-11-01 15:45:05 +00:00
|
|
|
KF5::QuickAddons
|
2019-09-17 07:55:00 +00:00
|
|
|
KF5::WindowSystem
|
2019-09-18 10:31:02 +00:00
|
|
|
|
|
|
|
KDecoration2::KDecoration
|
|
|
|
KDecoration2::KDecoration2Private
|
|
|
|
|
2015-11-05 13:09:23 +00:00
|
|
|
PW::KScreenLocker
|
2013-02-25 11:05:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(kwin_XLIB_LIBS
|
2013-08-20 06:47:47 +00:00
|
|
|
${X11_ICE_LIB}
|
|
|
|
${X11_SM_LIB}
|
2019-09-17 07:55:00 +00:00
|
|
|
${X11_X11_LIB}
|
2016-01-19 21:35:14 +00:00
|
|
|
)
|
|
|
|
|
2013-02-25 11:05:36 +00:00
|
|
|
set(kwin_XCB_LIBS
|
2014-02-25 14:48:39 +00:00
|
|
|
XCB::COMPOSITE
|
2019-09-17 07:55:00 +00:00
|
|
|
XCB::DAMAGE
|
2014-09-18 15:09:16 +00:00
|
|
|
XCB::GLX
|
2017-08-01 19:28:36 +00:00
|
|
|
XCB::ICCCM
|
2019-09-17 07:55:00 +00:00
|
|
|
XCB::KEYSYMS
|
|
|
|
XCB::RANDR
|
|
|
|
XCB::RENDER
|
|
|
|
XCB::SHAPE
|
|
|
|
XCB::SHM
|
|
|
|
XCB::SYNC
|
|
|
|
XCB::XCB
|
|
|
|
XCB::XFIXES
|
2013-02-25 11:05:36 +00:00
|
|
|
)
|
|
|
|
|
2013-05-15 11:47:27 +00:00
|
|
|
set(kwin_WAYLAND_LIBS
|
2014-09-19 11:59:51 +00:00
|
|
|
KF5::WaylandClient
|
2020-04-29 15:18:41 +00:00
|
|
|
Plasma::KWaylandServer
|
2019-09-17 07:55:00 +00:00
|
|
|
XKB::XKB
|
2015-03-31 07:30:19 +00:00
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
2013-05-15 11:47:27 +00:00
|
|
|
)
|
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
if (KWIN_BUILD_ACTIVITIES)
|
2014-02-13 19:06:33 +00:00
|
|
|
set(kwin_KDE_LIBS ${kwin_KDE_LIBS} KF5::Activities)
|
2013-02-25 10:14:56 +00:00
|
|
|
endif()
|
2012-02-26 10:38:16 +00:00
|
|
|
|
2020-07-21 13:33:03 +00:00
|
|
|
if (KWIN_BUILD_RUNNERS)
|
|
|
|
set(kwin_KDE_LIBS ${kwin_KDE_LIBS} KF5::Runner)
|
|
|
|
endif()
|
|
|
|
|
2013-02-25 11:05:36 +00:00
|
|
|
set(kwinLibs
|
|
|
|
${kwin_OWN_LIBS}
|
|
|
|
${kwin_QT_LIBS}
|
|
|
|
${kwin_KDE_LIBS}
|
|
|
|
${kwin_XLIB_LIBS}
|
|
|
|
${kwin_XCB_LIBS}
|
2015-08-10 12:50:45 +00:00
|
|
|
${kwin_WAYLAND_LIBS}
|
2018-01-23 16:28:18 +00:00
|
|
|
${UDEV_LIBS}
|
|
|
|
Libinput::Libinput
|
2013-02-25 11:05:36 +00:00
|
|
|
)
|
|
|
|
|
2020-01-22 12:45:51 +00:00
|
|
|
add_library(kwin SHARED ${kwin_SRCS})
|
2020-03-17 14:21:35 +00:00
|
|
|
if (Libinput_VERSION_STRING VERSION_GREATER 1.14)
|
|
|
|
target_compile_definitions(kwin PRIVATE -DLIBINPUT_HAS_TOTEM)
|
|
|
|
endif ()
|
2011-07-17 16:18:22 +00:00
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
set_target_properties(kwin PROPERTIES
|
2014-08-20 13:43:27 +00:00
|
|
|
VERSION ${PROJECT_VERSION}
|
|
|
|
SOVERSION ${PROJECT_VERSION_MAJOR}
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
2014-08-12 07:08:48 +00:00
|
|
|
|
2020-05-31 20:24:08 +00:00
|
|
|
target_link_libraries(kwin ${kwinLibs} kwinglutils ${epoxy_LIBRARY})
|
2020-07-22 17:29:23 +00:00
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
generate_export_header(kwin EXPORT_FILE_NAME kwin_export.h)
|
2011-07-17 16:18:22 +00:00
|
|
|
|
2020-05-31 18:57:51 +00:00
|
|
|
if(CMAKE_SYSTEM MATCHES "FreeBSD")
|
|
|
|
# epoll is required, includes live under ${LOCALBASE}, separate library
|
|
|
|
target_include_directories(kwin PUBLIC ${epoll_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(kwin ${kwinLibs} ${epoll_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
|
2020-01-22 12:45:51 +00:00
|
|
|
add_executable(kwin_x11 main_x11.cpp)
|
|
|
|
target_link_libraries(kwin_x11 kwin KF5::Crash Qt5::X11Extras)
|
2014-08-12 07:08:48 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
install(TARGETS kwin ${INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP)
|
|
|
|
install(TARGETS kwin_x11 ${INSTALL_TARGETS_DEFAULT_ARGS})
|
2014-08-12 07:08:48 +00:00
|
|
|
|
2018-08-21 20:06:42 +00:00
|
|
|
set(kwin_XWAYLAND_SRCS
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/clipboard.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/databridge.cpp
|
2018-08-22 12:56:48 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/dnd.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/drag.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/drag_wl.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/drag_x.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/selection.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/selection_source.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/transfer.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xwl/xwayland.cpp
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
2018-08-21 20:06:42 +00:00
|
|
|
include(ECMQtDeclareLoggingCategory)
|
|
|
|
ecm_qt_declare_logging_category(kwin_XWAYLAND_SRCS
|
|
|
|
HEADER
|
|
|
|
xwayland_logging.h
|
|
|
|
IDENTIFIER
|
|
|
|
KWIN_XWL
|
|
|
|
CATEGORY_NAME
|
|
|
|
kwin_xwl
|
|
|
|
DEFAULT_SEVERITY
|
2020-07-20 14:38:40 +00:00
|
|
|
Warning
|
2018-08-21 20:06:42 +00:00
|
|
|
)
|
|
|
|
|
2019-02-19 08:50:20 +00:00
|
|
|
set(kwin_WAYLAND_SRCS
|
|
|
|
main_wayland.cpp
|
2019-09-17 07:55:00 +00:00
|
|
|
tabletmodemanager.cpp
|
2019-09-17 09:15:35 +00:00
|
|
|
)
|
2020-07-22 17:29:23 +00:00
|
|
|
ecm_qt_declare_logging_category(kwin_WAYLAND_SRCS
|
|
|
|
HEADER
|
2020-07-28 13:37:04 +00:00
|
|
|
kwinscreencast_logging.h
|
2020-07-22 17:29:23 +00:00
|
|
|
IDENTIFIER
|
2020-07-28 13:37:04 +00:00
|
|
|
KWIN_SCREENCAST
|
2020-07-22 17:29:23 +00:00
|
|
|
CATEGORY_NAME
|
2020-07-28 13:37:04 +00:00
|
|
|
kwin_screencast
|
2020-07-22 17:29:23 +00:00
|
|
|
DEFAULT_SEVERITY
|
|
|
|
Warning
|
|
|
|
)
|
2019-02-19 08:50:20 +00:00
|
|
|
|
2018-08-21 20:06:42 +00:00
|
|
|
add_executable(kwin_wayland ${kwin_WAYLAND_SRCS} ${kwin_XWAYLAND_SRCS})
|
2020-07-23 21:33:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (PipeWire_FOUND)
|
|
|
|
target_sources(kwin_wayland
|
|
|
|
PRIVATE
|
2020-10-15 09:27:00 +00:00
|
|
|
screencast/eglnativefence.cpp
|
2020-07-23 21:33:30 +00:00
|
|
|
screencast/screencastmanager.cpp
|
|
|
|
screencast/pipewirecore.cpp
|
|
|
|
screencast/pipewirestream.cpp)
|
|
|
|
target_link_libraries(kwin_wayland PkgConfig::PipeWire)
|
|
|
|
endif()
|
|
|
|
|
2020-07-22 17:29:23 +00:00
|
|
|
target_link_libraries(kwin_wayland
|
|
|
|
kwin
|
|
|
|
KF5::Crash
|
|
|
|
)
|
2017-09-10 10:05:29 +00:00
|
|
|
if (HAVE_LIBCAP)
|
|
|
|
target_link_libraries(kwin_wayland ${Libcap_LIBRARIES})
|
|
|
|
endif()
|
2014-08-12 07:08:48 +00:00
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
install(TARGETS kwin_wayland ${INSTALL_TARGETS_DEFAULT_ARGS})
|
2017-09-10 10:05:29 +00:00
|
|
|
if (HAVE_LIBCAP)
|
|
|
|
install(
|
|
|
|
CODE "execute_process(
|
|
|
|
COMMAND
|
|
|
|
${SETCAP_EXECUTABLE}
|
|
|
|
CAP_SYS_NICE=+ep
|
2017-10-10 17:54:07 +00:00
|
|
|
\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_BINDIR}/kwin_wayland)"
|
2017-09-10 10:05:29 +00:00
|
|
|
)
|
|
|
|
endif()
|
2015-05-05 15:58:09 +00:00
|
|
|
|
2017-08-11 19:40:49 +00:00
|
|
|
add_subdirectory(platformsupport)
|
2015-08-10 12:50:45 +00:00
|
|
|
add_subdirectory(plugins)
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2019-09-17 09:15:35 +00:00
|
|
|
install(FILES kwin.kcfg DESTINATION ${KCFG_INSTALL_DIR} RENAME ${KWIN_NAME}.kcfg)
|
|
|
|
install(FILES colorcorrection/colorcorrect_settings.kcfg DESTINATION ${KCFG_INSTALL_DIR} RENAME ${KWIN_NAME}_colorcorrect.kcfg)
|
|
|
|
install(FILES kwin.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR} RENAME ${KWIN_NAME}.notifyrc)
|
2014-03-07 13:46:11 +00:00
|
|
|
install(
|
|
|
|
FILES
|
2019-09-17 07:55:00 +00:00
|
|
|
org.kde.KWin.VirtualDesktopManager.xml
|
2014-03-07 13:46:11 +00:00
|
|
|
org.kde.KWin.xml
|
[colorcorrection] Night Color - blue light filter at nighttime
With Wayland KWin needs to provide certain services, which were provided
before that by the Xserver. One of these is gamma correction, which includes
the - by many people beloved - functionality to reduce the blue light at
nighttime. This patch provides the KWin part of that. It is self contained,
but in the end will work in tandem with a lib in Plasma Workspace and a KCM
in Plasma Desktop, which can be used to configure Night Color.
* Three modi:
** Automatic: The location and sun timings are determined automatically
(location data updates will be provided by the workspace)
** Location: The sun timings are determined by fixed location data
** Timings: The sun timings are set manually by the user
* Color temperature value changes are smoothly applied:
** Configuration changes, which lead to other current values are changed
in a quick way over a few seconds
** Changes on sunrise and sunset are applied slowly over the course of few
minutes till several hours depending on the configuration
* The current color value is set immediately at startup or after suspend
phases and VT switches. There is no flickering.
* All configuration is done via a DBus interface, changed values are tested
on correctness and applied atomically
* Self contained mechanism, speaks directly to the hardware by setting the
gamma ramps on the CRTC
* Currently working on DRM backend, extensible to other platform backends in
the future
* The code is written in a way to make the classes later easily extendable to
also provide normal color correction, as it's currently done by KGamma on X
Test Plan:
Manually with the workspace parts and added integration tests in KWin using
the virtual backend.
BUG:371494
Reviewers: #kwin, graesslin
Subscribers: kwin, plasma-devel, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D5928
2017-12-11 09:43:12 +00:00
|
|
|
org.kde.kwin.ColorCorrect.xml
|
2019-09-17 07:55:00 +00:00
|
|
|
org.kde.kwin.Compositing.xml
|
2014-03-07 13:46:11 +00:00
|
|
|
org.kde.kwin.Effects.xml
|
|
|
|
DESTINATION
|
2015-10-28 17:15:36 +00:00
|
|
|
${KDE_INSTALL_DBUSINTERFACEDIR}
|
2014-03-07 13:46:11 +00:00
|
|
|
)
|
2019-09-17 09:15:35 +00:00
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kwin_export.h DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel)
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2014-03-04 07:17:44 +00:00
|
|
|
# Install the KWin/Script service type
|
2019-09-17 09:15:35 +00:00
|
|
|
install(FILES scripting/kwinscript.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR})
|
2012-02-18 09:34:27 +00:00
|
|
|
|
2020-07-21 13:33:03 +00:00
|
|
|
# install KWin krunner runner
|
|
|
|
if (KWIN_BUILD_RUNNERS)
|
|
|
|
install(FILES runners/kwin-runner-windows.desktop DESTINATION ${KDE_INSTALL_DATAROOTDIR}/krunner/dbusplugins)
|
|
|
|
endif()
|
|
|
|
|
2014-02-27 14:25:03 +00:00
|
|
|
add_subdirectory(qml)
|
2014-04-03 08:15:57 +00:00
|
|
|
|
2018-05-27 20:02:58 +00:00
|
|
|
if (BUILD_TESTING)
|
2020-09-01 08:58:46 +00:00
|
|
|
find_package(WaylandProtocols REQUIRED)
|
|
|
|
find_package(QtWaylandScanner ${QT_MIN_VERSION} REQUIRED)
|
|
|
|
find_package(Wayland REQUIRED COMPONENTS Client)
|
|
|
|
|
2018-05-27 20:02:58 +00:00
|
|
|
add_subdirectory(autotests)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif()
|
|
|
|
|
2014-04-03 08:15:57 +00:00
|
|
|
if (KF5DocTools_FOUND)
|
|
|
|
add_subdirectory(doc)
|
|
|
|
endif()
|
2014-03-21 15:07:55 +00:00
|
|
|
|
2018-06-10 11:02:57 +00:00
|
|
|
add_subdirectory(kconf_update)
|
|
|
|
|
2019-11-04 23:44:34 +00:00
|
|
|
# add clang-format target for all our real source files
|
|
|
|
file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h)
|
|
|
|
kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
|
|
|
|
|
2015-03-22 21:25:38 +00:00
|
|
|
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
|
|
|
|
2017-09-12 16:14:03 +00:00
|
|
|
include(CMakePackageConfigHelpers)
|
2014-03-21 15:07:55 +00:00
|
|
|
set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KWinDBusInterface")
|
2017-09-12 16:14:03 +00:00
|
|
|
configure_package_config_file(KWinDBusInterfaceConfig.cmake.in
|
2014-03-27 11:31:25 +00:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/KWinDBusInterfaceConfig.cmake"
|
2015-10-28 17:15:36 +00:00
|
|
|
PATH_VARS KDE_INSTALL_DBUSINTERFACEDIR
|
2014-03-27 11:31:25 +00:00
|
|
|
INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR})
|
2014-03-21 15:07:55 +00:00
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/KWinDBusInterfaceConfig.cmake
|
|
|
|
DESTINATION ${CMAKECONFIG_INSTALL_DIR})
|
2020-02-17 14:42:01 +00:00
|
|
|
|
|
|
|
ecm_install_configured_files(INPUT plasma-kwin_x11.service.in plasma-kwin_wayland.service.in @ONLY
|
|
|
|
DESTINATION ${SYSTEMD_USER_UNIT_INSTALL_DIR})
|