Evas_Device: Add a new event for added and removed devices.
authorGuilherme Iscaro <iscaro@profusion.mobi>
Tue, 20 Sep 2016 15:10:08 +0000 (12:10 -0300)
committerBruno Dilly <bdilly@profusion.mobi>
Tue, 27 Sep 2016 01:06:59 +0000 (22:06 -0300)
This commits adds two event types for EFL_CANVAS. Every time
a device is added or removed the matching event will be emitted.

src/lib/efl/interfaces/efl_canvas.eo
src/lib/evas/canvas/evas_device.c

index 7df573f..e0eba6a 100644 (file)
@@ -155,5 +155,7 @@ interface Efl.Canvas ()
       render,pre;
       render,post;
       device,changed: Efl.Input.Device;
+      device,added: Efl.Input.Device;
+      device,removed: Efl.Input.Device;
    }
 }
index 7fc8272..598cee1 100644 (file)
@@ -31,6 +31,8 @@ _del_cb(void *data, const Efl_Event *ev)
 
    // can not be done in std destructor
    e->devices = eina_list_remove(e->devices, ev->object);
+   efl_event_callback_call(e->evas, EFL_CANVAS_EVENT_DEVICE_REMOVED,
+                           ev->object);
 }
 
 EAPI Evas_Device *
@@ -68,6 +70,8 @@ evas_device_full_add(Evas *eo_e, const char *name, const char *desc,
      e->devices = eina_list_append(e->devices, dev);
    efl_event_callback_add(dev, EFL_EVENT_DEL, _del_cb, e);
 
+   efl_event_callback_call(eo_e, EFL_CANVAS_EVENT_DEVICE_ADDED, dev);
+   // Keeping this event to do not break things...
    evas_event_callback_call(eo_e, EVAS_CALLBACK_DEVICE_CHANGED, dev);
 
    return dev;