4 /* DO NOT USE THIS HEADER UNLESS YOU ARE PREPARED FOR BREAKING OF YOUR
5 * CODE. THIS IS ELEMENTARY'S INTERNAL WIDGET API (for now) AND IS NOT
6 * FINAL. CALL elm_widget_api_check(ELM_INTERNAL_API_VERSION) TO CHECK IT
9 * How to make your own widget? like this:
11 * #include <Elementary.h>
12 * #include "elm_priv.h"
14 * typedef struct _Widget_Data Widget_Data;
19 * // add any other widget data here too
22 * static const char *widtype = NULL;
23 * static void _del_hook(Evas_Object *obj);
24 * static void _theme_hook(Evas_Object *obj);
25 * static void _disable_hook(Evas_Object *obj);
26 * static void _sizing_eval(Evas_Object *obj);
27 * static void _on_focus_hook(void *data, Evas_Object *obj);
29 * static const char SIG_CLICKED[] = "clicked";
30 * static const Evas_Smart_Cb_Description _signals[] = {
36 * _del_hook(Evas_Object *obj)
38 * Widget_Data *wd = elm_widget_data_get(obj);
40 * // delete hook - on delete of object delete object struct etc.
45 * _on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
47 * Widget_Data *wd = elm_widget_data_get(obj);
49 * // handle focus going in and out - optional, but if you want to, set
50 * // this hook and handle it (eg emit a signal to an edje obj)
51 * if (elm_widget_focus_get(obj))
53 * edje_object_signal_emit(wd->sub, "elm,action,focus", "elm");
54 * evas_object_focus_set(wd->sub, EINA_TRUE);
58 * edje_object_signal_emit(wd->sub, "elm,action,unfocus", "elm");
59 * evas_object_focus_set(wd->sub, EINA_FALSE);
64 * _theme_hook(Evas_Object *obj)
66 * Widget_Data *wd = elm_widget_data_get(obj);
68 * // handle change in theme/scale etc.
69 * elm_widget_theme_object_set(obj, wd->sub, "mywidget", "base",
70 * elm_widget_style_get(obj));
74 * _disable_hook(Evas_Object *obj)
76 * Widget_Data *wd = elm_widget_data_get(obj);
78 * // optional, but handle if the widget gets disabled or not
79 * if (elm_widget_disabled_get(obj))
80 * edje_object_signal_emit(wd->sub, "elm,state,disabled", "elm");
82 * edje_object_signal_emit(wd->sub, "elm,state,enabled", "elm");
86 * _sizing_eval(Evas_Object *obj)
88 * Widget_Data *wd = elm_widget_data_get(obj);
89 * Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
91 * elm_coords_finger_size_adjust(1, &minw, 1, &minh);
92 * edje_object_size_min_restricted_calc(wd->sub, &minw, &minh, minw, minh);
93 * elm_coords_finger_size_adjust(1, &minw, 1, &minh);
94 * evas_object_size_hint_min_set(obj, minw, minh);
95 * evas_object_size_hint_max_set(obj, maxw, maxh);
98 * // actual api to create your widget. add more to manipulate it as needed
99 * // mark your calls with EAPI to make them "external api" calls.
101 * elm_mywidget_add(Evas_Object *parent)
107 * // ALWAYS call this - this checks that your widget matches that of
108 * // elementary and that the api hasn't broken. if it has this returns
109 * // false and you need to handle this error gracefully
110 * if (!elm_widget_api_check(ELM_INTERNAL_API_VERSION)) return NULL;
112 * // basic - allocate data for widget and fill it
113 * wd = ELM_NEW(Widget_Data);
114 * e = evas_object_evas_get(parent);
115 * if (!e) return NULL;
116 * obj = elm_widget_add(e);
117 * // give it a type name and set up a mywidget type string if needed
118 * ELM_SET_WIDTYPE(widtype, "mywidget");
119 * elm_widget_type_set(obj, "mywidget");
120 * // tell the parent widget that we are a sub object
121 * elm_widget_sub_object_add(parent, obj);
122 * // setup hooks we need (some are optional)
123 * elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
124 * elm_widget_data_set(obj, wd);
125 * elm_widget_del_hook_set(obj, _del_hook);
126 * elm_widget_theme_hook_set(obj, _theme_hook);
127 * elm_widget_disable_hook_set(obj, _disable_hook);
128 * // this widget can focus (true means yes it can, false means it can't)
129 * elm_widget_can_focus_set(obj, EINA_TRUE);
131 * // for this widget we will add 1 sub object that is an edje object
132 * wd->sub = edje_object_add(e);
133 * // set the theme. this follows a scheme for group name like this:
134 * // "elm/WIDGETNAME/ELEMENT/STYLE"
135 * // so here it will be:
136 * // "elm/mywidget/base/default"
137 * // changing style changes style name from default (all widgets start
138 * // with the default style) and element is for your widget internal
139 * // structure as you see fit
140 * elm_widget_theme_object_set(obj, wd->sub, "mywidget", "base", "default");
141 * // listen to a signal from the edje object to produce widget smart
142 * // callback (like click)
143 * edje_object_signal_callback_add(wd->sub, "elm,action,click", "",
144 * _signal_clicked, obj);
145 * // set this sub object as the "resize object". widgets get 1 resize
146 * // object that is resized along with the object wrapper.
147 * elm_widget_resize_object_set(obj, wd->sub);
149 * // evaluate sizing of the widget (minimum size calc etc.). optional but
150 * // not a bad idea to do here. it will get queued for later anyway
153 * // register the smart callback descriptions so we can have some runtime
154 * // info as to what the smart callback strings mean
155 * evas_object_smart_callbacks_descriptions_set(obj, _signals);
159 * // example - do "whatever" to the widget (here just emit a signal)
161 * elm_mywidget_whatever(Evas_Object *obj)
163 * // check if type is correct - check will return if it fails
164 * ELM_CHECK_WIDTYPE(obj, widtype);
165 * // get widget data - type is correct and sane by this point, so this
166 * // should never fail
167 * Widget_Data *wd = elm_widget_data_get(obj);
168 * // do whatever you like
169 * edje_object_signal_emit(wd->sub, "elm,state,action,whatever", "elm");
172 * // you can add more - you need to see elementary's code to know how to
173 * // handle all cases. remember this api is not stable and may change. it's
178 #ifndef ELM_INTERNAL_API_ARGESFSDFEFC
179 # warning "You are using an internal elementary API. This API is not stable"
180 # warning "and is subject to change. You use this at your own risk."
181 # warning "Remember to call elm_widget_api_check(ELM_INTERNAL_API_VERSION);"
182 # warning "in your widgets before you call any other elm_widget calls to do"
183 # warning "a correct runtime version check. Also remember - you don't NEED"
184 # warning "to make an Elementary widget is almost ALL cases. You can easily"
185 # warning "make a smart object with Evas's API and do everything you need"
186 # warning "there. You only need a widget if you want to seamlessly be part"
187 # warning "of the focus tree and want to transparently become a container"
188 # warning "for any number of child Elementary widgets"
189 # error "ERROR. Compile aborted."
191 #define ELM_INTERNAL_API_VERSION 7000
193 typedef struct _Elm_Tooltip Elm_Tooltip;
194 typedef struct _Elm_Cursor Elm_Cursor;
195 typedef struct _Elm_Widget_Item Elm_Widget_Item; /**< base structure for all widget items that are not Elm_Widget themselves */
197 struct _Elm_Widget_Item
199 /* ef1 ~~ efl, el3 ~~ elm */
200 #define ELM_WIDGET_ITEM_MAGIC 0xef1e1301
203 Evas_Object *widget; /**< the owner widget that owns this item */
204 Evas_Object *view; /**< the base view object */
205 const void *data; /**< item specific data */
206 Evas_Smart_Cb del_cb; /**< used to notify the item is being deleted */
207 /* widget variations should have data from here and on */
208 /* @todo: TODO check if this is enough for 1.0 release, maybe add padding! */
211 #define ELM_NEW(t) calloc(1, sizeof(t))
213 EAPI Eina_Bool elm_widget_api_check(int ver);
214 EAPI Evas_Object *elm_widget_add(Evas *evas);
215 EAPI void elm_widget_del_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj));
216 EAPI void elm_widget_del_pre_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj));
217 EAPI void elm_widget_focus_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj));
218 EAPI void elm_widget_activate_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj));
219 EAPI void elm_widget_disable_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj));
220 EAPI void elm_widget_theme_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj));
221 EAPI void elm_widget_event_hook_set(Evas_Object *obj, Eina_Bool (*func) (Evas_Object *obj, Evas_Object *source, Evas_Callback_Type type, void *event_info));
222 EAPI void elm_widget_changed_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj));
223 EAPI void elm_widget_signal_emit_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj, const char *emission, const char *source));
224 EAPI void elm_widget_signal_callback_add_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj, const char *emission, const char *source, void (*func_cb) (void *data, Evas_Object *o, const char *emission, const char *source), void *data));
225 EAPI void elm_widget_signal_callback_del_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj, const char *emission, const char *source, void (*func_cb) (void *data, Evas_Object *o, const char *emission, const char *source), void *data));
226 EAPI void elm_widget_theme(Evas_Object *obj);
227 EAPI void elm_widget_theme_specific(Evas_Object *obj, Elm_Theme *th, Eina_Bool force);
228 EAPI void elm_widget_focus_next_hook_set(Evas_Object *obj, Eina_Bool (*func) (const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next));
229 EAPI void elm_widget_on_focus_hook_set(Evas_Object *obj, void (*func) (void *data, Evas_Object *obj), void *data);
230 EAPI void elm_widget_on_change_hook_set(Evas_Object *obj, void (*func) (void *data, Evas_Object *obj), void *data);
231 EAPI void elm_widget_on_show_region_hook_set(Evas_Object *obj, void (*func) (void *data, Evas_Object *obj), void *data);
232 EAPI void elm_widget_focus_region_hook_set(Evas_Object *obj, void (*func) (Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h));
233 EAPI void elm_widget_on_focus_region_hook_set(Evas_Object *obj, void (*func) (const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h));
234 EAPI void elm_widget_data_set(Evas_Object *obj, void *data);
235 EAPI void *elm_widget_data_get(const Evas_Object *obj);
236 EAPI void elm_widget_sub_object_add(Evas_Object *obj, Evas_Object *sobj);
237 EAPI void elm_widget_sub_object_del(Evas_Object *obj, Evas_Object *sobj);
238 EAPI void elm_widget_resize_object_set(Evas_Object *obj, Evas_Object *sobj);
239 EAPI void elm_widget_hover_object_set(Evas_Object *obj, Evas_Object *sobj);
240 EAPI void elm_widget_signal_emit(Evas_Object *obj, const char *emission, const char *source);
241 EAPI void elm_widget_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, void (*func) (void *data, Evas_Object *o, const char *emission, const char *source), void *data);
242 EAPI void *elm_widget_signal_callback_del(Evas_Object *obj, const char *emission, const char *source, void (*func) (void *data, Evas_Object *o, const char *emission, const char *source));
243 EAPI void elm_widget_can_focus_set(Evas_Object *obj, Eina_Bool can_focus);
244 EAPI Eina_Bool elm_widget_can_focus_get(const Evas_Object *obj);
245 EAPI Eina_Bool elm_widget_child_can_focus_get(const Evas_Object *obj);
246 EAPI void elm_widget_highlight_ignore_set(Evas_Object *obj, Eina_Bool ignore);
247 EAPI Eina_Bool elm_widget_highlight_ignore_get(const Evas_Object *obj);
248 EAPI void elm_widget_highlight_in_theme_set(Evas_Object *obj, Eina_Bool highlight);
249 EAPI Eina_Bool elm_widget_highlight_in_theme_get(const Evas_Object *obj);
250 EAPI Eina_Bool elm_widget_focus_get(const Evas_Object *obj);
251 EAPI Evas_Object *elm_widget_focused_object_get(const Evas_Object *obj);
252 EAPI Evas_Object *elm_widget_top_get(const Evas_Object *obj);
253 EAPI Eina_Bool elm_widget_is(const Evas_Object *obj);
254 EAPI Evas_Object *elm_widget_parent_widget_get(const Evas_Object *obj);
255 EAPI void elm_widget_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data);
256 EAPI void *elm_widget_event_callback_del(Evas_Object *obj, Elm_Event_Cb func, const void *data);
257 EAPI Eina_Bool elm_widget_event_propagate(Evas_Object *obj, Evas_Callback_Type type, void *event_info, Evas_Event_Flags *event_flags);
258 EAPI void elm_widget_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs);
259 EAPI void elm_widget_focus_custom_chain_unset(Evas_Object *obj);
260 EAPI const Eina_List *elm_widget_focus_custom_chain_get(const Evas_Object *obj);
261 EAPI void elm_widget_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child);
262 EAPI void elm_widget_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child);
263 EAPI void elm_widget_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir);
264 EAPI void elm_widget_focus_direction_go(Evas_Object *obj, int x, int y);
265 EAPI Eina_Bool elm_widget_focus_next_get(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next);
266 EAPI Eina_Bool elm_widget_focus_list_next_get(const Evas_Object *obj, const Eina_List *items, void *(*list_data_get) (const Eina_List *list), Elm_Focus_Direction dir, Evas_Object **next);
267 EAPI void elm_widget_focus_set(Evas_Object *obj, int first);
268 EAPI void elm_widget_focused_object_clear(Evas_Object *obj);
269 EAPI Evas_Object *elm_widget_parent_get(const Evas_Object *obj);
270 EAPI void elm_widget_focus_steal(Evas_Object *obj);
271 EAPI void elm_widget_activate(Evas_Object *obj);
272 EAPI void elm_widget_change(Evas_Object *obj);
273 EAPI void elm_widget_disabled_set(Evas_Object *obj, int disabled);
274 EAPI int elm_widget_disabled_get(const Evas_Object *obj);
275 EAPI void elm_widget_show_region_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
276 EAPI void elm_widget_show_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
277 EAPI void elm_widget_focus_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
278 EAPI void elm_widget_scroll_hold_push(Evas_Object *obj);
279 EAPI void elm_widget_scroll_hold_pop(Evas_Object *obj);
280 EAPI int elm_widget_scroll_hold_get(const Evas_Object *obj);
281 EAPI void elm_widget_scroll_freeze_push(Evas_Object *obj);
282 EAPI void elm_widget_scroll_freeze_pop(Evas_Object *obj);
283 EAPI int elm_widget_scroll_freeze_get(const Evas_Object *obj);
284 EAPI void elm_widget_scale_set(Evas_Object *obj, double scale);
285 EAPI double elm_widget_scale_get(const Evas_Object *obj);
286 EAPI Eina_Bool elm_widget_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
287 EAPI void elm_widget_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
288 EAPI Eina_Bool elm_widget_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
289 EAPI void elm_widget_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
290 EAPI void elm_widget_theme_set(Evas_Object *obj, Elm_Theme *th);
291 EAPI Elm_Theme *elm_widget_theme_get(const Evas_Object *obj);
292 EAPI void elm_widget_style_set(Evas_Object *obj, const char *style);
293 EAPI const char *elm_widget_style_get(const Evas_Object *obj);
294 EAPI void elm_widget_type_set(Evas_Object *obj, const char *type);
295 EAPI const char *elm_widget_type_get(const Evas_Object *obj);
296 EAPI void elm_widget_tooltip_add(Evas_Object *obj, Elm_Tooltip *tt);
297 EAPI void elm_widget_tooltip_del(Evas_Object *obj, Elm_Tooltip *tt);
298 EAPI void elm_widget_cursor_add(Evas_Object *obj, Elm_Cursor *cur);
299 EAPI void elm_widget_cursor_del(Evas_Object *obj, Elm_Cursor *cur);
300 EAPI void elm_widget_drag_lock_x_set(Evas_Object *obj, Eina_Bool lock);
301 EAPI void elm_widget_drag_lock_y_set(Evas_Object *obj, Eina_Bool lock);
302 EAPI Eina_Bool elm_widget_drag_lock_x_get(const Evas_Object *obj);
303 EAPI Eina_Bool elm_widget_drag_lock_y_get(const Evas_Object *obj);
304 EAPI int elm_widget_drag_child_locked_x_get(const Evas_Object *obj);
305 EAPI int elm_widget_drag_child_locked_y_get(const Evas_Object *obj);
306 EAPI Eina_Bool elm_widget_theme_object_set(Evas_Object *obj, Evas_Object *edj, const char *wname, const char *welement, const char *wstyle);
307 EAPI void elm_widget_type_register(const char **ptr);
308 EAPI Eina_Bool elm_widget_type_check(const Evas_Object *obj, const char *type);
309 EAPI Eina_List *elm_widget_stringlist_get(const char *str);
310 EAPI void elm_widget_stringlist_free(Eina_List *list);
312 EAPI Elm_Widget_Item *_elm_widget_item_new(Evas_Object *parent, size_t alloc_size);
313 EAPI void _elm_widget_item_del(Elm_Widget_Item *item);
314 EAPI void _elm_widget_item_pre_notify_del(Elm_Widget_Item *item);
315 EAPI void _elm_widget_item_del_cb_set(Elm_Widget_Item *item, Evas_Smart_Cb del_cb);
316 EAPI void _elm_widget_item_data_set(Elm_Widget_Item *item, const void *data);
317 EAPI void *_elm_widget_item_data_get(const Elm_Widget_Item *item);
318 EAPI void _elm_widget_item_tooltip_text_set(Elm_Widget_Item *item, const char *text);
319 EAPI void _elm_widget_item_tooltip_content_cb_set(Elm_Widget_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb);
320 EAPI void _elm_widget_item_tooltip_unset(Elm_Widget_Item *item);
321 EAPI void _elm_widget_item_tooltip_style_set(Elm_Widget_Item *item, const char *style);
322 EAPI const char *_elm_widget_item_tooltip_style_get(const Elm_Widget_Item *item);
323 EAPI void _elm_widget_item_cursor_set(Elm_Widget_Item *item, const char *cursor);
324 EAPI const char *_elm_widget_item_cursor_get(const Elm_Widget_Item *item);
325 EAPI void _elm_widget_item_cursor_unset(Elm_Widget_Item *item);
326 EAPI void _elm_widget_item_cursor_style_set(Elm_Widget_Item *item, const char *style);
327 EAPI const char *_elm_widget_item_cursor_style_get(const Elm_Widget_Item *item);
328 EAPI void _elm_widget_item_cursor_engine_only_set(Elm_Widget_Item *item, Eina_Bool engine_only);
329 EAPI Eina_Bool _elm_widget_item_cursor_engine_only_get(const Elm_Widget_Item *item);
331 /* debug function. don't use it unless you are tracking parenting issues */
332 EAPI void elm_widget_tree_dump(const Evas_Object *top);
333 EAPI void elm_widget_tree_dot_dump(const Evas_Object *top, FILE *output);
336 * Convenience macro to create new widget item, doing casts for you.
337 * @see _elm_widget_item_new()
338 * @param parent a valid elm_widget variant.
339 * @param type the C type that extends Elm_Widget_Item
341 #define elm_widget_item_new(parent, type) \
342 (type *)_elm_widget_item_new((parent), sizeof(type))
344 * Convenience macro to delete widget item, doing casts for you.
345 * @see _elm_widget_item_del()
346 * @param item a valid item.
348 #define elm_widget_item_del(item) \
349 _elm_widget_item_del((Elm_Widget_Item *)item)
351 * Convenience macro to notify deletion of widget item, doing casts for you.
352 * @see _elm_widget_item_pre_notify_del()
354 #define elm_widget_item_pre_notify_del(item) \
355 _elm_widget_item_pre_notify_del((Elm_Widget_Item *)item)
357 * Convenience macro to set deletion callback of widget item, doing casts for you.
358 * @see _elm_widget_item_del_cb_set()
360 #define elm_widget_item_del_cb_set(item, del_cb) \
361 _elm_widget_item_del_cb_set((Elm_Widget_Item *)item, del_cb)
365 * @see _elm_widget_item_data_set()
367 #define elm_widget_item_data_set(item, data) \
368 _elm_widget_item_data_set((Elm_Widget_Item *)item, data)
371 * @see _elm_widget_item_data_get()
373 #define elm_widget_item_data_get(item) \
374 _elm_widget_item_data_get((const Elm_Widget_Item *)item)
377 * Convenience function to set widget item tooltip as a text string.
378 * @see _elm_widget_item_tooltip_text_set()
380 #define elm_widget_item_tooltip_text_set(item, text) \
381 _elm_widget_item_tooltip_text_set((Elm_Widget_Item *)item, text)
383 * Convenience function to set widget item tooltip.
384 * @see _elm_widget_item_tooltip_content_cb_set()
386 #define elm_widget_item_tooltip_content_cb_set(item, func, data, del_cb) \
387 _elm_widget_item_tooltip_content_cb_set((Elm_Widget_Item *)item, \
390 * Convenience function to unset widget item tooltip.
391 * @see _elm_widget_item_tooltip_unset()
393 #define elm_widget_item_tooltip_unset(item) \
394 _elm_widget_item_tooltip_unset((Elm_Widget_Item *)item)
396 * Convenience function to change item's tooltip style.
397 * @see _elm_widget_item_tooltip_style_set()
399 #define elm_widget_item_tooltip_style_set(item, style) \
400 _elm_widget_item_tooltip_style_set((Elm_Widget_Item *)item, style)
402 * Convenience function to query item's tooltip style.
403 * @see _elm_widget_item_tooltip_style_get()
405 #define elm_widget_item_tooltip_style_get(item) \
406 _elm_widget_item_tooltip_style_get((const Elm_Widget_Item *)item)
408 * Convenience function to set widget item cursor.
409 * @see _elm_widget_item_cursor_set()
411 #define elm_widget_item_cursor_set(item, cursor) \
412 _elm_widget_item_cursor_set((Elm_Widget_Item *)item, cursor)
414 * Convenience function to get widget item cursor.
415 * @see _elm_widget_item_cursor_get()
417 #define elm_widget_item_cursor_get(item) \
418 _elm_widget_item_cursor_get((const Elm_Widget_Item *)item)
420 * Convenience function to unset widget item cursor.
421 * @see _elm_widget_item_cursor_unset()
423 #define elm_widget_item_cursor_unset(item) \
424 _elm_widget_item_cursor_unset((Elm_Widget_Item *)item)
426 * Convenience function to change item's cursor style.
427 * @see _elm_widget_item_cursor_style_set()
429 #define elm_widget_item_cursor_style_set(item, style) \
430 _elm_widget_item_cursor_style_set((Elm_Widget_Item *)item, style)
432 * Convenience function to query item's cursor style.
433 * @see _elm_widget_item_cursor_style_get()
435 #define elm_widget_item_cursor_style_get(item) \
436 _elm_widget_item_cursor_style_get((const Elm_Widget_Item *)item)
438 * Convenience function to change item's cursor engine_only.
439 * @see _elm_widget_item_cursor_engine_only_set()
441 #define elm_widget_item_cursor_engine_only_set(item, engine_only) \
442 _elm_widget_item_cursor_engine_only_set((Elm_Widget_Item *)item, engine_only)
444 * Convenience function to query item's cursor engine_only.
445 * @see _elm_widget_item_cursor_engine_only_get()
447 #define elm_widget_item_cursor_engine_only_get(item) \
448 _elm_widget_item_cursor_engine_only_get((const Elm_Widget_Item *)item)
451 * Cast and ensure the given pointer is an Elm_Widget_Item or return NULL.
453 #define ELM_WIDGET_ITEM(item) \
454 (((item) && (EINA_MAGIC_CHECK(item, ELM_WIDGET_ITEM_MAGIC))) ? \
455 ((Elm_Widget_Item *)(item)) : NULL)
457 #define ELM_WIDGET_ITEM_CHECK_OR_RETURN(item, ...) \
460 CRITICAL("Elm_Widget_Item " # item " is NULL!"); \
461 return __VA_ARGS__; \
463 if (!EINA_MAGIC_CHECK(item, ELM_WIDGET_ITEM_MAGIC)) { \
464 EINA_MAGIC_FAIL(item, ELM_WIDGET_ITEM_MAGIC); \
465 return __VA_ARGS__; \
469 #define ELM_WIDGET_ITEM_CHECK_OR_GOTO(item, label) \
472 CRITICAL("Elm_Widget_Item " # item " is NULL!"); \
475 if (!EINA_MAGIC_CHECK(item, ELM_WIDGET_ITEM_MAGIC)) { \
476 EINA_MAGIC_FAIL(item, ELM_WIDGET_ITEM_MAGIC); \
481 #define ELM_SET_WIDTYPE(widtype, type) \
484 widtype = eina_stringshare_add(type); \
485 elm_widget_type_register(&widtype); \
489 #define ELM_CHECK_WIDTYPE(obj, widtype) \
490 if (!elm_widget_type_check((obj), (widtype))) return
492 #define ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(it, ...) \
493 ELM_WIDGET_ITEM_CHECK_OR_RETURN((Elm_Widget_Item *)it, __VA_ARGS__); \
494 ELM_CHECK_WIDTYPE(it->base.widget, widtype) __VA_ARGS__;
496 #define ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_GOTO(it, label) \
497 ELM_WIDGET_ITEM_CHECK_OR_GOTO((Elm_Widget_Item *)it, label); \
498 if (!elm_widget_type_check((it->base.widget), (widtype))) goto label;
502 * The drag and drop API.
503 * Currently experimental, and will change when it does dynamic type
506 * Here so applications can start to use it, if they ask elm nicely.
508 * And yes, elm_widget, should probably be elm_experimental...
509 * Complaints about this code should go to /dev/null, or failing that nash.
511 typedef struct _Elm_Selection_Data Elm_Selection_Data;
513 typedef Eina_Bool (*Elm_Drop_Cb) (void *d, Evas_Object *o, Elm_Selection_Data *data);
515 typedef enum _Elm_Sel_Type
525 typedef enum _Elm_Sel_Format
527 /** Plain unformated text: Used for things that don't want rich markup */
528 ELM_SEL_FORMAT_TEXT = 0x01,
529 /** Edje textblock markup, including inline images */
530 ELM_SEL_FORMAT_MARKUP = 0x02,
532 ELM_SEL_FORMAT_IMAGE = 0x04,
534 ELM_SEL_FORMAT_VCARD = 0x08,
535 /** Raw HTMLish things for widgets that want that stuff (hello webkit!) */
536 ELM_SEL_FORMAT_HTML = 0x10,
539 struct _Elm_Selection_Data
542 Elm_Sel_Format format;
547 Eina_Bool elm_selection_set(Elm_Sel_Type selection, Evas_Object *widget, Elm_Sel_Format format, const char *buf);
548 Eina_Bool elm_selection_clear(Elm_Sel_Type selection, Evas_Object *widget);
549 Eina_Bool elm_selection_get(Elm_Sel_Type selection, Elm_Sel_Format format, Evas_Object *widget, Elm_Drop_Cb datacb, void *udata);
550 Eina_Bool elm_drop_target_add(Evas_Object *widget, Elm_Sel_Type, Elm_Drop_Cb, void *);
551 Eina_Bool elm_drop_target_del(Evas_Object *widget);
552 Eina_Bool elm_drag_start(Evas_Object *, Elm_Sel_Format, const char *, void (*)(void *,Evas_Object*),void*);