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>
Mon, 15 Dec 2014 14:37:07 +0000 (15:37 +0100)
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 9941968be62f5c87a865e3cf7a89f496b85d05c1..744f4fdcd08af016534b6135b11c1e12ce1a8e05 100644 (file)
@@ -2604,6 +2604,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)
 {
@@ -3461,3 +3467,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 73b1383ffbe672ece3635c1a0c298020b84080cf..68d5a64827162572e08b2d7da6060d0b405abdfa 100644 (file)
@@ -1711,3 +1711,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);