2018-11-29 15:57:35 +00:00
|
|
|
include(ECMQMLModules)
|
|
|
|
ecm_find_qmlmodule(org.kde.plasma.core 2.0)
|
2007-11-04 12:35:51 +00:00
|
|
|
|
2018-11-29 15:57:35 +00:00
|
|
|
# KI18N Translation Domain for this library.
|
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcm_kwin_virtualdesktops\")
|
2014-04-30 06:55:58 +00:00
|
|
|
|
2018-11-29 15:57:35 +00:00
|
|
|
########### next target ###############
|
2007-11-04 12:35:51 +00:00
|
|
|
|
[kcmkwin/desktop] Add animation option back
Summary:
The "new" animation option no longer uses hard coded effects, which
means one could install a third party virtual desktop switching animation,
for example from store.kde.org, and it will be displayed in the KCM.
Test Plan: {F6503565}
Reviewers: #kwin, #vdg, ngraham, davidedmundson
Reviewed By: #kwin, #vdg, ngraham, davidedmundson
Subscribers: davidedmundson, hein, ngraham, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17766
2018-12-22 23:12:51 +00:00
|
|
|
set(kcm_kwin_virtualdesktops_PART_SRCS
|
2019-09-17 09:15:35 +00:00
|
|
|
../../virtualdesktopsdbustypes.cpp
|
[kcmkwin/desktop] Add animation option back
Summary:
The "new" animation option no longer uses hard coded effects, which
means one could install a third party virtual desktop switching animation,
for example from store.kde.org, and it will be displayed in the KCM.
Test Plan: {F6503565}
Reviewers: #kwin, #vdg, ngraham, davidedmundson
Reviewed By: #kwin, #vdg, ngraham, davidedmundson
Subscribers: davidedmundson, hein, ngraham, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17766
2018-12-22 23:12:51 +00:00
|
|
|
animationsmodel.cpp
|
|
|
|
desktopsmodel.cpp
|
2019-09-17 09:15:35 +00:00
|
|
|
virtualdesktops.cpp
|
[kcmkwin/desktop] Add animation option back
Summary:
The "new" animation option no longer uses hard coded effects, which
means one could install a third party virtual desktop switching animation,
for example from store.kde.org, and it will be displayed in the KCM.
Test Plan: {F6503565}
Reviewers: #kwin, #vdg, ngraham, davidedmundson
Reviewed By: #kwin, #vdg, ngraham, davidedmundson
Subscribers: davidedmundson, hein, ngraham, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17766
2018-12-22 23:12:51 +00:00
|
|
|
)
|
2007-11-04 12:35:51 +00:00
|
|
|
|
2018-11-29 15:57:35 +00:00
|
|
|
add_library(kcm_kwin_virtualdesktops MODULE ${kcm_kwin_virtualdesktops_PART_SRCS})
|
2007-11-04 12:35:51 +00:00
|
|
|
|
2018-11-29 15:57:35 +00:00
|
|
|
target_link_libraries(kcm_kwin_virtualdesktops
|
2019-09-18 10:31:02 +00:00
|
|
|
Qt5::DBus
|
|
|
|
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::I18n
|
2018-11-29 15:57:35 +00:00
|
|
|
KF5::KCMUtils
|
|
|
|
KF5::QuickAddons
|
[kcmkwin/desktop] Add animation option back
Summary:
The "new" animation option no longer uses hard coded effects, which
means one could install a third party virtual desktop switching animation,
for example from store.kde.org, and it will be displayed in the KCM.
Test Plan: {F6503565}
Reviewers: #kwin, #vdg, ngraham, davidedmundson
Reviewed By: #kwin, #vdg, ngraham, davidedmundson
Subscribers: davidedmundson, hein, ngraham, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17766
2018-12-22 23:12:51 +00:00
|
|
|
KF5::XmlGui
|
2019-09-18 10:31:02 +00:00
|
|
|
|
[kcmkwin/desktop] Add animation option back
Summary:
The "new" animation option no longer uses hard coded effects, which
means one could install a third party virtual desktop switching animation,
for example from store.kde.org, and it will be displayed in the KCM.
Test Plan: {F6503565}
Reviewers: #kwin, #vdg, ngraham, davidedmundson
Reviewed By: #kwin, #vdg, ngraham, davidedmundson
Subscribers: davidedmundson, hein, ngraham, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17766
2018-12-22 23:12:51 +00:00
|
|
|
kcmkwincommon
|
2013-09-27 11:43:15 +00:00
|
|
|
)
|
2007-11-04 12:35:51 +00:00
|
|
|
|
2018-11-29 15:57:35 +00:00
|
|
|
kcoreaddons_desktop_to_json(kcm_kwin_virtualdesktops "kcm_kwin_virtualdesktops.desktop")
|
2007-11-04 12:35:51 +00:00
|
|
|
|
|
|
|
########### install files ###############
|
2018-11-29 15:57:35 +00:00
|
|
|
|
|
|
|
install(TARGETS kcm_kwin_virtualdesktops DESTINATION ${KDE_INSTALL_PLUGINDIR}/kcms)
|
|
|
|
install(FILES kcm_kwin_virtualdesktops.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR})
|
|
|
|
kpackage_install_package(package kcm_kwin_virtualdesktops kcms)
|