Add a copy of org.freedesktop.ScreenSaver.xml for KWin
Since it is a standard (fd.o) it makes sense to copy the interface rather than creating a dependency with plasma-workspace which it actually doesn't since KWin will work with any screensaver using the freedesktop specification.
This commit is contained in:
parent
0e9f6888e0
commit
f8134f9393
2 changed files with 42 additions and 9 deletions
|
@ -64,14 +64,6 @@ find_package(KF5 CONFIG COMPONENTS Activities)
|
||||||
# TODO: remove once the build system is completely cleaned
|
# TODO: remove once the build system is completely cleaned
|
||||||
find_package(KF5KDE4Support REQUIRED NO_MODULE)
|
find_package(KF5KDE4Support REQUIRED NO_MODULE)
|
||||||
|
|
||||||
# HACK: remove after split
|
|
||||||
if("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
|
|
||||||
# screensaver and ksmserver dbus interface
|
|
||||||
find_package(ScreenSaverDBusInterface CONFIG REQUIRED)
|
|
||||||
else()
|
|
||||||
set(SCREENSAVER_DBUS_INTERFACE ${ksmserver_SOURCE_DIR}/screenlocker/dbus/org.freedesktop.ScreenSaver.xml)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(${Qt5Gui_OPENGL_IMPLEMENTATION} STREQUAL "GL")
|
if(${Qt5Gui_OPENGL_IMPLEMENTATION} STREQUAL "GL")
|
||||||
find_package(OpenGL)
|
find_package(OpenGL)
|
||||||
set_package_properties(OpenGL PROPERTIES DESCRIPTION "The OpenGL libraries"
|
set_package_properties(OpenGL PROPERTIES DESCRIPTION "The OpenGL libraries"
|
||||||
|
@ -369,7 +361,7 @@ qt5_add_dbus_adaptor( kwin_KDEINIT_SRCS org.kde.KWin.xml dbusinterface.h KWin::D
|
||||||
qt5_add_dbus_adaptor( kwin_KDEINIT_SRCS org.kde.kwin.Compositing.xml composite.h KWin::Compositor )
|
qt5_add_dbus_adaptor( kwin_KDEINIT_SRCS org.kde.kwin.Compositing.xml composite.h KWin::Compositor )
|
||||||
qt5_add_dbus_adaptor( kwin_KDEINIT_SRCS org.kde.kwin.Effects.xml effects.h KWin::EffectsHandlerImpl )
|
qt5_add_dbus_adaptor( kwin_KDEINIT_SRCS org.kde.kwin.Effects.xml effects.h KWin::EffectsHandlerImpl )
|
||||||
|
|
||||||
qt5_add_dbus_interface( kwin_KDEINIT_SRCS ${SCREENSAVER_DBUS_INTERFACE} screenlocker_interface)
|
qt5_add_dbus_interface( kwin_KDEINIT_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/org.freedesktop.ScreenSaver.xml screenlocker_interface)
|
||||||
|
|
||||||
qt5_add_resources( kwin_KDEINIT_SRCS resources.qrc )
|
qt5_add_resources( kwin_KDEINIT_SRCS resources.qrc )
|
||||||
|
|
||||||
|
|
41
org.freedesktop.ScreenSaver.xml
Normal file
41
org.freedesktop.ScreenSaver.xml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
||||||
|
<node>
|
||||||
|
<interface name="org.freedesktop.ScreenSaver">
|
||||||
|
<signal name="ActiveChanged">
|
||||||
|
<arg type="b"/>
|
||||||
|
</signal>
|
||||||
|
<method name="Lock">
|
||||||
|
</method>
|
||||||
|
<method name="SimulateUserActivity">
|
||||||
|
</method>
|
||||||
|
<method name="GetActive">
|
||||||
|
<arg type="b" direction="out"/>
|
||||||
|
</method>
|
||||||
|
<method name="GetActiveTime">
|
||||||
|
<arg name="seconds" type="u" direction="out"/>
|
||||||
|
</method>
|
||||||
|
<method name="GetSessionIdleTime">
|
||||||
|
<arg name="seconds" type="u" direction="out"/>
|
||||||
|
</method>
|
||||||
|
<method name="SetActive">
|
||||||
|
<arg type="b" direction="out"/>
|
||||||
|
<arg name="e" type="b" direction="in"/>
|
||||||
|
</method>
|
||||||
|
<method name="Inhibit">
|
||||||
|
<arg name="application_name" type="s" direction="in"/>
|
||||||
|
<arg name="reason_for_inhibit" type="s" direction="in"/>
|
||||||
|
<arg name="cookie" type="u" direction="out"/>
|
||||||
|
</method>
|
||||||
|
<method name="UnInhibit">
|
||||||
|
<arg name="cookie" type="u" direction="in"/>
|
||||||
|
</method>
|
||||||
|
<method name="Throttle">
|
||||||
|
<arg name="application_name" type="s" direction="in"/>
|
||||||
|
<arg name="reason_for_inhibit" type="s" direction="in"/>
|
||||||
|
<arg name="cookie" type="u" direction="out"/>
|
||||||
|
</method>
|
||||||
|
<method name="UnThrottle">
|
||||||
|
<arg name="cookie" type="u" direction="in"/>
|
||||||
|
</method>
|
||||||
|
</interface>
|
||||||
|
</node>
|
Loading…
Reference in a new issue