kde-workspace/krunner
Ivailo Monev ce48bc0997 generic: preperations for kdelibs changes
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>
2023-06-17 23:27:11 +03:00
..
dbus krunner: remove redundant startup notification feature 2022-10-27 05:10:25 +03:00
interfaces krunner: correct break indendation in SelectionBar::itemChange() 2022-11-30 19:51:01 +02:00
kcfg krunner: remove redundant startup notification feature 2022-10-27 05:10:25 +03:00
CMakeLists.txt generic: preperations for kdelibs changes 2023-06-17 23:27:11 +03:00
configdialog.cpp generic: adjust for use with CMake moc 2015-02-27 09:28:46 +00:00
configdialog.h generic: replace forward declarations with headers inclusions 2019-05-05 02:36:36 +00:00
HACKING initial import 2014-11-13 19:30:51 +02:00
interfaceOptions.ui generic: prepare for Katie changes 2022-10-14 16:19:24 +03:00
krunner.desktop initial import 2014-11-13 19:30:51 +02:00
krunnerapp.cpp generic: remove redundant HAVE_XRENDER configuration definition 2022-11-25 00:46:00 +02:00
krunnerapp.h krunner: remove redundant startup notification feature 2022-10-27 05:10:25 +03:00
krunnerdialog.cpp krunner: remove unused constant in KRunnerDialog::updateMask() 2022-11-26 06:49:13 +02:00
krunnerdialog.h krunner: use translucent background image if compositing is active, panel background otherwise 2022-04-28 14:28:00 +03:00
ksystemactivitydialog.cpp generic: make changes required for building against katie 2015-08-12 13:11:16 +03:00
ksystemactivitydialog.h removed win and mac code 2014-11-19 17:57:24 +00:00
main.cpp krunner: remove redundant startup notification feature 2022-10-27 05:10:25 +03:00
Messages.sh changed bash scripts shebangs 2014-11-15 05:48:13 +02:00
README initial import 2014-11-13 19:30:51 +02:00

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.