2008-11-04 00:08:39 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2006-2007 by Aaron Seigo <aseigo@kde.org>
|
|
|
|
* Copyright 2007 by Riccardo Iaconelli <riccardo@kde.org>
|
|
|
|
* Copyright 2008 by Ménard Alexis <darktears31@gmail.com>
|
|
|
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLASMA_APPLET_H
|
|
|
|
#define PLASMA_APPLET_H
|
|
|
|
|
2012-09-24 17:18:55 +02:00
|
|
|
#include <QObject>
|
2012-02-02 10:35:53 +01:00
|
|
|
#include <QIcon>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2008-11-04 03:04:34 +01:00
|
|
|
#include <kconfiggroup.h>
|
|
|
|
#include <kplugininfo.h>
|
|
|
|
#include <kshortcut.h>
|
2012-03-24 17:06:28 +01:00
|
|
|
#include <kurl.h>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
#include <plasma/configloader.h>
|
|
|
|
#include <plasma/plasma.h>
|
|
|
|
#include <plasma/version.h>
|
2009-01-13 22:46:07 +01:00
|
|
|
#include <plasma/framesvg.h>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2008-11-06 16:52:13 +01:00
|
|
|
class QWidget;
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
class KConfigDialog;
|
|
|
|
class KActionCollection;
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class AppletPrivate;
|
|
|
|
class Containment;
|
|
|
|
class DataEngine;
|
|
|
|
class Package;
|
|
|
|
|
2009-01-13 22:46:07 +01:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
|
|
|
* @class Applet plasma/applet.h <Plasma/Applet>
|
|
|
|
*
|
|
|
|
* @short The base Applet class
|
|
|
|
*
|
|
|
|
* Applet provides several important roles for add-ons widgets in Plasma.
|
|
|
|
*
|
|
|
|
* First, it is the base class for the plugin system and therefore is the
|
|
|
|
* interface to applets for host applications. It also handles the life time
|
|
|
|
* management of data engines (e.g. all data engines accessed via
|
|
|
|
* Applet::dataEngine(const QString&) are properly deref'd on Applet
|
|
|
|
* destruction), background painting (allowing for consistent and complex
|
|
|
|
* look and feel in just one line of code for applets), loading and starting
|
|
|
|
* of scripting support for each applet, providing access to the associated
|
|
|
|
* plasmoid package (if any) and access to configuration data.
|
|
|
|
*
|
2009-05-22 04:49:40 +02:00
|
|
|
* See techbase.kde.org for tutorials on writing Applets using this class.
|
2008-11-04 00:08:39 +01:00
|
|
|
*/
|
2012-09-24 14:30:42 +02:00
|
|
|
class PLASMA_EXPORT Applet : public QObject
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(bool hasConfigurationInterface READ hasConfigurationInterface)
|
|
|
|
Q_PROPERTY(QString name READ name)
|
2011-02-25 22:25:56 +01:00
|
|
|
Q_PROPERTY(QString pluginName READ pluginName)
|
2008-11-04 00:08:39 +01:00
|
|
|
Q_PROPERTY(QString category READ category)
|
|
|
|
Q_PROPERTY(ImmutabilityType immutability READ immutability WRITE setImmutability)
|
|
|
|
Q_PROPERTY(bool hasFailedToLaunch READ hasFailedToLaunch WRITE setFailedToLaunch)
|
2010-01-29 22:22:36 +01:00
|
|
|
Q_PROPERTY(bool busy READ isBusy WRITE setBusy)
|
2008-11-04 00:08:39 +01:00
|
|
|
Q_PROPERTY(bool configurationRequired READ configurationRequired WRITE setConfigurationRequired)
|
|
|
|
Q_PROPERTY(QRectF geometry READ geometry WRITE setGeometry)
|
|
|
|
Q_PROPERTY(bool shouldConserveResources READ shouldConserveResources)
|
2010-01-05 00:44:57 +01:00
|
|
|
Q_PROPERTY(uint id READ id)
|
2011-05-21 17:46:26 +02:00
|
|
|
Q_PROPERTY(BackgroundHints backgroundHints READ backgroundHints WRITE setBackgroundHints)
|
2011-06-24 16:35:09 +02:00
|
|
|
Q_PROPERTY(bool userConfiguring READ isUserConfiguring)
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
typedef QList<Applet*> List;
|
|
|
|
typedef QHash<QString, Applet*> Dict;
|
|
|
|
|
|
|
|
~Applet();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the id of this applet
|
|
|
|
*/
|
|
|
|
uint id() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the KConfigGroup to access the applets configuration.
|
|
|
|
*
|
|
|
|
* This config object will write to an instance
|
|
|
|
* specific config file named \<appletname\>\<instanceid\>rc
|
|
|
|
* in the Plasma appdata directory.
|
|
|
|
**/
|
|
|
|
KConfigGroup config() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves state information about this applet that will
|
|
|
|
* be accessed when next instantiated in the restore(KConfigGroup&) method.
|
|
|
|
*
|
|
|
|
* This method does not need to be reimplmented by Applet
|
|
|
|
* subclasses, but can be useful for Applet specializations
|
|
|
|
* (such as Containment) to do so.
|
|
|
|
*
|
|
|
|
* Applet subclasses may instead want to reimplement saveState().
|
|
|
|
**/
|
|
|
|
virtual void save(KConfigGroup &group) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restores state information about this applet saved previously
|
|
|
|
* in save(KConfigGroup&).
|
|
|
|
*
|
|
|
|
* This method does not need to be reimplmented by Applet
|
|
|
|
* subclasses, but can be useful for Applet specializations
|
|
|
|
* (such as Containment) to do so.
|
|
|
|
**/
|
|
|
|
virtual void restore(KConfigGroup &group);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a KConfigGroup object to be shared by all applets of this
|
|
|
|
* type.
|
|
|
|
*
|
|
|
|
* This config object will write to an applet-specific config object
|
|
|
|
* named plasma_\<appletname\>rc in the local config directory.
|
|
|
|
*/
|
|
|
|
KConfigGroup globalConfig() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the config skeleton object from this applet's package,
|
|
|
|
* if any.
|
|
|
|
*
|
|
|
|
* @return config skeleton object, or 0 if none
|
|
|
|
**/
|
|
|
|
ConfigLoader *configScheme() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the given DataEngine
|
|
|
|
*
|
|
|
|
* Tries to load the data engine given by @p name. Each engine is
|
|
|
|
* only loaded once, and that instance is re-used on all subsequent
|
|
|
|
* requests.
|
|
|
|
*
|
|
|
|
* If the data engine was not found, an invalid data engine is returned
|
|
|
|
* (see DataEngine::isValid()).
|
|
|
|
*
|
|
|
|
* Note that you should <em>not</em> delete the returned engine.
|
|
|
|
*
|
|
|
|
* @param name Name of the data engine to load
|
|
|
|
* @return pointer to the data engine if it was loaded,
|
|
|
|
* or an invalid data engine if the requested engine
|
|
|
|
* could not be loaded
|
|
|
|
*/
|
|
|
|
Q_INVOKABLE DataEngine *dataEngine(const QString &name) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Accessor for the associated Package object if any.
|
|
|
|
* Generally, only Plasmoids come in a Package.
|
|
|
|
*
|
|
|
|
* @return the Package object, or 0 if none
|
|
|
|
**/
|
2011-07-15 12:59:51 +02:00
|
|
|
Package package() const;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reccomended position for a popup window like a menu or a tooltip
|
|
|
|
* given its size
|
|
|
|
* @param s size of the popup
|
|
|
|
* @returns reccomended position
|
|
|
|
*/
|
|
|
|
QPoint popupPosition(const QSize &s) const;
|
|
|
|
|
2009-09-28 19:28:17 +02:00
|
|
|
/**
|
|
|
|
* @since 4.4
|
|
|
|
* Reccomended position for a popup window like a menu or a tooltip
|
|
|
|
* given its size
|
|
|
|
* @param s size of the popup
|
|
|
|
* @param alignment alignment of the popup, valid flags are Qt::AlignLeft, Qt::AlignRight and Qt::AlignCenter
|
|
|
|
* @returns reccomended position
|
|
|
|
*/
|
|
|
|
QPoint popupPosition(const QSize &s, Qt::AlignmentFlag alignment) const;
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
|
|
|
* Called when any of the geometry constraints have been updated.
|
|
|
|
* This method calls constraintsEvent, which may be reimplemented,
|
|
|
|
* once the Applet has been prepared for updating the constraints.
|
|
|
|
*
|
|
|
|
* @param constraints the type of constraints that were updated
|
|
|
|
*/
|
|
|
|
void updateConstraints(Plasma::Constraints constraints = Plasma::AllConstraints);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current form factor the applet is being displayed in.
|
|
|
|
*
|
|
|
|
* @see Plasma::FormFactor
|
|
|
|
*/
|
|
|
|
virtual FormFactor formFactor() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the location of the scene which is displaying applet.
|
|
|
|
*
|
|
|
|
* @see Plasma::Location
|
|
|
|
*/
|
|
|
|
virtual Location location() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the preferred aspect ratio mode for placement and resizing
|
|
|
|
*/
|
|
|
|
Plasma::AspectRatioMode aspectRatioMode() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the preferred aspect ratio mode for placement and resizing
|
|
|
|
*/
|
|
|
|
void setAspectRatioMode(Plasma::AspectRatioMode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of all known applets.
|
2010-04-28 08:05:09 +02:00
|
|
|
* This may skip applets based on security settings and ExcludeCategories in the application's config.
|
2008-11-04 00:08:39 +01:00
|
|
|
*
|
|
|
|
* @param category Only applets matchin this category will be returned.
|
|
|
|
* Useful in conjunction with knownCategories.
|
|
|
|
* If "Misc" is passed in, then applets without a
|
|
|
|
* Categories= entry are also returned.
|
|
|
|
* If an empty string is passed in, all applets are
|
|
|
|
* returned.
|
|
|
|
* @param parentApp the application to filter applets on. Uses the
|
|
|
|
* X-KDE-ParentApp entry (if any) in the plugin info.
|
|
|
|
* The default value of QString() will result in a
|
|
|
|
* list containing only applets not specifically
|
|
|
|
* registered to an application.
|
|
|
|
* @return list of applets
|
|
|
|
**/
|
|
|
|
static KPluginInfo::List listAppletInfo(const QString &category = QString(),
|
2010-07-27 23:24:50 +02:00
|
|
|
const QString &parentApp = QString());
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of all known applets associated with a certain mimetype.
|
|
|
|
*
|
|
|
|
* @return list of applets
|
|
|
|
**/
|
2011-05-06 12:12:47 +02:00
|
|
|
static KPluginInfo::List listAppletInfoForMimeType(const QString &mimetype);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-10-29 10:09:01 +01:00
|
|
|
/**
|
|
|
|
* Returns a list of all known applets associated with a certain URL.
|
|
|
|
*
|
|
|
|
* @since 4.4
|
|
|
|
* @return list of applets
|
|
|
|
**/
|
|
|
|
static KPluginInfo::List listAppletInfoForUrl(const QUrl &url);
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
2009-05-18 13:15:00 +02:00
|
|
|
* Returns a list of all the categories used by installed applets.
|
2008-11-04 00:08:39 +01:00
|
|
|
*
|
|
|
|
* @param parentApp the application to filter applets on. Uses the
|
|
|
|
* X-KDE-ParentApp entry (if any) in the plugin info.
|
|
|
|
* The default value of QString() will result in a
|
|
|
|
* list containing only applets not specifically
|
|
|
|
* registered to an application.
|
|
|
|
* @return list of categories
|
|
|
|
* @param visibleOnly true if it should only return applets that are marked as visible
|
|
|
|
*/
|
|
|
|
static QStringList listCategories(const QString &parentApp = QString(),
|
|
|
|
bool visibleOnly = true);
|
|
|
|
|
2009-05-18 13:15:00 +02:00
|
|
|
/**
|
|
|
|
* Sets the list of custom categories that are used in addition to the default
|
|
|
|
* set of categories known to libplasma for Applets.
|
2011-06-13 14:47:29 +02:00
|
|
|
* @param categories a list of categories
|
2009-05-18 13:15:00 +02:00
|
|
|
* @since 4.3
|
|
|
|
*/
|
|
|
|
void setCustomCategories(const QStringList &categories);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the list of custom categories known to libplasma
|
|
|
|
* @since 4.3
|
|
|
|
*/
|
|
|
|
QStringList customCategories();
|
|
|
|
|
2009-04-26 02:43:20 +02:00
|
|
|
/**
|
2009-07-20 15:22:58 +02:00
|
|
|
* Attempts to load an applet from a package
|
2009-04-26 02:43:20 +02:00
|
|
|
*
|
|
|
|
* Returns a pointer to the applet if successful.
|
|
|
|
* The caller takes responsibility for the applet, including
|
|
|
|
* deleting it when no longer needed.
|
|
|
|
*
|
|
|
|
* @param path the path to the package
|
|
|
|
* @param appletId unique ID to assign the applet, or zero to have one
|
|
|
|
* assigned automatically.
|
|
|
|
* @param args to send the applet extra arguments
|
|
|
|
* @return a pointer to the loaded applet, or 0 on load failure
|
|
|
|
* @since 4.3
|
|
|
|
**/
|
|
|
|
static Applet *loadPlasmoid(const QString &path, uint appletId = 0,
|
|
|
|
const QVariantList &args = QVariantList());
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
|
|
|
* Get the category of the given applet
|
|
|
|
*
|
|
|
|
* @param applet a KPluginInfo object for the applet
|
|
|
|
*/
|
|
|
|
static QString category(const KPluginInfo &applet);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the category of the given applet
|
|
|
|
*
|
|
|
|
* @param appletName the name of the applet
|
|
|
|
*/
|
|
|
|
static QString category(const QString &appletName);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the user-visible name for the applet, as specified in the
|
|
|
|
* .desktop file.
|
|
|
|
*
|
|
|
|
* @return the user-visible name for the applet.
|
|
|
|
**/
|
|
|
|
QString name() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the font currently set for this widget
|
|
|
|
**/
|
|
|
|
QFont font() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the plugin name for the applet
|
|
|
|
*/
|
|
|
|
QString pluginName() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the applet should conserve resources. If true, try to avoid doing stuff which
|
|
|
|
* is computationally heavy. Try to conserve power and resources.
|
|
|
|
*
|
|
|
|
* @return true if it should conserve resources, false if it does not.
|
|
|
|
*/
|
|
|
|
bool shouldConserveResources() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the icon related to this applet
|
|
|
|
**/
|
|
|
|
QString icon() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the category the applet is in, as specified in the
|
|
|
|
* .desktop file.
|
|
|
|
*/
|
|
|
|
QString category() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return The type of immutability of this applet
|
|
|
|
*/
|
|
|
|
ImmutabilityType immutability() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If for some reason, the applet fails to get up on its feet (the
|
|
|
|
* library couldn't be loaded, necessary hardware support wasn't found,
|
|
|
|
* etc..) this method returns true
|
|
|
|
**/
|
|
|
|
bool hasFailedToLaunch() const;
|
|
|
|
|
2008-11-06 16:52:13 +01:00
|
|
|
/**
|
|
|
|
* @return true if the applet is busy and is showing an indicator widget for that
|
|
|
|
*/
|
|
|
|
bool isBusy() const;
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
|
|
|
* @return true if the applet currently needs to be configured,
|
|
|
|
* otherwise, false
|
|
|
|
*/
|
|
|
|
bool configurationRequired() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return true if this plasmoid provides a GUI configuration
|
|
|
|
**/
|
|
|
|
bool hasConfigurationInterface() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of context-related QAction instances.
|
|
|
|
*
|
|
|
|
* This is used e.g. within the \a DesktopView to display a
|
|
|
|
* contextmenu.
|
|
|
|
*
|
|
|
|
* @return A list of actions. The default implementation returns an
|
|
|
|
* empty list.
|
|
|
|
**/
|
|
|
|
virtual QList<QAction*> contextualActions();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the QAction with the given name from our collection
|
|
|
|
*/
|
2011-02-28 20:21:42 +01:00
|
|
|
Q_INVOKABLE QAction *action(QString name) const;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the action to our collection under the given name
|
|
|
|
*/
|
|
|
|
void addAction(QString name, QAction *action);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the BackgroundHints for this applet @see BackgroundHint
|
|
|
|
*
|
|
|
|
* @param hints the BackgroundHint combination for this applet
|
|
|
|
*/
|
2011-06-24 16:35:09 +02:00
|
|
|
void setBackgroundHints(const Plasma::BackgroundHints hint);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return BackgroundHints flags combination telling if the standard background is shown
|
|
|
|
* and if it has a drop shadow
|
|
|
|
*/
|
2011-06-24 16:35:09 +02:00
|
|
|
Plasma::BackgroundHints backgroundHints() const;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return true if this Applet is currently being used as a Containment, false otherwise
|
|
|
|
*/
|
|
|
|
bool isContainment() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method returns screen coordinates for the widget; this method can be somewhat
|
|
|
|
* expensive and should ONLY be called when screen coordinates are required. For
|
|
|
|
* example when positioning top level widgets on top of the view to create the
|
2012-09-25 20:46:07 +02:00
|
|
|
* appearance of unit.
|
2008-11-04 00:08:39 +01:00
|
|
|
*
|
|
|
|
* @return a rect of the applet in screen coordinates.
|
|
|
|
*/
|
|
|
|
QRect screenRect() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the Containment, if any, this applet belongs to
|
|
|
|
**/
|
|
|
|
Containment *containment() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the global shorcut to associate with this widget.
|
|
|
|
*/
|
|
|
|
void setGlobalShortcut(const KShortcut &shortcut);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the global shortcut associated with this wiget, or
|
|
|
|
* an empty shortcut if no global shortcut is associated.
|
|
|
|
*/
|
|
|
|
KShortcut globalShortcut() const;
|
|
|
|
|
2008-12-29 07:03:43 +01:00
|
|
|
/**
|
|
|
|
* @return true is there is a popup assoiated with this Applet
|
|
|
|
* showing, such as the dialog of a PopupApplet. May be reimplemented
|
|
|
|
* for custom popup implementations.
|
|
|
|
*/
|
|
|
|
virtual bool isPopupShowing() const;
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
|
|
|
* associate actions with this widget, including ones added after this call.
|
|
|
|
* needed to make keyboard shortcuts work.
|
|
|
|
*/
|
|
|
|
virtual void addAssociatedWidget(QWidget *widget);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* un-associate actions from this widget, including ones added after this call.
|
|
|
|
* needed to make keyboard shortcuts work.
|
|
|
|
*/
|
|
|
|
virtual void removeAssociatedWidget(QWidget *widget);
|
|
|
|
|
|
|
|
/**
|
2012-09-24 17:18:55 +02:00
|
|
|
* @param parent the QObject this applet is parented to
|
2008-11-04 00:08:39 +01:00
|
|
|
* @param serviceId the name of the .desktop file containing the
|
|
|
|
* information about the widget
|
|
|
|
* @param appletId a unique id used to differentiate between multiple
|
|
|
|
* instances of the same Applet type
|
|
|
|
*/
|
2012-09-24 17:18:55 +02:00
|
|
|
explicit Applet(QObject *parent = 0, const QString &serviceId = QString(), uint appletId = 0);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2010-08-03 01:56:02 +02:00
|
|
|
/**
|
2012-09-24 17:18:55 +02:00
|
|
|
* @param parent the QObject this applet is parented to
|
2010-08-03 01:56:02 +02:00
|
|
|
* @param info the plugin information object for this Applet
|
|
|
|
* @param appletId a unique id used to differentiate between multiple
|
|
|
|
* instances of the same Applet type
|
|
|
|
* @since 4.6
|
|
|
|
*/
|
2012-09-24 17:18:55 +02:00
|
|
|
explicit Applet(const KPluginInfo &info, QObject *parent = 0, uint appletId = 0);
|
2010-08-03 01:56:02 +02:00
|
|
|
|
2009-02-08 16:24:56 +01:00
|
|
|
/**
|
2012-09-24 17:18:55 +02:00
|
|
|
* @param parent the QObject this applet is parented to
|
2009-02-08 16:24:56 +01:00
|
|
|
* @param serviceId the name of the .desktop file containing the
|
|
|
|
* information about the widget
|
|
|
|
* @param appletId a unique id used to differentiate between multiple
|
|
|
|
* instances of the same Applet type
|
|
|
|
* @param args a list of strings containing two entries: the service id
|
|
|
|
* and the applet id
|
2009-04-26 22:40:46 +02:00
|
|
|
* @since 4.3
|
2009-02-08 16:24:56 +01:00
|
|
|
*/
|
2012-09-24 17:18:55 +02:00
|
|
|
explicit Applet(QObject *parent, const QString &serviceId, uint appletId, const QVariantList &args);
|
2009-02-08 16:24:56 +01:00
|
|
|
|
|
|
|
|
2008-12-01 02:04:58 +01:00
|
|
|
/**
|
|
|
|
* @return true if destroy() was called; useful for Applets which should avoid
|
|
|
|
* certain tasks if they are about to be deleted permanently
|
|
|
|
*/
|
|
|
|
bool destroyed() const;
|
|
|
|
|
2009-01-21 07:17:23 +01:00
|
|
|
/**
|
|
|
|
* Reimplement this method so provide a configuration interface,
|
|
|
|
* parented to the supplied widget. Ownership of the widgets is passed
|
|
|
|
* to the parent widget.
|
|
|
|
*
|
2010-05-10 17:26:33 +02:00
|
|
|
* Typically one would add custom pages to the config dialog @p parent
|
|
|
|
* and then connect to the applyClicked() and okClicked() signals
|
|
|
|
* or @p parent to react on config changes:
|
|
|
|
*
|
|
|
|
* @code
|
|
|
|
* connect(parent, SIGNAL(applyClicked()), this, SLOT(myConfigAccepted()));
|
|
|
|
* connect(parent, SIGNAL(okClicked()), this, SLOT(myConfigAccepted()));
|
|
|
|
* @endcode
|
|
|
|
*
|
|
|
|
* With this approach it makes sense to store the custom pages in member
|
|
|
|
* variables to make their fields accessible from the myConfigAccepted()
|
|
|
|
* slot.
|
|
|
|
*
|
|
|
|
* Use config() to store your configuration.
|
|
|
|
*
|
2009-01-21 07:17:23 +01:00
|
|
|
* @param parent the dialog which is the parent of the configuration
|
|
|
|
* widgets
|
|
|
|
*/
|
|
|
|
virtual void createConfigurationInterface(KConfigDialog *parent);
|
|
|
|
|
2009-03-04 18:05:51 +01:00
|
|
|
/**
|
2009-05-22 04:49:40 +02:00
|
|
|
* Returns true if the applet is allowed to perform functions covered by the given constraint
|
2009-06-05 02:14:25 +02:00
|
|
|
* eg. hasAuthorization("FileDialog") returns true if applets are allowed to show filedialogs.
|
2009-05-22 04:12:48 +02:00
|
|
|
* @since 4.3
|
2009-03-04 18:05:51 +01:00
|
|
|
*/
|
2009-06-03 03:10:57 +02:00
|
|
|
bool hasAuthorization(const QString &constraint) const;
|
2009-03-04 18:05:51 +01:00
|
|
|
|
2009-09-16 19:08:45 +02:00
|
|
|
/**
|
|
|
|
* Sets an application associated to this applet, that will be
|
|
|
|
* regarded as a full view of what is represented in the applet
|
|
|
|
*
|
|
|
|
* @param string the name of the application. it can be
|
|
|
|
* \li a name understood by KService::serviceByDesktopName
|
|
|
|
* (e.g. "konqueror")
|
|
|
|
* \li a command in $PATH
|
|
|
|
* \li or an absolute path to an executable
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
|
|
|
void setAssociatedApplication(const QString &string);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a list of urls associated to this application,
|
|
|
|
* they will be used as parameters for the associated application
|
|
|
|
* @see setAssociatedApplication()
|
|
|
|
*
|
|
|
|
* @param urls
|
|
|
|
*/
|
2012-07-15 22:28:17 +02:00
|
|
|
void setAssociatedApplicationUrls(const QList<QUrl> &urls);
|
2009-09-16 19:08:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the application associated to this applet
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
|
|
|
QString associatedApplication() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the urls associated to this applet
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
2012-07-15 22:28:17 +02:00
|
|
|
QList<QUrl> associatedApplicationUrls() const;
|
2009-09-16 19:08:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return true if the applet has a valid associated application or urls
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
|
|
|
bool hasValidAssociatedApplication() const;
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
Q_SIGNALS:
|
|
|
|
/**
|
|
|
|
* This signal indicates that an application launch, window
|
|
|
|
* creation or window focus event was triggered. This is used, for instance,
|
2010-05-05 22:00:56 +02:00
|
|
|
* to ensure that the Dashboard view in Plasma Desktop hides when such an event is
|
2008-11-04 00:08:39 +01:00
|
|
|
* triggered by an item it is displaying.
|
|
|
|
*/
|
|
|
|
void releaseVisualFocus();
|
|
|
|
|
2009-02-09 16:09:28 +01:00
|
|
|
/**
|
|
|
|
* Emitted when the user completes a transformation of the applet.
|
|
|
|
*/
|
|
|
|
void appletTransformedByUser();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emitted when the applet changes its own geometry or transform.
|
|
|
|
*/
|
|
|
|
void appletTransformedItself();
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
|
|
|
* Emitted by Applet subclasses when they change a sizeHint and wants to announce the change
|
|
|
|
*/
|
|
|
|
void sizeHintChanged(Qt::SizeHint which);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emitted when an applet has changed values in its configuration
|
|
|
|
* and wishes for them to be saved at the next save point. As this implies
|
|
|
|
* disk activity, this signal should be used with care.
|
|
|
|
*
|
|
|
|
* @note This does not need to be emitted from saveState by individual
|
|
|
|
* applets.
|
|
|
|
*/
|
|
|
|
void configNeedsSaving();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emitted when activation is requested due to, for example, a global
|
|
|
|
* keyboard shortcut. By default the wiget is given focus.
|
|
|
|
*/
|
|
|
|
void activate();
|
|
|
|
|
2009-02-02 20:39:41 +01:00
|
|
|
/**
|
|
|
|
* Emitted when the user clicked on a button of the message overlay
|
2009-12-10 22:07:28 +01:00
|
|
|
*
|
2009-02-02 20:39:41 +01:00
|
|
|
* @see showMessage
|
|
|
|
* @see Plasma::MessageButton
|
2009-02-04 11:59:15 +01:00
|
|
|
* @since 4.3
|
2009-02-02 20:39:41 +01:00
|
|
|
*/
|
2010-11-15 21:48:27 +01:00
|
|
|
void messageButtonPressed(const Plasma::MessageButton button);
|
2009-02-02 20:39:41 +01:00
|
|
|
|
2009-01-28 08:58:17 +01:00
|
|
|
/**
|
|
|
|
* Emitted when the applet is deleted
|
|
|
|
*/
|
2012-09-24 13:58:54 +02:00
|
|
|
void appletDeleted(Plasma::Applet *applet);
|
2009-01-28 08:58:17 +01:00
|
|
|
|
2009-07-09 19:19:00 +02:00
|
|
|
/**
|
|
|
|
* Emitted when the applet status changes
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
|
|
|
void newStatus(Plasma::ItemStatus status);
|
2009-02-02 20:39:41 +01:00
|
|
|
|
2009-08-18 00:30:46 +02:00
|
|
|
/**
|
|
|
|
* Emitted when the immutability changes
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
2009-12-10 22:07:28 +01:00
|
|
|
void immutabilityChanged(Plasma::ImmutabilityType immutable);
|
2012-09-24 17:18:55 +02:00
|
|
|
|
|
|
|
void geometryChanged();
|
2009-08-18 00:30:46 +02:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
public Q_SLOTS:
|
|
|
|
/**
|
|
|
|
* Sets the immutability type for this applet (not immutable,
|
|
|
|
* user immutable or system immutable)
|
2011-06-13 14:47:29 +02:00
|
|
|
* @param immutable the new immutability type of this applet
|
2008-11-04 00:08:39 +01:00
|
|
|
*/
|
|
|
|
void setImmutability(const ImmutabilityType immutable);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the applet; it will be removed nicely and deleted.
|
|
|
|
* Its configuration will also be deleted.
|
|
|
|
*/
|
|
|
|
virtual void destroy();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lets the user interact with the plasmoid options.
|
|
|
|
* Called when the user selects the configure entry
|
|
|
|
* from the context menu.
|
|
|
|
*
|
|
|
|
* Unless there is good reason for overriding this method,
|
|
|
|
* Applet subclasses should actually override createConfigurationInterface
|
|
|
|
* instead. A good example of when this isn't plausible is
|
|
|
|
* when using a dialog prepared by another library, such
|
|
|
|
* as KPropertiesDialog from libkfile.
|
2010-04-03 21:10:32 +02:00
|
|
|
* You probably want to call showConfigurationInterface(QWidget*)
|
|
|
|
* with the custom widget you created to actually show your interface
|
2008-11-04 00:08:39 +01:00
|
|
|
*/
|
|
|
|
virtual void showConfigurationInterface();
|
|
|
|
|
2010-04-03 21:10:32 +02:00
|
|
|
/**
|
|
|
|
* Actually show your custom configuration interface
|
|
|
|
* Use this only if you reimplemented showConfigurationInterface()
|
|
|
|
*
|
2011-06-13 14:47:29 +02:00
|
|
|
* @param widget the widget representing your configuration interface
|
2010-04-03 21:10:32 +02:00
|
|
|
*
|
|
|
|
* @since 4.5
|
|
|
|
*/
|
|
|
|
void showConfigurationInterface(QWidget *widget);
|
|
|
|
|
2010-01-29 22:21:16 +01:00
|
|
|
/**
|
|
|
|
* @return true when the configuration interface is being shown
|
|
|
|
* @since 4.5
|
|
|
|
*/
|
|
|
|
bool isUserConfiguring() const;
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
|
|
|
* Causes this applet to raise above all other applets.
|
|
|
|
*/
|
|
|
|
void raise();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Causes this applet to lower below all the other applets.
|
|
|
|
*/
|
|
|
|
void lower();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends all pending contraints updates to the applet. Will usually
|
|
|
|
* be called automatically, but can also be called manually if needed.
|
|
|
|
*/
|
|
|
|
void flushPendingConstraintsEvents();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called once the applet is loaded and added to a Corona.
|
2012-09-25 20:46:07 +02:00
|
|
|
* If the applet requires a Scene or has an particularly intensive
|
2008-11-04 00:08:39 +01:00
|
|
|
* set of initialization routines to go through, consider implementing it
|
|
|
|
* in this method instead of the constructor.
|
2008-12-25 00:53:12 +01:00
|
|
|
*
|
|
|
|
* Note: paintInterface may get called before init() depending on initialization
|
|
|
|
* order. Painting is managed by the canvas (QGraphisScene), and may schedule a
|
|
|
|
* paint event prior to init() being called.
|
2008-11-04 00:08:39 +01:00
|
|
|
**/
|
|
|
|
virtual void init();
|
|
|
|
|
|
|
|
/**
|
2009-05-22 04:49:40 +02:00
|
|
|
* Called when applet configuration values have changed.
|
2008-11-04 00:08:39 +01:00
|
|
|
*/
|
|
|
|
virtual void configChanged();
|
|
|
|
|
2008-11-18 00:35:32 +01:00
|
|
|
/**
|
|
|
|
* Shows a busy indicator that overlays the applet
|
|
|
|
* @param busy show or hide the busy indicator
|
|
|
|
*/
|
|
|
|
void setBusy(bool busy);
|
2009-02-08 16:24:56 +01:00
|
|
|
|
|
|
|
/**
|
2009-05-22 04:49:40 +02:00
|
|
|
* @return the list of arguments which the applet was called with
|
2009-02-08 16:24:56 +01:00
|
|
|
* @since KDE4.3
|
|
|
|
*/
|
|
|
|
QVariantList startupArguments() const;
|
2008-11-18 00:35:32 +01:00
|
|
|
|
2009-07-09 19:19:00 +02:00
|
|
|
/**
|
|
|
|
* @return the status of the applet
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
|
|
|
ItemStatus status() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets the status for this applet
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
|
|
|
void setStatus(const ItemStatus stat);
|
|
|
|
|
2009-09-04 02:08:26 +02:00
|
|
|
/**
|
|
|
|
* Publishes and optionally announces this applet on the network for remote access.
|
|
|
|
* @param methods the methods to use for announcing this applet.
|
|
|
|
* @param resourceName the name under which this applet will be published (has to be unique
|
|
|
|
* for each machine)
|
|
|
|
*/
|
|
|
|
void publish(Plasma::AnnouncementMethods methods, const QString &resourceName);
|
2009-09-02 04:27:16 +02:00
|
|
|
|
|
|
|
void unpublish();
|
|
|
|
|
|
|
|
bool isPublished() const;
|
|
|
|
|
2009-09-16 19:08:45 +02:00
|
|
|
/**
|
|
|
|
* Open the application associated to this applet, if it's not set
|
|
|
|
* but some urls are, open those urls with the proper application
|
|
|
|
* for their mimetype
|
|
|
|
* @see setAssociatedApplication()
|
|
|
|
* @see setAssociatedApplicationUrls()
|
|
|
|
* @since 4.4
|
|
|
|
*/
|
|
|
|
void runAssociatedApplication();
|
|
|
|
|
2012-09-24 14:30:42 +02:00
|
|
|
bool hasFocus() const;
|
|
|
|
void setFocus(Qt::FocusReason);
|
|
|
|
|
2012-09-24 17:18:55 +02:00
|
|
|
//Geometry functions: FIXME: to remove?
|
2012-09-24 14:30:42 +02:00
|
|
|
QSizeF size() const;
|
|
|
|
QRectF geometry() const;
|
2012-09-24 17:18:55 +02:00
|
|
|
void setGeometry(const QRectF &rect);
|
|
|
|
QRectF boundingRect() const;
|
|
|
|
void resize(const QSizeF &size);
|
|
|
|
int zValue() const;
|
|
|
|
void setZValue(int val);
|
|
|
|
QTransform transform() const;
|
|
|
|
void setTransform(const QTransform &transform);
|
|
|
|
QPointF pos() const;
|
|
|
|
void setPos(const QPointF &pos);
|
|
|
|
void setPos(int x, int y);
|
|
|
|
QSizePolicy sizePolicy() const;
|
|
|
|
void setSizePolicy(const QSizePolicy &policy);
|
2012-09-24 14:30:42 +02:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* This constructor is to be used with the plugin loading systems
|
|
|
|
* found in KPluginInfo and KService. The argument list is expected
|
|
|
|
* to have two elements: the KService service ID for the desktop entry
|
|
|
|
* and an applet ID which must be a base 10 number.
|
|
|
|
*
|
|
|
|
* @param parent a QObject parent; you probably want to pass in 0
|
|
|
|
* @param args a list of strings containing two entries: the service id
|
|
|
|
* and the applet id
|
|
|
|
*/
|
|
|
|
Applet(QObject *parent, const QVariantList &args);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call this method when the applet fails to launch properly. An
|
|
|
|
* optional reason can be provided.
|
|
|
|
*
|
|
|
|
* Not that all children items will be deleted when this method is
|
|
|
|
* called. If you have pointers to these items, you will need to
|
|
|
|
* reset them after calling this method.
|
|
|
|
*
|
|
|
|
* @param failed true when the applet failed, false when it succeeded
|
|
|
|
* @param reason an optional reason to show the user why the applet
|
|
|
|
* failed to launch
|
|
|
|
**/
|
|
|
|
void setFailedToLaunch(bool failed, const QString &reason = QString());
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When called, the Applet should write any information needed as part
|
|
|
|
* of the Applet's running state to the configuration object in config()
|
|
|
|
* and/or globalConfig().
|
|
|
|
*
|
|
|
|
* Applets that always sync their settings/state with the config
|
|
|
|
* objects when these settings/states change do not need to reimplement
|
|
|
|
* this method.
|
|
|
|
**/
|
|
|
|
virtual void saveState(KConfigGroup &config) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether or not this applet provides a user interface for
|
|
|
|
* configuring the applet.
|
|
|
|
*
|
|
|
|
* It defaults to false, and if true is passed in you should
|
|
|
|
* also reimplement createConfigurationInterface()
|
|
|
|
*
|
|
|
|
* @param hasInterface whether or not there is a user interface available
|
|
|
|
**/
|
|
|
|
void setHasConfigurationInterface(bool hasInterface);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When the applet needs to be configured before being usable, this
|
|
|
|
* method can be called to show a standard interface prompting the user
|
|
|
|
* to configure the applet
|
|
|
|
*
|
|
|
|
* @param needsConfiguring true if the applet needs to be configured,
|
|
|
|
* or false if it doesn't
|
2009-01-10 01:08:31 +01:00
|
|
|
* @param reason a translated message for the user explaining that the
|
|
|
|
* applet needs configuring; this should note what needs
|
|
|
|
* to be configured
|
2008-11-04 00:08:39 +01:00
|
|
|
*/
|
|
|
|
void setConfigurationRequired(bool needsConfiguring, const QString &reason = QString());
|
|
|
|
|
2009-02-02 20:39:41 +01:00
|
|
|
/**
|
|
|
|
* Shows a message as an overlay of the applet: the message has an
|
|
|
|
* icon, text and (optional) buttons
|
|
|
|
*
|
|
|
|
* @param icon the icon that will be shown
|
|
|
|
* @param message the message string that will be shown.
|
|
|
|
* If the message is empty nothng will be shown
|
|
|
|
* and if there was a message already it will be hidden
|
|
|
|
* @param buttons an OR combination of all the buttons needed
|
|
|
|
*
|
|
|
|
* @see Plasma::MessageButtons
|
|
|
|
* @see messageButtonPressed
|
2009-02-04 11:59:15 +01:00
|
|
|
* @since 4.3
|
2009-02-02 20:39:41 +01:00
|
|
|
*/
|
2010-11-15 21:48:27 +01:00
|
|
|
void showMessage(const QIcon &icon, const QString &message, const Plasma::MessageButtons buttons);
|
2009-02-02 20:39:41 +01:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
/**
|
2012-02-13 22:30:09 +01:00
|
|
|
* Called when any of the constraints for the applet have been updated. These constraints
|
|
|
|
* range from notifying when the applet has officially "started up" to when geometry changes
|
|
|
|
* to when the form factor changes.
|
|
|
|
*
|
|
|
|
* Each constraint that has been changed is passed in the constraints flag.
|
|
|
|
* All of the constraints and how they work is documented in the @see Plasma::Constraints
|
|
|
|
* enumeration.
|
2008-11-04 00:08:39 +01:00
|
|
|
*
|
2012-02-13 22:30:09 +01:00
|
|
|
* On applet creation, this is always called prior to painting and can be used as an
|
2008-11-04 00:08:39 +01:00
|
|
|
* opportunity to layout the widget, calculate sizings, etc.
|
|
|
|
*
|
|
|
|
* Do not call update() from this method; an update() will be triggered
|
|
|
|
* at the appropriate time for the applet.
|
|
|
|
*
|
|
|
|
* @param constraints the type of constraints that were updated
|
|
|
|
* @property constraint
|
|
|
|
*/
|
|
|
|
virtual void constraintsEvent(Plasma::Constraints constraints);
|
|
|
|
|
|
|
|
|
2012-09-25 20:35:04 +02:00
|
|
|
QSizeF sizeHint(Qt::SizeHint which, const QSizeF & constraint = QSizeF()) const;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reimplemented from QObject
|
|
|
|
*/
|
|
|
|
void timerEvent (QTimerEvent *event);
|
|
|
|
|
2010-04-03 21:10:32 +02:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
private:
|
2009-04-26 02:43:20 +02:00
|
|
|
/**
|
|
|
|
* @internal This constructor is to be used with the Package loading system.
|
|
|
|
*
|
|
|
|
* @param parent a QObject parent; you probably want to pass in 0
|
|
|
|
* @param args a list of strings containing two entries: the service id
|
|
|
|
* and the applet id
|
|
|
|
* @since 4.3
|
|
|
|
*/
|
|
|
|
Applet(const QString &packagePath, uint appletId, const QVariantList &args);
|
|
|
|
|
2010-11-03 21:52:13 +01:00
|
|
|
Q_PRIVATE_SLOT(d, void cleanUpAndDelete())
|
2008-11-04 00:08:39 +01:00
|
|
|
Q_PRIVATE_SLOT(d, void selectItemToDestroy())
|
2009-01-05 19:08:14 +01:00
|
|
|
Q_PRIVATE_SLOT(d, void configDialogFinished())
|
2009-05-03 22:22:14 +02:00
|
|
|
Q_PRIVATE_SLOT(d, void updateShortcuts())
|
2009-09-04 02:08:26 +02:00
|
|
|
Q_PRIVATE_SLOT(d, void publishCheckboxStateChanged(int state))
|
2010-05-07 22:57:03 +02:00
|
|
|
Q_PRIVATE_SLOT(d, void globalShortcutChanged())
|
2011-04-25 16:43:15 +02:00
|
|
|
Q_PRIVATE_SLOT(d, void propagateConfigChanged())
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
AppletPrivate *const d;
|
|
|
|
|
|
|
|
//Corona needs to access setFailedToLaunch and init
|
|
|
|
friend class Corona;
|
|
|
|
friend class CoronaPrivate;
|
2012-09-24 18:10:25 +02:00
|
|
|
friend class Corona;
|
2008-11-04 00:08:39 +01:00
|
|
|
friend class Containment;
|
|
|
|
friend class ContainmentPrivate;
|
|
|
|
friend class AppletScript;
|
|
|
|
friend class AppletHandle;
|
|
|
|
friend class AppletPrivate;
|
2009-09-02 04:27:16 +02:00
|
|
|
friend class AccessAppletJobPrivate;
|
2012-02-28 16:52:11 +01:00
|
|
|
friend class GraphicsViewAppletPrivate;
|
2010-07-15 23:38:56 +02:00
|
|
|
friend class PluginLoader;
|
2008-11-04 00:08:39 +01:00
|
|
|
friend class PopupApplet;
|
|
|
|
friend class PopupAppletPrivate;
|
2009-09-16 19:08:45 +02:00
|
|
|
friend class AssociatedApplicationManager;
|
2008-11-04 00:08:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // Plasma namespace
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register an applet when it is contained in a loadable module
|
|
|
|
*/
|
|
|
|
#define K_EXPORT_PLASMA_APPLET(libname, classname) \
|
|
|
|
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) \
|
|
|
|
K_EXPORT_PLUGIN(factory("plasma_applet_" #libname)) \
|
|
|
|
K_EXPORT_PLUGIN_VERSION(PLASMA_VERSION)
|
|
|
|
|
|
|
|
#endif // multiple inclusion guard
|