performNextAction/performPreviousAction
This commit is contained in:
parent
4ab7b3d044
commit
d68087f410
@ -155,12 +155,14 @@ void ContainmentActions::configurationAccepted()
|
|||||||
//do nothing by default
|
//do nothing by default
|
||||||
}
|
}
|
||||||
|
|
||||||
void ContainmentActions::performNext()
|
void ContainmentActions::performNextAction()
|
||||||
{
|
{
|
||||||
|
//do nothing by default, implement in subclasses
|
||||||
}
|
}
|
||||||
|
|
||||||
void ContainmentActions::performPrevious()
|
void ContainmentActions::performPreviousAction()
|
||||||
{
|
{
|
||||||
|
//do nothing by default, implement in subclasses
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<QAction*> ContainmentActions::contextualActions()
|
QList<QAction*> ContainmentActions::contextualActions()
|
||||||
|
@ -142,7 +142,7 @@ class PLASMA_EXPORT ContainmentActions : public QObject
|
|||||||
* windows, virtual desktops, activities, etc.
|
* windows, virtual desktops, activities, etc.
|
||||||
* @see performPrevious
|
* @see performPrevious
|
||||||
*/
|
*/
|
||||||
virtual void performNext();
|
virtual void performNextAction();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when a "previous" action is triggered (e.g. by mouse wheel scroll). This
|
* Called when a "previous" action is triggered (e.g. by mouse wheel scroll). This
|
||||||
@ -150,7 +150,7 @@ class PLASMA_EXPORT ContainmentActions : public QObject
|
|||||||
* windows, virtual desktops, activities, etc.
|
* windows, virtual desktops, activities, etc.
|
||||||
* @see performNext
|
* @see performNext
|
||||||
*/
|
*/
|
||||||
virtual void performPrevious();
|
virtual void performPreviousAction();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implement this to provide a list of actions that can be added to another menu
|
* Implement this to provide a list of actions that can be added to another menu
|
||||||
|
Loading…
Reference in New Issue
Block a user