Adding elm_finger_size_get and elm_finger_size_set
authorRusty Lynch <rusty.lynch@intel.com>
Tue, 18 Dec 2012 02:07:32 +0000 (18:07 -0800)
committerPhilippe Coval <philippe.coval@open.eurogiciel.org>
Thu, 4 Sep 2014 12:12:40 +0000 (14:12 +0200)
Adding the previously removed elm_finger_size_[get|set] functions
to work past breakage in the Tizen 2.0 alpha middleware

src/lib/elm_config.c
src/lib/elm_config.h

index 564a8b9ff997d475e5d6d448f74401c8799cb977..c1da45bcd4766f3fc93c232067d179051031e53e 100644 (file)
@@ -2606,6 +2606,12 @@ elm_config_finger_size_get(void)
    return _elm_config->finger_size;
 }
 
+EAPI void
+elm_finger_size_set(Evas_Coord size)
+{
+   elm_config_finger_size_set(size);
+}
+
 EAPI void
 elm_config_finger_size_set(Evas_Coord size)
 {
@@ -3514,3 +3520,10 @@ _elm_config_shutdown(void)
    if (_elm_key_bindings)
      eina_hash_free(_elm_key_bindings);
 }
+
+EAPI Evas_Coord
+elm_finger_size_get(void)
+{
+   return elm_config_finger_size_get();
+}
+
index e1eb451e6ace7dd80e8154101a841df122c4a6e4..497f36b8e5a452a8d4ebc64d2e212b1fcb463ce5 100644 (file)
@@ -1720,3 +1720,5 @@ EAPI void             elm_config_atspi_mode_set(Eina_Bool is_atspi);
  * @}
  */
 
+EAPI Evas_Coord elm_finger_size_get(void);
+EAPI void       elm_finger_size_set(Evas_Coord size);