diff options
| author | Sebastien Braun | 2010-11-04 00:38:24 +0100 |
|---|---|---|
| committer | Sebastien Braun | 2010-11-04 00:38:24 +0100 |
| commit | 4fcc0efae9738bb28922da592fff78cfef50277b (patch) | |
| tree | b3855b36abe874606a802ec75fc573543d2d7b35 /src/input/rebootSystemHandler.h | |
| parent | [PVSMGRTOUCH] resetall bug fixed (diff) | |
| parent | Documentation fixes and code cleanup (diff) | |
| download | pvs-4fcc0efae9738bb28922da592fff78cfef50277b.tar.gz pvs-4fcc0efae9738bb28922da592fff78cfef50277b.tar.xz pvs-4fcc0efae9738bb28922da592fff78cfef50277b.zip | |
Merge input handling work to master
Diffstat (limited to 'src/input/rebootSystemHandler.h')
| -rw-r--r-- | src/input/rebootSystemHandler.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/input/rebootSystemHandler.h b/src/input/rebootSystemHandler.h index 34fa8ae..357dcad 100644 --- a/src/input/rebootSystemHandler.h +++ b/src/input/rebootSystemHandler.h @@ -20,15 +20,17 @@ #include <QCoreApplication> #include "inputEventHandler.h" -class RebootLinuxSystemHandler : public DefaultInputEventHandler<InputEvent::ET_SPECIAL, InputEvent::EC_REBOOT> +/** + * Reboot a Linux system. + */ +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); - } + /** + * Send SIGINT to the process with PID 1. + */ + void doHandle(InputEvent const&, InputEventContext const*); }; #endif /* REBOOTSYSTEMHANDLER_H_ */ |
