plasma-framework/src/plasma
Friedrich W. H. Kossebau 3f8469acb1 Use Q_DECLARE_OPERATORS_FOR_FLAGS in same namespace as flags definition
Having the macro's definition of the operator| in the namespace of the
flags argument improves/unbreaks things for the argument-dependent
lookup of unqualified function names, e.g. when flags are combined in
calls of other methods, but there is some other operator| defined in the
namespace of the current code.

Given Q_DECLARE_OPERATORS_FOR_FLAGS creates inlined functions, this
should be a source and binary compatible change.

Qt did similar for Qt 5.12 in
https://codereview.qt-project.org/c/qt/qtbase/+/225348
2020-08-24 09:21:41 +00:00
..
data SVN_SILENT made messages (.desktop file) - always resolve ours 2020-07-31 05:33:55 +02:00
design The Big Move 2013-02-14 17:17:12 +01:00
packagestructure plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
private plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00: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 plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +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 plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00: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 plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00: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 Use Q_DECLARE_OPERATORS_FOR_FLAGS in same namespace as flags definition 2020-08-24 09:21:41 +00:00
pluginloader.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +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 plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
svg.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
theme.cpp plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00:00
theme.h plasma-framework: Convert copyright statements to SPDX expressions 2020-08-13 19:08:54 +00: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.