8a02a802ae
Summary: At the moment, there is no way to tweak duration of the slide animation. This change adds a configuration module so it is possible to change the duration. Test Plan: * enable virtual desktops * go to `System Settings > Desktop Behaviour > Desktop Effects` and select Slide effect under "Virtual Desktop Switching Animation" * click settings/options button and change duration Reviewers: #kwin, #plasma, graesslin Reviewed By: #kwin, #plasma, graesslin Subscribers: graesslin, plasma-devel, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D9382
24 lines
700 B
CMake
24 lines
700 B
CMake
#######################################
|
|
# Config
|
|
set(kwin_slide_config_SRCS slide_config.cpp)
|
|
ki18n_wrap_ui(kwin_slide_config_SRCS slide_config.ui)
|
|
qt5_add_dbus_interface(kwin_slide_config_SRCS ${kwin_effects_dbus_xml} kwineffects_interface)
|
|
kconfig_add_kcfg_files(kwin_slide_config_SRCS slideconfig.kcfgc)
|
|
|
|
add_library(kwin_slide_config MODULE ${kwin_slide_config_SRCS})
|
|
|
|
target_link_libraries(kwin_slide_config
|
|
Qt5::DBus
|
|
KF5::ConfigWidgets
|
|
KF5::I18n
|
|
KF5::Service
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kwin_slide_config slide_config.desktop SERVICE_TYPES kcmodule.desktop)
|
|
|
|
install(
|
|
TARGETS
|
|
kwin_slide_config
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/kwin/effects/configs
|
|
)
|