mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
![]() automatically replaced via: find -name CMakeLists.txt -exec sed -e 's|${KDE4_PLASMA_LIBS}|KDE4::plasma|g' -e 's|${KDE4_KIO_LIBS}|KDE4::kio|g' -e 's|${KDE4_SOLID_LIBS}|KDE4::solid|g' -e 's|${KDE4_KFILE_LIBS}|KDE4::kfile|g' -e 's|${KDE4_KDECORE_LIBS}|KDE4::kdecore|g' -e 's|${KDE4_KDEUI_LIBS}|KDE4::kdeui|g' -e 's|${KDE4_KCMUTILS_LIBS}|KDE4::kcmutils|g' -e 's|${KDE4_KDECLARATIVE_LIBS}|KDE4::kdeclarative|g' -e 's|${KDE4_KPTY_LIBS}|KDE4::kpty|g' -e 's|${KDE4_KEMAIL_LIBS}|KDE4::kemail|g' -e 's|${KDE4_KMEDIAPLAYER_LIBS}|KDE4::kmediaplayer|g' -e 's|${KDE4_KPARTS_LIBS}|KDE4::kparts|g' -e 's|${KDE4_KIDLETIME_LIBS}|KDE4::kidletime|g' -e 's|${KDE4_KTEXTEDITOR_LIBS}|KDE4::ktexteditor|g' -e 's|${KDE4_KPASSWDSTORE_LIBS}|KDE4::kpasswdstore|g' -e 's|${KDE4_KARCHIVE_LIBS}|KDE4::karchive|g' -e 's|${KDE4_KDNSSD_LIBS}|KDE4::kdnssd|g' -e 's|${KDE4_KNOTIFYCONFIG_LIBS}|KDE4::knotifyconfig|g' -e 's|${KDE4_KEXIV2_LIBS}|KDE4::kexiv2|g' -i {} + Signed-off-by: Ivailo Monev <xakepa10@gmail.com> |
||
---|---|---|
.. | ||
dbus | ||
interfaces | ||
kcfg | ||
CMakeLists.txt | ||
configdialog.cpp | ||
configdialog.h | ||
HACKING | ||
interfaceOptions.ui | ||
krunner.desktop | ||
krunnerapp.cpp | ||
krunnerapp.h | ||
krunnerdialog.cpp | ||
krunnerdialog.h | ||
ksystemactivitydialog.cpp | ||
ksystemactivitydialog.h | ||
main.cpp | ||
Messages.sh | ||
README |
KRunner provides a set of desktop services including: - a launch or "Run Command" dialog - screensaver activation and screen locking - application startup notification control Launch Dialog ============= The launch dialog accepts user input and passes that input through a series of "runners". Each runner is a subclass of the Runner class and provides three essential facilities: 1) whether or not it has matches for the given text input 2) providing a widget containing options associated with the runner, if any 3) activating a match Runners may also be provided via plugins. See runners/search/ for an example. Screensaver and screen locking ============================== This functionality is provided by the D-Bus service described in org.freedesktop.ScreenSaver.xml and is made available on the session bus under the service name org.freedesktop.ScreenSaver, path /ScreenSaver The locking is managed by a small app found in lock/ Other Tidbits ============= A restarting application so even a crash won't result in no krunner A window for accepting search input, implemented in the Interface class TODO ==== Please read http://techbase.kde.org/Projects/Plasma/Tasks for further information.