plasma-framework/src/plasma
Aleix Pol c3259fc2df Solve some clazy warnings
My last patch triggered me to run clazy on the project. This patch
solves some of them:
- Proper iteration of some types, saving their copy.
- compile-time connects
- prefer using connects with the 3rd argument as an object when using
lambdas.
2020-10-22 11:12:32 +00:00
..
data SVN_SILENT made messages (.desktop file) - always resolve ours 2020-09-28 05:58:18 +02:00
design The Big Move 2013-02-14 17:17:12 +01:00
packagestructure SVN_SILENT made messages (.desktop file) - always resolve ours 2020-09-13 05:57:29 +02:00
private Add support for Tooltip color set 2020-09-24 16:41:13 -04:00
scripting plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
.krazy The Big Move 2013-02-14 17:17:12 +01:00
applet.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
applet.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
CMakeLists.txt Use KF-standardized Qt logging categories 2020-07-13 03:16:11 +02:00
config-plasma.h.cmake Remove PLASMA_NO_KIO option 2018-10-18 16:44:27 +02:00
containment.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
containment.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
containmentactions.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
containmentactions.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
corona.cpp Call edit mode "Edit Mode" 2020-09-06 16:13:14 +00:00
corona.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
datacontainer.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
datacontainer.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
dataengine.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
dataengine.h Remove not implemented method 2020-10-19 07:12:43 +02:00
dataengineconsumer.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
dataengineconsumer.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
framesvg.cpp FrameSvg: Don't reset the cache when resizing 2020-10-08 04:06:56 +02:00
framesvg.h Use Q_DECLARE_OPERATORS_FOR_FLAGS in same namespace as flags definition 2020-08-24 09:21:41 +00:00
Mainpage.dox API dox: point to Plasma5 versions on techbase if avail 2019-05-13 01:09:26 +02:00
package.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
package.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
packagestructure.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
packagestructure.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
plasma.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
plasma.h Merge branch 'master' of https://invent.kde.org/frameworks/plasma-framework into work/plasmoidsCanIgnoreMargins 2020-08-24 19:56:20 +02:00
pluginloader.cpp Solve some clazy warnings 2020-10-22 11:12:32 +00:00
pluginloader.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
README Use more https in links (& update a few urls) 2019-01-19 16:36:59 +01:00
service.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
service.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
servicejob.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
servicejob.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
svg.cpp Detect that we are looking for an empty element and quit early 2020-10-01 12:14:41 +00:00
svg.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
theme.cpp Deprecate a lastModified timestamp of 0 in Theme::findInCache 2020-09-23 14:08:52 +00:00
theme.h Remove not implemented method 2020-10-19 07:12:43 +02:00
version.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
version.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00

libplasma

This directory contains the classes making up libplasma, which provides the
core framework used by Plasma applications, such as the Plasma desktop shell
and its components. This includes applet and extension definitions and loading,
common GUI elements, data and service interaction, search system, etc.

Domain specific sets of functionality, e.g. for network awareness or sensors,
are not found here but as DataEngine, Service, Applet, Package, Wallpaper,
ContainmentActions, Containment and other plugins.

Commit Guidelines:
* If your patch is not an obvious or trivial bug fix, have it peer reviewed
  by another Plasma developer; https://phabricator.kde.org is your friend :)

* All code MUST follow the KDE Frameworks coding style, as found at:
        https://techbase.kde.org/Policies/Frameworks_Coding_Style

* All new public API MUST have apidox written before committing and must go
  through an API review with another Plasma developer. We have to maintain
  binary compatibility, remember!

Unit tests are next to godliness. (Though as you can see, right now libplasma
is hellbound.)

Please refer to the Plasma website (https://plasma.kde.org) and Plasma wiki
(https://community.kde.org/Plasma) for API documentation and design
documents regarding this library.