KDE Platform 4

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
KDE Platform 4
Original author(s) KDE
Developer(s) KDE
Initial release 11 January 2008;
16 years ago
 (2008-01-11)[1]
Last release 4.14.12 (September 15, 2015; 8 years ago (2015-09-15)) [±][2]
Development status Maintenance
Written in C++[3][4]
Type
License GNU Lesser General Public License (LGPL)
Website {{#property:P856}}

KDE Platform 4 is a collection of libraries and software frameworks by KDE that serve as technological foundation for KDE Software Compilation 4 distributed under the GNU Lesser General Public License (LGPL). KDE Platform 4 is the successor to KDElibs and the predecessors of KDE Frameworks 5. KDE Platform 4 is the only version of KDE Platform, see KDE’s brand repositioning.

Technologies

Technologies superseded in KDE Platform 4

KParts

KParts is the component framework for the KDE Plasma desktop environment. An individual component is called a KPart. KParts are analogous to Bonobo components in GNOME and ActiveX controls in Microsoft's Component Object Model. Konsole is available as a KPart and is used in applications like Konqueror and Kate.

Example uses of KParts:

External links

Solid

Solid is a device integration framework for KDE Platform 4, the current release of KDE. It functions on similar principles to KDE's multimedia pillar Phonon; rather than managing hardware on its own, it makes existing solutions accessible through a single API. The current solution uses udev, NetworkManager and BlueZ (the official Linux Bluetooth stack). However, any and all parts can be replaced without breaking the application, making applications using Solid extremely flexible and portable.[6][7] Work is underway to build a Solid backend for the Windows port of KDE based on Windows Management Instrumentation.[8]

Solid is broken up into many hardware “domains” which operate independently. Domains may be added as needed. For instance, one domain may be Bluetooth, and another may be power management. Solid is used extensively within KDE 4 and its popular applications, making them more aware of hardware events and easier to develop.

External links

ThreadWeaver

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

ThreadWeaver
Developer(s) Mirko Boehm
Operating system Linux, other Unix and Unix-like systems
Type Multithreaded library
License LGPL
Website api.kde.org/4.x-api/kdelibs-apidocs/threadweaver/html/index.html

ThreadWeaver is a programming library developed for KDE 4[9] by Mirko Boehm that allows developers to easily take advantage of multicore processors.[9] In Threadweaver the workload is divided into individual jobs, then relationship between jobs (what order they should be completed or which has a higher priority) from that Threadweaver will work out the most efficient way to execute them. Krita has implemented visual filter previews using ThreadWeaver to prevent GUI lockups.

Further reading
  • Lua error in package.lua at line 80: module 'strict' not found.

Hello world example

#include <KApplication>
#include <KAboutData>
#include <KCmdLineArgs>
#include <KMessageBox>
#include <KLocale>
 
int main (int argc, char *argv[])
{
    KAboutData aboutData(
                         // The program name used internally.
                         "tutorial1",
                         // The message catalog name
                         // If null, program name is used instead.
                         0,
                         // A displayable program name string.
                         ki18n("Tutorial 1"),
                         // The program version string.
                         "1.0",
                         // Short description of what the app does.
                         ki18n("Displays a KMessageBox popup"),
                         // The license this code is released under
                         KAboutData::License_GPL,
                         // Copyright Statement
                         ki18n("Copyright (c) 2007"),
                         // Optional text shown in the About box.
                         // Can contain any information desired.
                         ki18n("Some text..."),
                         // The program homepage string.
                         "http://example.com/",
                         // The bug report email address
                         "submit@bugs.kde.org");
 
    KCmdLineArgs::init( argc, argv, &aboutData );
    KApplication app;
    KGuiItem yesButton( i18n( "Hello" ), QString(),
                        i18n( "This is a tooltip" ),
                        i18n( "This is a WhatsThis help text." ) );
    KMessageBox::questionYesNo( 0, i18n( "Hello World" ),
                                i18n( "Hello" ), yesButton );
    return 0;
}

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. http://owncloud.org/
  6. K Desktop Environment - KDE 4.0 Released
  7. UPower, UDev and UDisks Support, Metadata Backup
  8. KDE Commit Digest issue 107
  9. 9.0 9.1 Lua error in package.lua at line 80: module 'strict' not found.

External links