Mockup generation 83/256183/1
authorBartlomiej Grzelewski <b.grzelewski@samsung.com>
Tue, 30 Mar 2021 10:55:54 +0000 (12:55 +0200)
committerBartlomiej Grzelewski <b.grzelewski@samsung.com>
Tue, 30 Mar 2021 11:36:41 +0000 (13:36 +0200)
Change-Id: I597780ac06518227122a5049400a7f4c95f20e40

28 files changed:
tests2/wrappers/mocked_app_tracker.cpp
tests2/wrappers/mocked_app_tracker.h
tests2/wrappers/mocked_dbus_direct_reading_adapter.cpp
tests2/wrappers/mocked_dbus_direct_reading_adapter.h
tests2/wrappers/mocked_external.cpp
tests2/wrappers/mocked_external.h
tests2/wrappers/mocked_flat_navi.cpp
tests2/wrappers/mocked_flat_navi.h
tests2/wrappers/mocked_granularity_read.cpp
tests2/wrappers/mocked_granularity_read.h
tests2/wrappers/mocked_keyboard_tracker.cpp
tests2/wrappers/mocked_keyboard_tracker.h
tests2/wrappers/mocked_main.cpp
tests2/wrappers/mocked_main.h
tests2/wrappers/mocked_navigator.cpp
tests2/wrappers/mocked_navigator.h
tests2/wrappers/mocked_screen_reader.cpp
tests2/wrappers/mocked_screen_reader.h
tests2/wrappers/mocked_screen_reader_spi.cpp
tests2/wrappers/mocked_screen_reader_spi.h
tests2/wrappers/mocked_screen_reader_system.cpp
tests2/wrappers/mocked_screen_reader_system.h
tests2/wrappers/mocked_screen_reader_tts.cpp
tests2/wrappers/mocked_screen_reader_tts.h
tests2/wrappers/mocked_smart_notification.cpp
tests2/wrappers/mocked_smart_notification.h
tests2/wrappers/mocked_window_tracker.cpp
tests2/wrappers/mocked_window_tracker.h

