Development/Architecture/KDE4/Plasma: Difference between revisions

From KDE TechBase
m ([http://qt-project.org/doc/qt-4.8/qradiobutton.html QRadioButton] → {{qt|QRadioButton}})
(corrected links)
Line 5: Line 5:


<translate><!--T:2-->
<translate><!--T:2-->
Its implementation is based on the Qt [UNHANDLED MATCHGraphics View Framework] introduced in Qt 4.2.</translate>
Its implementation is based on the Qt Graphics View Framework introduced in Qt 4.2.</translate>


<translate><!--T:3-->
<translate><!--T:3-->
Line 21: Line 21:
===<translate><!--T:8-->
===<translate><!--T:8-->
Further reading</translate>===
Further reading</translate>===
* <translate><!--T:11-->
[http://community.kde.org/Plasma Plasma community page]</translate>
* <translate><!--T:9-->
* <translate><!--T:9-->
[http://plasma.kde.org Plasma homesite]</translate>
[http://plasma.kde.org Plasma homepage]</translate>
* <translate><!--T:10-->
* <translate><!--T:10-->
[http://api.kde.org/4.0-api/kdebase-workspace-apidocs/libs/plasma/html/index.html API]</translate>
[http://api.kde.org/4.0-api/kdebase-workspace-apidocs/libs/plasma/html/index.html API]</translate>
* <translate><!--T:11-->
[[Projects/Plasma|Plasma techbase page]]</translate>





Revision as of 13:06, 20 August 2013


Plasma is the name of the new desktop which replaced KDesktop in KDE4. You may think that it is a union of SuperKaramba and KDesktop, but it's more. It's a whole concept of functionality and beauty.

Its implementation is based on the Qt Graphics View Framework introduced in Qt 4.2.

From a developer point of view there are some classes in libplasma who play central roles.

  • Corona: extends QGraphicsScene and provides functionality for adding applets and karamba themes.
  • Widget: extends QGraphicsItem and works as simple elements in the desktop. There are some built-in in libplasma as icons or buttons.
  • Applet: extends Widget and implements sophisticated functionality as rss display, a clock or system monitoring.
  • DataEngine: The common use of a DataEngine is to provide data to an applet for display. This allows a user interface elements to show all sorts of data.

Further reading