PowerComponent.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef POWERMANAGER
  2. #define POWERMANAGER
  3. #include <QsLog.h>
  4. #include "ComponentManager.h"
  5. class PowerComponent : public ComponentBase
  6. {
  7. Q_OBJECT
  8. public:
  9. enum PowerCapabilities
  10. {
  11. CAP_POWER_OFF = 0x01,
  12. CAP_REBOOT = 0x02,
  13. CAP_SUSPEND = 0x04,
  14. CAP_RELAUNCH = 0x08
  15. };
  16. static PowerComponent& Get();
  17. explicit PowerComponent(QObject* parent = nullptr)
  18. : ComponentBase(parent)
  19. { }
  20. bool componentInitialize() override;
  21. bool componentExport() override { return true; }
  22. const char* componentName() override { return "power"; }
  23. void componentPostInitialize() override;
  24. public Q_SLOTS:
  25. bool checkCap(PowerCapabilities capability);
  26. bool canPowerOff() { return checkCap(CAP_POWER_OFF); }
  27. bool canReboot() { return checkCap(CAP_REBOOT); }
  28. bool canSuspend() { return checkCap(CAP_SUSPEND); }
  29. bool canRelaunch() { return checkCap(CAP_RELAUNCH); }
  30. virtual int getPowerCapabilities() { return CAP_RELAUNCH; }
  31. virtual bool PowerOff() { return false; }
  32. virtual bool Reboot() { return false; }
  33. virtual bool Suspend() { return false; }
  34. void setScreensaverEnabled(bool enabled);
  35. Q_SIGNALS:
  36. // Short-term compatibility with old web-client. Does nothing.
  37. void screenSaverEnabled();
  38. void screenSaverDisabled();
  39. protected:
  40. virtual void doDisableScreensaver() {};
  41. virtual void doEnableScreensaver() {};
  42. };
  43. #endif // POWERMANAGER