浏览代码

Handle keyUp/keyDown messages in Roku remote

Tobias Hieta 9 年之前
父节点
当前提交
608ceed2fb
共有 1 个文件被更改,包括 9 次插入3 次删除
  1. 9 3
      src/input/InputRoku.cpp

+ 9 - 3
src/input/InputRoku.cpp

@@ -32,18 +32,24 @@ bool InputRoku::initInput()
 /////////////////////////////////////////////////////////////////////////////////////////
 void InputRoku::handleRequest(QHttpRequest* request, QHttpResponse* response)
 {
-  if (request->url().path() == "/query/apps")
+  QString path = request->url().path();
+  if (path == "/query/apps")
   {
     handleQueryApps(request, response);
   }
-  else if (request->url().path() == "/query/device-info")
+  else if (path == "/query/device-info")
   {
     handleQueryDeviceInfo(request, response);
   }
-  else if (request->url().path().startsWith("/keypress/"))
+  else if (path.startsWith("/keypress/") || path.startsWith("/keydown/"))
   {
     handleKeyPress(request, response);
   }
+  else if (path.startsWith("/keyup/"))
+  {
+    response->setStatusCode(qhttp::ESTATUS_OK);
+    response->end();
+  }
   else
   {
     response->setStatusCode(qhttp::ESTATUS_NOT_FOUND);