index 869d19dcdd80d0b2b0ebfe7768e37d5a3200d445..da2fb3596c8ddbc278bd02aa03729b514b66a661 100644 (file)
@@ -18,10 +18,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 884f97ef523c768afbcaf0c891ba70196bdf8c36..c90cf0983b34db1acfbafb4e7e919dd7690d08bd 100644 (file)
@@ -32,10 +32,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 18999af89e944cb9172ae181fe4b52a5ee0fc42c..2f76342c72671be0145fc43e41124dbf5dd6716b 100644 (file)
@@ -12,10 +12,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 8ac2751954f29029c80fd77a543592bb928f2eb5..b2ea3f0800030bbf4a524afb8be81c21eb1d2f13 100644 (file)
@@ -21,10 +21,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 5e3a0a7c97f364940367ed7c317a72cb21093c76..2785df5e4b13b14ca8aa81b8aad56dd77df3d12b 100644 (file)
@@ -48,6 +48,7 @@ IMPLEMENT_FUNCTION_MOCK1(mock_atspi_accessible_get_text_iface, atspi_accessible_
 IMPLEMENT_FUNCTION_MOCK2(mock_atspi_accessible_get_toolkit_name, atspi_accessible_get_toolkit_name, gchar *(AtspiAccessible *, GError **));
 IMPLEMENT_FUNCTION_MOCK2(mock_atspi_accessible_get_unique_id, atspi_accessible_get_unique_id, gchar *(AtspiAccessible *, GError **));
 IMPLEMENT_FUNCTION_MOCK1(mock_atspi_accessible_get_value_iface, atspi_accessible_get_value_iface, AtspiValue *(AtspiAccessible *));
+IMPLEMENT_FUNCTION_MOCK2(mock_atspi_accessible_is_equal, atspi_accessible_is_equal, gboolean(AtspiAccessible *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK3(mock_atspi_action_do_action_name, atspi_action_do_action_name, gboolean(AtspiAction *, const gchar *, GError **));
 IMPLEMENT_FUNCTION_MOCK3(mock_atspi_action_get_action_name, atspi_action_get_action_name, gchar *(AtspiAction *, gint, GError **));
 IMPLEMENT_FUNCTION_MOCK2(mock_atspi_action_get_n_actions, atspi_action_get_n_actions, gint(AtspiAction *, GError **));
@@ -57,17 +58,20 @@ IMPLEMENT_FUNCTION_MOCK0(mock_atspi_component_get_type, atspi_component_get_type
 IMPLEMENT_FUNCTION_MOCK2(mock_atspi_component_grab_focus, atspi_component_grab_focus, gboolean(AtspiComponent *, GError **));
 IMPLEMENT_FUNCTION_MOCK2(mock_atspi_component_grab_highlight, atspi_component_grab_highlight, gboolean(AtspiComponent *, GError **));
 IMPLEMENT_FUNCTION_MOCK5(mock_atspi_deregister_keystroke_listener, atspi_deregister_keystroke_listener, gboolean(AtspiDeviceListener *, GArray *, AtspiKeyMaskType, AtspiKeyEventMask, GError **));
+IMPLEMENT_FUNCTION_MOCK0(mock_atspi_device_event_get_type, atspi_device_event_get_type, GType());
 IMPLEMENT_FUNCTION_MOCK3(mock_atspi_device_listener_new, atspi_device_listener_new, AtspiDeviceListener *(AtspiDeviceListenerCB, void *, GDestroyNotify));
 IMPLEMENT_FUNCTION_MOCK4(mock_atspi_editable_text_copy_text, atspi_editable_text_copy_text, gboolean(AtspiEditableText *, gint, gint, GError **));
 IMPLEMENT_FUNCTION_MOCK4(mock_atspi_editable_text_cut_text, atspi_editable_text_cut_text, gboolean(AtspiEditableText *, gint, gint, GError **));
 IMPLEMENT_FUNCTION_MOCK4(mock_atspi_editable_text_delete_text, atspi_editable_text_delete_text, gboolean(AtspiEditableText *, gint, gint, GError **));
 IMPLEMENT_FUNCTION_MOCK3(mock_atspi_editable_text_paste_text, atspi_editable_text_paste_text, gboolean(AtspiEditableText *, gint, GError **));
+IMPLEMENT_FUNCTION_MOCK0(mock_atspi_event_get_type, atspi_event_get_type, GType());
 IMPLEMENT_FUNCTION_MOCK3(mock_atspi_event_listener_deregister, atspi_event_listener_deregister, gboolean(AtspiEventListener *, const gchar *, GError **));
 IMPLEMENT_FUNCTION_MOCK3(mock_atspi_event_listener_new, atspi_event_listener_new, AtspiEventListener *(AtspiEventListenerCB, gpointer, GDestroyNotify));
 IMPLEMENT_FUNCTION_MOCK3(mock_atspi_event_listener_register, atspi_event_listener_register, gboolean(AtspiEventListener *, const gchar *, GError **));
 IMPLEMENT_FUNCTION_MOCK0(mock_atspi_exit, atspi_exit, int());
 IMPLEMENT_FUNCTION_MOCK0(mock_atspi_init, atspi_init, int());
 IMPLEMENT_FUNCTION_MOCK0(mock_atspi_object_get_type, atspi_object_get_type, GType());
+IMPLEMENT_FUNCTION_MOCK0(mock_atspi_rect_get_type, atspi_rect_get_type, GType());
 IMPLEMENT_FUNCTION_MOCK6(mock_atspi_register_keystroke_listener, atspi_register_keystroke_listener, gboolean(AtspiDeviceListener *, GArray *, AtspiKeyMaskType, AtspiKeyEventMask, AtspiKeyListenerSyncType, GError **));
 IMPLEMENT_FUNCTION_MOCK1(mock_atspi_relation_get_n_targets, atspi_relation_get_n_targets, gint(AtspiRelation *));
 IMPLEMENT_FUNCTION_MOCK1(mock_atspi_relation_get_relation_type, atspi_relation_get_relation_type, AtspiRelationType(AtspiRelation *));
@@ -211,6 +215,7 @@ IMPLEMENT_FUNCTION_MOCK3(mock_eldbus_proxy_send_and_block, eldbus_proxy_send_and
 IMPLEMENT_FUNCTION_MOCK4(mock_eldbus_proxy_signal_handler_add, eldbus_proxy_signal_handler_add, Eldbus_Signal_Handler *(Eldbus_Proxy *, const char *, Eldbus_Signal_Cb, const void *));
 IMPLEMENT_FUNCTION_MOCK1(mock_eldbus_proxy_unref, eldbus_proxy_unref, void(Eldbus_Proxy *));
 IMPLEMENT_FUNCTION_MOCK3(mock_eldbus_service_interface_register, eldbus_service_interface_register, Eldbus_Service_Interface *(Eldbus_Connection *, const char *, const Eldbus_Service_Interface_Desc *));
+IMPLEMENT_FUNCTION_MOCK1(mock_eldbus_service_interface_unregister, eldbus_service_interface_unregister, void(Eldbus_Service_Interface *));
 IMPLEMENT_FUNCTION_MOCK1(mock_eldbus_service_object_unregister, eldbus_service_object_unregister, void(Eldbus_Service_Interface *));
 IMPLEMENT_FUNCTION_MOCK0(mock_eldbus_shutdown, eldbus_shutdown, int());
 IMPLEMENT_FUNCTION_MOCK1(mock_elm_box_add, elm_box_add, Evas_Object *(Evas_Object *));
@@ -243,6 +248,7 @@ IMPLEMENT_FUNCTION_MOCK1(mock_g_array_unref, g_array_unref, void(GArray *));
 IMPLEMENT_FUNCTION_MOCK5(mock_g_assertion_message, g_assertion_message, void(const char *, const char *, int, const char *, const char *));
 IMPLEMENT_FUNCTION_MOCK1(mock_g_async_queue_unref, g_async_queue_unref, void(GAsyncQueue *));
 IMPLEMENT_FUNCTION_MOCK1(mock_g_bookmark_file_free, g_bookmark_file_free, void(GBookmarkFile *));
+IMPLEMENT_FUNCTION_MOCK2(mock_g_boxed_free, g_boxed_free, void(GType, gpointer));
 IMPLEMENT_FUNCTION_MOCK1(mock_g_byte_array_unref, g_byte_array_unref, void(GByteArray *));
 IMPLEMENT_FUNCTION_MOCK1(mock_g_bytes_unref, g_bytes_unref, void(GBytes *));
 IMPLEMENT_FUNCTION_MOCK1(mock_g_checksum_free, g_checksum_free, void(GChecksum *));
@@ -357,6 +363,7 @@ IMPLEMENT_FUNCTION_MOCK1(mock_strdup, strdup, char *(const char *));
 IMPLEMENT_FUNCTION_MOCK4(mock_strftime, strftime, size_t(char *, size_t, const char *, const struct tm *));
 IMPLEMENT_FUNCTION_MOCK3(mock_strncmp, strncmp, int(const char *, const char *, size_t));
 IMPLEMENT_FUNCTION_MOCK2(mock_strnlen, strnlen, size_t(const char *, size_t));
+IMPLEMENT_FUNCTION_MOCK1(mock_tel_deinit, tel_deinit, int(TapiHandle *));
 IMPLEMENT_FUNCTION_MOCK0(mock_tel_get_cp_name_list, tel_get_cp_name_list, char **());
 IMPLEMENT_FUNCTION_MOCK3(mock_tel_get_property_int, tel_get_property_int, int(TapiHandle *, const char *, int *));
 IMPLEMENT_FUNCTION_MOCK1(mock_tel_init, tel_init, TapiHandle *(const char *));
index 3170415421e690caf5d76168f44fdd7b9a274e61..592af206cab077f422f9f4827e48674263a6c4e0 100644 (file)
@@ -91,6 +91,7 @@ DECLARE_FUNCTION_MOCK1(mock_atspi_accessible_get_text_iface, atspi_accessible_ge
 DECLARE_FUNCTION_MOCK2(mock_atspi_accessible_get_toolkit_name, atspi_accessible_get_toolkit_name, gchar *(AtspiAccessible *, GError **));
 DECLARE_FUNCTION_MOCK2(mock_atspi_accessible_get_unique_id, atspi_accessible_get_unique_id, gchar *(AtspiAccessible *, GError **));
 DECLARE_FUNCTION_MOCK1(mock_atspi_accessible_get_value_iface, atspi_accessible_get_value_iface, AtspiValue *(AtspiAccessible *));
+DECLARE_FUNCTION_MOCK2(mock_atspi_accessible_is_equal, atspi_accessible_is_equal, gboolean(AtspiAccessible *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK3(mock_atspi_action_do_action_name, atspi_action_do_action_name, gboolean(AtspiAction *, const gchar *, GError **));
 DECLARE_FUNCTION_MOCK3(mock_atspi_action_get_action_name, atspi_action_get_action_name, gchar *(AtspiAction *, gint, GError **));
 DECLARE_FUNCTION_MOCK2(mock_atspi_action_get_n_actions, atspi_action_get_n_actions, gint(AtspiAction *, GError **));
@@ -100,17 +101,20 @@ DECLARE_FUNCTION_MOCK0(mock_atspi_component_get_type, atspi_component_get_type,
 DECLARE_FUNCTION_MOCK2(mock_atspi_component_grab_focus, atspi_component_grab_focus, gboolean(AtspiComponent *, GError **));
 DECLARE_FUNCTION_MOCK2(mock_atspi_component_grab_highlight, atspi_component_grab_highlight, gboolean(AtspiComponent *, GError **));
 DECLARE_FUNCTION_MOCK5(mock_atspi_deregister_keystroke_listener, atspi_deregister_keystroke_listener, gboolean(AtspiDeviceListener *, GArray *, AtspiKeyMaskType, AtspiKeyEventMask, GError **));
+DECLARE_FUNCTION_MOCK0(mock_atspi_device_event_get_type, atspi_device_event_get_type, GType());
 DECLARE_FUNCTION_MOCK3(mock_atspi_device_listener_new, atspi_device_listener_new, AtspiDeviceListener *(AtspiDeviceListenerCB, void *, GDestroyNotify));
 DECLARE_FUNCTION_MOCK4(mock_atspi_editable_text_copy_text, atspi_editable_text_copy_text, gboolean(AtspiEditableText *, gint, gint, GError **));
 DECLARE_FUNCTION_MOCK4(mock_atspi_editable_text_cut_text, atspi_editable_text_cut_text, gboolean(AtspiEditableText *, gint, gint, GError **));
 DECLARE_FUNCTION_MOCK4(mock_atspi_editable_text_delete_text, atspi_editable_text_delete_text, gboolean(AtspiEditableText *, gint, gint, GError **));
 DECLARE_FUNCTION_MOCK3(mock_atspi_editable_text_paste_text, atspi_editable_text_paste_text, gboolean(AtspiEditableText *, gint, GError **));
+DECLARE_FUNCTION_MOCK0(mock_atspi_event_get_type, atspi_event_get_type, GType());
 DECLARE_FUNCTION_MOCK3(mock_atspi_event_listener_deregister, atspi_event_listener_deregister, gboolean(AtspiEventListener *, const gchar *, GError **));
 DECLARE_FUNCTION_MOCK3(mock_atspi_event_listener_new, atspi_event_listener_new, AtspiEventListener *(AtspiEventListenerCB, gpointer, GDestroyNotify));
 DECLARE_FUNCTION_MOCK3(mock_atspi_event_listener_register, atspi_event_listener_register, gboolean(AtspiEventListener *, const gchar *, GError **));
 DECLARE_FUNCTION_MOCK0(mock_atspi_exit, atspi_exit, int());
 DECLARE_FUNCTION_MOCK0(mock_atspi_init, atspi_init, int());
 DECLARE_FUNCTION_MOCK0(mock_atspi_object_get_type, atspi_object_get_type, GType());
+DECLARE_FUNCTION_MOCK0(mock_atspi_rect_get_type, atspi_rect_get_type, GType());
 DECLARE_FUNCTION_MOCK6(mock_atspi_register_keystroke_listener, atspi_register_keystroke_listener, gboolean(AtspiDeviceListener *, GArray *, AtspiKeyMaskType, AtspiKeyEventMask, AtspiKeyListenerSyncType, GError **));
 DECLARE_FUNCTION_MOCK1(mock_atspi_relation_get_n_targets, atspi_relation_get_n_targets, gint(AtspiRelation *));
 DECLARE_FUNCTION_MOCK1(mock_atspi_relation_get_relation_type, atspi_relation_get_relation_type, AtspiRelationType(AtspiRelation *));
@@ -254,6 +258,7 @@ DECLARE_FUNCTION_MOCK3(mock_eldbus_proxy_send_and_block, eldbus_proxy_send_and_b
 DECLARE_FUNCTION_MOCK4(mock_eldbus_proxy_signal_handler_add, eldbus_proxy_signal_handler_add, Eldbus_Signal_Handler *(Eldbus_Proxy *, const char *, Eldbus_Signal_Cb, const void *));
 DECLARE_FUNCTION_MOCK1(mock_eldbus_proxy_unref, eldbus_proxy_unref, void(Eldbus_Proxy *));
 DECLARE_FUNCTION_MOCK3(mock_eldbus_service_interface_register, eldbus_service_interface_register, Eldbus_Service_Interface *(Eldbus_Connection *, const char *, const Eldbus_Service_Interface_Desc *));
+DECLARE_FUNCTION_MOCK1(mock_eldbus_service_interface_unregister, eldbus_service_interface_unregister, void(Eldbus_Service_Interface *));
 DECLARE_FUNCTION_MOCK1(mock_eldbus_service_object_unregister, eldbus_service_object_unregister, void(Eldbus_Service_Interface *));
 DECLARE_FUNCTION_MOCK0(mock_eldbus_shutdown, eldbus_shutdown, int());
 DECLARE_FUNCTION_MOCK1(mock_elm_box_add, elm_box_add, Evas_Object *(Evas_Object *));
@@ -286,6 +291,7 @@ DECLARE_FUNCTION_MOCK1(mock_g_array_unref, g_array_unref, void(GArray *));
 DECLARE_FUNCTION_MOCK5(mock_g_assertion_message, g_assertion_message, void(const char *, const char *, int, const char *, const char *));
 DECLARE_FUNCTION_MOCK1(mock_g_async_queue_unref, g_async_queue_unref, void(GAsyncQueue *));
 DECLARE_FUNCTION_MOCK1(mock_g_bookmark_file_free, g_bookmark_file_free, void(GBookmarkFile *));
+DECLARE_FUNCTION_MOCK2(mock_g_boxed_free, g_boxed_free, void(GType, gpointer));
 DECLARE_FUNCTION_MOCK1(mock_g_byte_array_unref, g_byte_array_unref, void(GByteArray *));
 DECLARE_FUNCTION_MOCK1(mock_g_bytes_unref, g_bytes_unref, void(GBytes *));
 DECLARE_FUNCTION_MOCK1(mock_g_checksum_free, g_checksum_free, void(GChecksum *));
@@ -400,6 +406,7 @@ DECLARE_FUNCTION_MOCK1(mock_strdup, strdup, char *(const char *));
 DECLARE_FUNCTION_MOCK4(mock_strftime, strftime, size_t(char *, size_t, const char *, const struct tm *));
 DECLARE_FUNCTION_MOCK3(mock_strncmp, strncmp, int(const char *, const char *, size_t));
 DECLARE_FUNCTION_MOCK2(mock_strnlen, strnlen, size_t(const char *, size_t));
+DECLARE_FUNCTION_MOCK1(mock_tel_deinit, tel_deinit, int(TapiHandle *));
 DECLARE_FUNCTION_MOCK0(mock_tel_get_cp_name_list, tel_get_cp_name_list, char **());
 DECLARE_FUNCTION_MOCK3(mock_tel_get_property_int, tel_get_property_int, int(TapiHandle *, const char *, int *));
 DECLARE_FUNCTION_MOCK1(mock_tel_init, tel_init, TapiHandle *(const char *));
index 694388d3dd87a34f16427ab21c6149840c6921fc..a6d1b42578200adfc51ea889dd3f56cb0fe72007 100644 (file)
@@ -12,10 +12,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index b2c6a20d9ddd2f8c1853d14c9184c168e19d017e..3561c9a8cf952caf6801d2266ea7c18617417c9d 100644 (file)
@@ -24,10 +24,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index f4cfe0f59199155611caa2f052a0d75133039483..5a8a4f43b3ea803b809b71479b1e677147bf63b0 100644 (file)
@@ -9,10 +9,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 1b2965b5248313e6b2c92f931e23072838a37290..355fa184d9a3009ef8fbb021b322302082329ed8 100644 (file)
@@ -22,10 +22,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 39c373f56e1f535ec149d61cc39b0c1f668170ca..e77be69f10e91c42c60d8202dbd05abd2666f9e9 100644 (file)
@@ -7,10 +7,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index ca066ca5f1d9d6d58aeff1d7358d08bd39e612c3..eb0cff5e0be0f8cd46a4a0c50a7c4cb0a504687b 100644 (file)
@@ -18,10 +18,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 5ef8c4e01bb8b9032ff37e2440af7ecef7cbbcc2..8f7f3572037b4fcd777fffd9cbd3a260d5c4a5ef 100644 (file)
@@ -12,10 +12,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 7e34b8afb162b4b73c1b300becbb719586516e6e..974141acb02035cd29dc76aa602103760c725847 100644 (file)
@@ -38,10 +38,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 0971e26a5528fdd1713b3638f0390d4807b04d7a..0e5b28746f93c0601a0801f90bfd1477bdb98578 100644 (file)
@@ -22,6 +22,7 @@ IMPLEMENT_FUNCTION_MOCK2(mock__focus_widget, _focus_widget, void(NavigatorData *
 IMPLEMENT_FUNCTION_MOCK2(mock__gesture_is_consumed, _gesture_is_consumed, Eina_Bool(NavigatorData *, Gesture_Info *));
 IMPLEMENT_FUNCTION_MOCK1(mock__get_currently_controlled_accessible, _get_currently_controlled_accessible, AtspiAccessible *(AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock__get_main_window, _get_main_window, AtspiAction *(NavigatorData *));
+IMPLEMENT_FUNCTION_MOCK1(mock__get_value_interface, _get_value_interface, AtspiValue *(NavigatorData *));
 IMPLEMENT_FUNCTION_MOCK2(mock__granularity_text_read, _granularity_text_read, Eina_Bool(NavigatorData *, Eina_Bool));
 IMPLEMENT_FUNCTION_MOCK1(mock__has_activate_action, _has_activate_action, Eina_Bool(AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock__has_escape_action, _has_escape_action, Eina_Bool(AtspiAccessible *));
@@ -121,6 +122,7 @@ IMPLEMENT_FUNCTION_MOCK1(mock_object_has_defunct_state, object_has_defunct_state
 IMPLEMENT_FUNCTION_MOCK1(mock_object_has_highlighted_state, object_has_highlighted_state, Eina_Bool(AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_object_has_modal_role, object_has_modal_role, Eina_Bool(AtspiRole));
 IMPLEMENT_FUNCTION_MOCK2(mock_on_gesture_detected, on_gesture_detected, void(void *, const Eldbus_Message *));
+IMPLEMENT_FUNCTION_MOCK2(mock_quickpanel_changed_cb, quickpanel_changed_cb, void(void *, const Eldbus_Message *));
 IMPLEMENT_FUNCTION_MOCK1(mock_reading_composer_data_free, reading_composer_data_free, void(ReadingComposerData *));
 IMPLEMENT_FUNCTION_MOCK1(mock_reading_composer_data_get, reading_composer_data_get, ReadingComposerData *(AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_reading_composer_description_get, reading_composer_description_get, char *(ReadingComposerData *));
index 6de298ba91adeb44c3ad9a18b6ba6d782416d32a..3c9f06bf08ce27f018bcf80d17aca7ae2d5b99ca 100644 (file)
@@ -41,6 +41,7 @@ extern "C" void _focus_widget(NavigatorData * nd, Gesture_Info * info);
 extern "C" Eina_Bool _gesture_is_consumed(NavigatorData * nd, Gesture_Info * info);
 extern "C" AtspiAccessible * _get_currently_controlled_accessible(AtspiAccessible * obj);
 extern "C" AtspiAction * _get_main_window(NavigatorData * nd);
+extern "C" AtspiValue * _get_value_interface(NavigatorData * nd);
 extern "C" Eina_Bool _granularity_text_read(NavigatorData * nd, Eina_Bool next);
 extern "C" Eina_Bool _has_value(NavigatorData * nd);
 extern "C" Eina_Bool _highlight_access_object(AtspiAccessible * obj, Highlight_Type h_type);
@@ -76,6 +77,7 @@ extern "C" void auto_review_highlight_top(NavigatorData * nd);
 extern "C" void navigator_gestures_tracker_register(NavigatorData * nd, GestureCB gesture_cb);
 extern "C" void navigator_gestures_tracker_unregister(NavigatorData * nd);
 extern "C" void on_gesture_detected(void * data, const Eldbus_Message * msg);
+extern "C" void quickpanel_changed_cb(void * data, const Eldbus_Message * msg);
 extern "C" char * state_to_char(AtspiStateType state);
 extern "C" void test_debug(AtspiAccessible * current_widget);
 DECLARE_FUNCTION_MOCK1(mock__activate_widget, _activate_widget, void(NavigatorData *));
@@ -100,6 +102,7 @@ DECLARE_FUNCTION_MOCK2(mock__focus_widget, _focus_widget, void(NavigatorData *,
 DECLARE_FUNCTION_MOCK2(mock__gesture_is_consumed, _gesture_is_consumed, Eina_Bool(NavigatorData *, Gesture_Info *));
 DECLARE_FUNCTION_MOCK1(mock__get_currently_controlled_accessible, _get_currently_controlled_accessible, AtspiAccessible *(AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock__get_main_window, _get_main_window, AtspiAction *(NavigatorData *));
+DECLARE_FUNCTION_MOCK1(mock__get_value_interface, _get_value_interface, AtspiValue *(NavigatorData *));
 DECLARE_FUNCTION_MOCK2(mock__granularity_text_read, _granularity_text_read, Eina_Bool(NavigatorData *, Eina_Bool));
 DECLARE_FUNCTION_MOCK1(mock__has_activate_action, _has_activate_action, Eina_Bool(AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock__has_escape_action, _has_escape_action, Eina_Bool(AtspiAccessible *));
@@ -199,6 +202,7 @@ DECLARE_FUNCTION_MOCK1(mock_object_has_defunct_state, object_has_defunct_state,
 DECLARE_FUNCTION_MOCK1(mock_object_has_highlighted_state, object_has_highlighted_state, Eina_Bool(AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_object_has_modal_role, object_has_modal_role, Eina_Bool(AtspiRole));
 DECLARE_FUNCTION_MOCK2(mock_on_gesture_detected, on_gesture_detected, void(void *, const Eldbus_Message *));
+DECLARE_FUNCTION_MOCK2(mock_quickpanel_changed_cb, quickpanel_changed_cb, void(void *, const Eldbus_Message *));
 DECLARE_FUNCTION_MOCK1(mock_reading_composer_data_free, reading_composer_data_free, void(ReadingComposerData *));
 DECLARE_FUNCTION_MOCK1(mock_reading_composer_data_get, reading_composer_data_get, ReadingComposerData *(AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_reading_composer_description_get, reading_composer_description_get, char *(ReadingComposerData *));
index 93e675631d5285ab40300a2ed5dc86154606df77..207fb045b2378d23c79e0371d9c53096236af45e 100644 (file)
@@ -7,10 +7,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 713871df2865ed10c22a6a3ca586411baec28a58..e6897507c23b006503ed29d0404fc38c4cf0b122 100644 (file)
@@ -18,10 +18,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 15cc8b42f03d0fe1dcf1c70138efd01b47488b33..554724e5e8f4906cb0641e3bf871fe7c4df1b8be 100644 (file)
@@ -9,10 +9,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
@@ -44,7 +44,6 @@ IMPLEMENT_FUNCTION_MOCK1(mock_screen_reader_ui_launch, screen_reader_ui_launch,
 IMPLEMENT_FUNCTION_MOCK0(mock_screen_reader_ui_terminate, screen_reader_ui_terminate, void());
 IMPLEMENT_FUNCTION_MOCK1(mock_sound_n_vibration_feedback_generate, sound_n_vibration_feedback_generate, void(AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK5(mock_spi_event_get_text_to_read, spi_event_get_text_to_read, void(SpiData *, char **, char **, AtspiEvent *, int *));
-IMPLEMENT_FUNCTION_MOCK2(mock_spi_event_listener_cb, spi_event_listener_cb, void(AtspiEvent *, void *));
 IMPLEMENT_FUNCTION_MOCK0(mock_spi_init, spi_init, SpiData *());
 IMPLEMENT_FUNCTION_MOCK1(mock_spi_shutdown, spi_shutdown, void(SpiData *));
 IMPLEMENT_FUNCTION_MOCK0(mock_tw_init, tw_init, _Bool());
index 2803e49edfd6ccbe89e905c47e0bfafbddc954f5..b2a79f7f50224b15ca3fdbc7a3d1c0140239262d 100644 (file)
@@ -15,7 +15,6 @@ extern "C" SignalHandlingTimerData * create_shtd(SpiData * spi, AtspiAccessible
 extern "C" void free_shtd(SignalHandlingTimerData * shtd);
 extern "C" char * generate_description_for_subtree(AtspiAccessible * obj);
 extern "C" void spi_event_get_text_to_read(SpiData * spi, char ** text_to_read, char ** descr_to_read, AtspiEvent * event, int * cancel);
-extern "C" void spi_event_listener_cb(AtspiEvent * event, void * user_data);
 DECLARE_FUNCTION_MOCK1(mock__has_activate_action, _has_activate_action, Eina_Bool(AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock__has_escape_action, _has_escape_action, Eina_Bool(AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_allow_recursive_name, allow_recursive_name, _Bool(AtspiAccessible *));
@@ -25,10 +24,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
@@ -60,7 +59,6 @@ DECLARE_FUNCTION_MOCK1(mock_screen_reader_ui_launch, screen_reader_ui_launch, vo
 DECLARE_FUNCTION_MOCK0(mock_screen_reader_ui_terminate, screen_reader_ui_terminate, void());
 DECLARE_FUNCTION_MOCK1(mock_sound_n_vibration_feedback_generate, sound_n_vibration_feedback_generate, void(AtspiAccessible *));
 DECLARE_FUNCTION_MOCK5(mock_spi_event_get_text_to_read, spi_event_get_text_to_read, void(SpiData *, char **, char **, AtspiEvent *, int *));
-DECLARE_FUNCTION_MOCK2(mock_spi_event_listener_cb, spi_event_listener_cb, void(AtspiEvent *, void *));
 DECLARE_FUNCTION_MOCK0(mock_spi_init, spi_init, SpiData *());
 DECLARE_FUNCTION_MOCK1(mock_spi_shutdown, spi_shutdown, void(SpiData *));
 DECLARE_FUNCTION_MOCK0(mock_tw_init, tw_init, _Bool());
index 77925c70830fe44ccdaa96151faccf7d9ee5fe31..c2278cf4ed30876ccc8721ceef2f94551ad2c84c 100644 (file)
@@ -10,10 +10,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index ff3da145ab8b3a65c6013091f603a212254d46fb..87c46bf554a3ac52acc1544294c45ca279420d5d 100644 (file)
@@ -29,10 +29,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 00995ba2b919314be8958128886cb0c0008a6bca..5a2a3c574636b83e4f60179c6e33f490b32ffa72 100644 (file)
@@ -14,10 +14,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index e0ec300a223504420f2435c47c224f20b58604fe..bd73b26a20653b43463f86b631c8b7cffd337260 100644 (file)
@@ -26,10 +26,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index e19376b8d77ff47939ce8f31132f175473c8bd06..bc631ae37cb60553bc63792107575feedf7c555d 100644 (file)
@@ -7,10 +7,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 9a2859b8b98a97ccc2c2bcc6f1b1edf047d11d87..5d8ad152c6b66264d316a3afe94f6745023341c3 100644 (file)
@@ -21,10 +21,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 7f07fd6f94a28430753bd9f96728e77b3a55886d..552715465126702395d6aa702060ca66edabec2b 100644 (file)
@@ -9,10 +9,10 @@ IMPLEMENT_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_co
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 IMPLEMENT_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));
index 15db091dc89a9cada1ee822656b5c05f49294114..6dd301df129565dfa7065496f7029d4723e46de2 100644 (file)
@@ -18,10 +18,10 @@ DECLARE_FUNCTION_MOCK4(mock_flat_navi_context_current_at_x_y_set, flat_navi_cont
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_current_get, flat_navi_context_current_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_current_set, flat_navi_context_current_set, Eina_Bool(FlatNaviContext *, AtspiAccessible *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first, flat_navi_context_first, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_first_get, flat_navi_context_first_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_free, flat_navi_context_free, void(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last, flat_navi_context_last, AtspiAccessible *(FlatNaviContext *));
-DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, const AtspiAccessible *(FlatNaviContext *));
+DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_last_get, flat_navi_context_last_get, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_next, flat_navi_context_next, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK1(mock_flat_navi_context_prev, flat_navi_context_prev, AtspiAccessible *(FlatNaviContext *));
 DECLARE_FUNCTION_MOCK2(mock_flat_navi_context_root_change, flat_navi_context_root_change, void(FlatNaviContext *, AtspiAccessible *));