瀏覽代碼

Add host commands for suspend, reboot and power off.

Use in inputmaps with "host:poweroff", "host:suspend" and "host:reboot".
Dean Holland 9 年之前
父節點
當前提交
eebeb2aac1
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12 0
      src/ui/KonvergoWindow.cpp

+ 12 - 0
src/ui/KonvergoWindow.cpp

@@ -374,6 +374,18 @@ void KonvergoWindow::handleHostCommand(QString hostCommand)
   {
     *(volatile int*)0=0;
   }
+  else if (hostCommand == "poweroff")
+  {
+    PowerComponent::Get().PowerOff();
+  }
+  else if (hostCommand == "suspend")
+  {
+    PowerComponent::Get().Suspend();
+  }
+  else if (hostCommand == "reboot")
+  {
+    PowerComponent::Get().Reboot();
+  }
   else
   {
     QLOG_WARN() << "unknown host command" << hostCommand;