* @param[in] obj The object.
* @param[in] size The cache size.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_image_cache_set(Evas_Canvas *obj, int size);
*
* @return The cache size.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_image_cache_get(const Evas_Canvas *obj);
*
* @since 1.2
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_event_default_flags_set(Evas_Canvas *obj, Evas_Event_Flags flags);
*
* @since 1.2
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Evas_Event_Flags evas_event_default_flags_get(const Evas_Canvas *obj);
* @param[in] obj The object.
* @param[in] size The size in bytes.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_font_cache_set(Evas_Canvas *obj, int size);
*
* @return The size in bytes.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_font_cache_get(const Evas_Canvas *obj);
* @param[in] obj The object.
* @param[in] data The attached pointer.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_data_attach_set(Evas_Canvas *obj, void *data);
*
* @return The attached pointer.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void *evas_data_attach_get(const Evas_Canvas *obj);
*
* @return The object that has focus or @c null if there is not one.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Efl_Canvas_Object *evas_focus_get(const Evas_Canvas *obj) EINA_WARN_UNUSED_RESULT;
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Efl_Canvas_Object *evas_seat_focus_get(const Evas_Canvas *obj, Evas_Device *seat);
*
* @return A pointer to the highest object on it (if any) or @c null otherwise.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Efl_Canvas_Object *evas_object_top_get(const Evas_Canvas *obj) EINA_WARN_UNUSED_RESULT;
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_pointer_canvas_xy_by_device_get(const Evas_Canvas *obj, Evas_Device *dev, int *x, int *y);
* @param[out] x The pointer to a Evas_Coord to be filled in.
* @param[out] y The pointer to a Evas_Coord to be filled in.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_pointer_canvas_xy_get(const Evas_Canvas *obj, int *x, int *y);
*
* @since 1.2
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_event_down_count_get(const Evas_Canvas *obj);
*
* @since 1.1
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_smart_objects_calculate_count_get(const Evas_Canvas *obj);
*
* @return @c true if focused, @c false otherwise
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Eina_Bool evas_focus_state_get(const Evas_Canvas *obj);
*
* @return @c true if the seat has the canvas focus, @c false otherwise.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Eina_Bool evas_seat_focus_state_get(const Evas_Canvas *obj, Evas_Device *seat);
*
* @since 1.11
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Eina_Bool evas_changed_get(const Evas_Canvas *obj);
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_pointer_output_xy_by_device_get(const Evas_Canvas *obj, Evas_Device *dev, int *x, int *y);
* @param[out] x The pointer to an integer to be filled in.
* @param[out] y The pointer to an integer to be filled in.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_pointer_output_xy_get(const Evas_Canvas *obj, int *x, int *y);
*
* @return A pointer to the lowest object on it, if any, or @c null otherwise.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Efl_Canvas_Object *evas_object_bottom_get(const Evas_Canvas *obj) EINA_WARN_UNUSED_RESULT;
*
* @return A bitmask of the currently depressed buttons on the canvas.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI unsigned int evas_pointer_button_down_mask_by_device_get(const Evas_Canvas *obj, Evas_Device *dev);
*
* @return A bitmask of the currently depressed buttons on the canvas.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI unsigned int evas_pointer_button_down_mask_get(const Evas_Canvas *obj) EINA_WARN_UNUSED_RESULT;
*
* @return List of objects
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Eina_List *evas_tree_objects_at_xy_get(Evas_Canvas *obj, Efl_Canvas_Object *stop, int x, int y) EINA_WARN_UNUSED_RESULT;
* @param[in] obj The object.
* @param[in] keyname The name of the lock to enable.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_lock_on(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_seat_key_lock_on(Evas_Canvas *obj, const char *keyname, Evas_Device *seat) EINA_ARG_NONNULL(2);
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_seat_key_lock_off(Evas_Canvas *obj, const char *keyname, Evas_Device *seat) EINA_ARG_NONNULL(2);
* @param[in] keyname The name of the modifier key to add to the list of Evas
* modifiers.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_modifier_add(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
* @param[in] obj The object.
* @param[in] keyname The name of the modifier to disable.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_modifier_off(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
*
* @since 1.8
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Eina_Bool evas_render_async(Evas_Canvas *obj);
/** Inform the evas that it lost the focus from the default seat.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_focus_out(Evas_Canvas *obj);
* used.
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_norender(Evas_Canvas *obj);
*
* @since 1.24
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_norender_with_updates(Eo *eo_e);
* with "changed" state.
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_nochange_pop(Evas_Canvas *obj);
* @param[in] obj The object.
* @param[in] keyname The name of the lock to disable.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_lock_off(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
* with "changed" state.
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_nochange_push(Evas_Canvas *obj);
/** Force the given evas and associated engine to flush its font cache.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_font_cache_flush(Evas_Canvas *obj);
* @param[in] obj The object.
* @param[in] keyname The name of the modifier to enable.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_modifier_on(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_seat_key_modifier_on(Evas_Canvas *obj, const char *keyname, Evas_Device *seat) EINA_ARG_NONNULL(2);
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_seat_key_modifier_off(Evas_Canvas *obj, const char *keyname, Evas_Device *seat) EINA_ARG_NONNULL(2);
* @return A newly allocated list of strings. Do not change the strings. Be
* sure to call @ref evas_font_available_list_free after you're done.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Eina_List *evas_font_available_list(const Evas_Canvas *obj) EINA_WARN_UNUSED_RESULT;
* @return If successful, the Evas object with the given name. Otherwise,
* @c null.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Efl_Canvas_Object *evas_object_name_find(const Evas_Canvas *obj, const char *name) EINA_WARN_UNUSED_RESULT;
* @param[in] obj The object.
* @param[in] path The new font path.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_font_path_append(Evas_Canvas *obj, const char *path) EINA_ARG_NONNULL(2);
/** Removes all font paths loaded into memory for the given evas.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_font_path_clear(Evas_Canvas *obj);
* @param[in] obj The object.
* @param[in] keyname The name of the key to remove from the locks list.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_lock_del(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
* @param[in] w The rectangle's width.
* @param[in] h The rectangle's height.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_damage_rectangle_add(Evas_Canvas *obj, int x, int y, int w, int h);
/** Sync evas canvas
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_sync(Evas_Canvas *obj);
*
* @return The list of font paths used.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI const Eina_List *evas_font_path_list(const Evas_Canvas *obj) EINA_WARN_UNUSED_RESULT;
* This function reloads the image cache of canvas.
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_image_cache_reload(Evas_Canvas *obj);
*
* @return The output/screen coordinate translated to output coordinates.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_coord_world_x_to_screen(const Evas_Canvas *obj, int x) EINA_WARN_UNUSED_RESULT;
* @return A newly allocated list of updated rectangles of the canvas
* (@Eina.Rect structs). Free this list with @ref evas_render_updates_free.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Eina_List *evas_render_updates(Evas_Canvas *obj) EINA_WARN_UNUSED_RESULT;
* This function flushes image cache of canvas.
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_image_cache_flush(Evas_Canvas *obj);
*
* @return The screen coordinate translated to canvas unit coordinates.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_coord_screen_y_to_world(const Evas_Canvas *obj, int y) EINA_WARN_UNUSED_RESULT;
* @param[in] obj The object.
* @param[in] keyname The name of the key to remove from the modifiers list.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_modifier_del(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
/** Inform to the evas that it got the focus from the default seat.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_focus_in(Evas_Canvas *obj);
* @param[in] w The rectangle's width.
* @param[in] h The rectangle's height.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_obscured_rectangle_add(Evas_Canvas *obj, int x, int y, int w, int h);
* too.
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_render_dump(Evas_Canvas *obj);
/** Force renderization of the given canvas.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_render(Evas_Canvas *obj);
* @param[in] obj The object.
* @param[in] path The new font path.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_font_path_prepend(Evas_Canvas *obj, const char *path) EINA_ARG_NONNULL(2);
* "damage" regions yourself (see @ref evas_damage_rectangle_add).
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_obscured_clear(Evas_Canvas *obj);
*
* @return The screen coordinate translated to canvas unit coordinates.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_coord_screen_x_to_world(const Evas_Canvas *obj, int x) EINA_WARN_UNUSED_RESULT;
* @param[in] obj The object.
* @param[in] keyname The name of the key to add to the locks list.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_key_lock_add(Evas_Canvas *obj, const char *keyname) EINA_ARG_NONNULL(2);
* buffers, cached data to avoid re-compute of that data etc.
* @param[in] obj The object.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI void evas_render_idle_flush(Evas_Canvas *obj);
*
* @since 1.19
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI Evas_Device *evas_default_device_get(const Evas_Canvas *obj, Evas_Device_Class type);
*
* @return The output/screen coordinate translated to output coordinates.
*
- * @ingroup Evas_Group
+ * @ingroup Evas_Canvas
*/
EAPI int evas_coord_world_y_to_screen(const Evas_Canvas *obj, int y) EINA_WARN_UNUSED_RESULT;