Add event handling for additional Device::SubClass type 33/152833/3
authorHeeyong Song <heeyong.song@samsung.com>
Wed, 27 Sep 2017 07:43:55 +0000 (16:43 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 10 Oct 2017 06:57:28 +0000 (15:57 +0900)
Change-Id: Ic24c9a2b2bb6d23b0a384b75ca2c10e75e75337d

adaptors/ecore/wayland/event-handler-ecore-wl.cpp

index 9d8d5b4..9790533 100644 (file)
@@ -288,6 +288,18 @@ void GetDeviceSubclass( Ecore_Device_Subclass ecoreDeviceSubclass, Device::Subcl
       deviceSubclass = Device::Subclass::TRACKBALL;
       break;
     }
+#ifdef OVER_TIZEN_VERSION_4
+    case ECORE_DEVICE_SUBCLASS_REMOCON:
+    {
+      deviceSubclass = Device::Subclass::REMOCON;
+      break;
+    }
+    case ECORE_DEVICE_SUBCLASS_VIRTUAL_KEYBOARD:
+    {
+      deviceSubclass = Device::Subclass::VIRTUAL_KEYBOARD;
+      break;
+    }
+#endif
     default:
     {
       deviceSubclass = Device::Subclass::NONE;