apidox for new methods

This commit is contained in:
Aaron Seigo 2012-11-14 11:35:30 +01:00
parent b75080eb57
commit 4d6f91067a

View File

@ -110,13 +110,26 @@ class PLASMA_EXPORT ContainmentActions : public QObject
virtual void configurationAccepted(); virtual void configurationAccepted();
/** /**
* Implement this to respond to events. * @return the action that is to be immediately triggered when this plugin is
* The user can configure whatever button and modifier they like, so please don't look at * activated for a context action, or NULL if there is no such action
* those parameters. * @see contextualActions
* The event may be a QMouseEvent or a QWheelEvent.
*/ */
virtual QAction *triggerableContextAction(); virtual QAction *triggerableContextAction();
/**
* Called when a "next" action is triggered (e.g. by mouse wheel scroll). This
* can be used to scroll through a list of items this plugin manages such as
* windows, virtual desktops, activities, etc.
* @see performPrevious
*/
virtual void performNext(); virtual void performNext();
/**
* Called when a "previous" action is triggered (e.g. by mouse wheel scroll). This
* can be used to scroll through a list of items this plugin manages such as
* windows, virtual desktops, activities, etc.
* @see performNext
*/
virtual void performPrevious(); virtual void performPrevious();
/** /**