summaryrefslogtreecommitdiffstats
path: root/src/input/rebootSystemHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/rebootSystemHandler.h')
-rw-r--r--src/input/rebootSystemHandler.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/input/rebootSystemHandler.h b/src/input/rebootSystemHandler.h
index 34fa8ae..4920452 100644
--- a/src/input/rebootSystemHandler.h
+++ b/src/input/rebootSystemHandler.h
@@ -20,15 +20,11 @@
#include <QCoreApplication>
#include "inputEventHandler.h"
-class RebootLinuxSystemHandler : public DefaultInputEventHandler<InputEvent::ET_SPECIAL, InputEvent::EC_REBOOT>
+class RebootLinuxSystemHandler : public InputEventHandler<
+ input_policy::Require<input_policy::LinuxSystem> >
{
public:
- void handle(InputEvent const&, InputEventContext const*);
-
- static void describeInto(QList<SpecialInputEventDescription>& list)
- {
- list << SpecialInputEventDescription(tr(QT_TRANSLATE_NOOP("InputEventHandler", "Reboot")), InputEvent::ET_SPECIAL, InputEvent::EC_REBOOT);
- }
+ void doHandle(InputEvent const&, InputEventContext const*);
};
#endif /* REBOOTSYSTEMHANDLER_H_ */