#include "private.h" #include #include #include #include "config.h" #include "termio.h" #include "options.h" #include "options_behavior.h" #include "main.h" #include "utils.h" typedef struct _Behavior_Ctx { Evas_Object *op_w; Evas_Object *op_h; Evas_Object *op_wh_current; Evas_Object *term; Evas_Object *sld_hide_cursor; Config *config; } Behavior_Ctx; extern Eina_Bool multisense_available; #define CB(_cfg_name, _inv) \ static void \ _cb_op_behavior_##_cfg_name(void *data, Evas_Object *obj, \ void *_event EINA_UNUSED) \ { \ Behavior_Ctx *ctx = data; \ Config *config = ctx->config; \ if (_inv) \ config->_cfg_name = !elm_check_state_get(obj); \ else \ config->_cfg_name = elm_check_state_get(obj); \ termio_config_update(ctx->term); \ windows_update(); \ config_save(config); \ } CB(jump_on_change, 0); CB(jump_on_keypress, 0); CB(disable_visual_bell, 1); CB(bell_rings, 0); CB(flicker_on_key, 0); CB(urg_bell, 0); CB(active_links_email, 0); CB(active_links_file, 0); CB(active_links_url, 0); CB(active_links_escape, 0); CB(multi_instance, 0); CB(xterm_256color, 0); CB(erase_is_del, 0); CB(drag_links, 0); CB(login_shell, 0); CB(mouse_over_focus, 0); CB(disable_focus_visuals, 1); CB(gravatar, 0); CB(notabs, 1); CB(mv_always_show, 0); CB(ty_escapes, 0); CB(changedir_to_current, 0); CB(emoji_dbl_width, 0); #undef CB static unsigned int sback_double_to_expo_int(double d) { if (d < 1.0) return 0; if (d >= 17.0) d = 17.0; return 1 << (unsigned char) d; } static char * sback_indicator_units_format(double d) { return (char*)eina_stringshare_printf("%'d", sback_double_to_expo_int(d)); } static char * sback_units_format(double d) { return (char*)eina_stringshare_printf(_("%'d lines"), sback_double_to_expo_int(d)); } static void _cb_op_behavior_sback_chg(void *data, Evas_Object *obj, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; config->scrollback = (double) sback_double_to_expo_int(elm_slider_value_get(obj)); termio_config_update(ctx->term); config_save(config); } static void _cb_op_behavior_tab_zoom_slider_chg(void *data, Evas_Object *obj, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; config->tab_zoom = (double)(int)round(elm_slider_value_get(obj) * 10.0) / 10.0; termio_config_update(ctx->term); config_save(config); } static void _cb_op_behavior_custom_geometry_current_set(void *data, Evas_Object *obj EINA_UNUSED, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; if (config->custom_geometry) { termio_size_get(ctx->term, &config->cg_width, &config->cg_height); elm_spinner_value_set(ctx->op_w, config->cg_width); elm_spinner_value_set(ctx->op_h, config->cg_height); } config_save(config); } static void _cb_op_behavior_custom_geometry(void *data, Evas_Object *obj, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; config->custom_geometry = elm_check_state_get(obj); if (config->custom_geometry) { config->cg_width = (int) elm_spinner_value_get(ctx->op_w); config->cg_height = (int) elm_spinner_value_get(ctx->op_h); } config_save(config); elm_object_disabled_set(ctx->op_w, !config->custom_geometry); elm_object_disabled_set(ctx->op_h, !config->custom_geometry); elm_object_disabled_set(ctx->op_wh_current, !config->custom_geometry); } static void _cb_op_behavior_cg_width(void *data, Evas_Object *obj, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; if (config->custom_geometry) { config->cg_width = (int) elm_spinner_value_get(obj); config_save(config); } } static void _cb_op_behavior_cg_height(void *data, Evas_Object *obj, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; if (config->custom_geometry) { config->cg_height = (int) elm_spinner_value_get(obj); config_save(config); } } static void _parent_del_cb(void *data, Evas *_e EINA_UNUSED, Evas_Object *_obj EINA_UNUSED, void *_event_info EINA_UNUSED) { Behavior_Ctx *ctx = data; free(ctx); } static void _cursors_changed_cb(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; int value = elm_radio_value_get(obj) - 1; config->disable_cursor_blink = value % 2; config->cursor_shape = value / 2; termio_config_update(ctx->term); windows_update(); config_save(config); } static void _cb_op_hide_cursor_changed(void *data, Evas_Object *obj, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; if (elm_check_state_get(obj)) { config->hide_cursor = elm_slider_value_get(ctx->sld_hide_cursor); elm_object_disabled_set(ctx->sld_hide_cursor, EINA_FALSE); } else { config->hide_cursor = CONFIG_CURSOR_IDLE_TIMEOUT_MAX + 1.0; elm_object_disabled_set(ctx->sld_hide_cursor, EINA_TRUE); } config_save(config); } static void _cb_hide_cursor_slider_chg(void *data, Evas_Object *obj, void *_event EINA_UNUSED) { Behavior_Ctx *ctx = data; Config *config = ctx->config; double value = elm_slider_value_get(obj); if (config->hide_cursor == value) return; config->hide_cursor = value; config_save(config); } static void _add_cursors_option(Evas_Object *bx, Behavior_Ctx *ctx) { Evas_Object *lbl, *rd, *rdg, *layout; lbl = elm_label_add(bx); evas_object_size_hint_weight_set(lbl, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(lbl, 0.0, 0.0); elm_layout_text_set(lbl, NULL, _("Default cursor:")); elm_box_pack_end(bx, lbl); evas_object_show(lbl); /* Blinking Block */ rd = elm_radio_add(bx); evas_object_size_hint_weight_set(rd, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(rd, EVAS_HINT_FILL, 0.5); rdg = rd; elm_object_text_set(rd, _("Blinking Block")); elm_radio_state_value_set(rd, 1); layout = elm_layout_add(rd); theme_apply_elm(layout, ctx->config, "terminology/cursor"); evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_image_resizable_set(layout, EINA_FALSE, EINA_FALSE); elm_object_part_content_set(rd, "icon", layout); elm_box_pack_end(bx, rd); evas_object_show(rd); elm_layout_signal_emit(layout, "focus,out", "terminology"); elm_layout_signal_emit(layout, "focus,in", "terminology"); evas_object_smart_callback_add(rd, "changed", _cursors_changed_cb, ctx); /* Steady Block */ rd = elm_radio_add(bx); evas_object_size_hint_weight_set(rd, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(rd, EVAS_HINT_FILL, 0.5); elm_object_text_set(rd, _("Steady Block")); elm_radio_state_value_set(rd, 2); elm_radio_group_add(rd, rdg); layout = elm_layout_add(rd); theme_apply_elm(layout, ctx->config, "terminology/cursor"); evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_image_resizable_set(layout, EINA_FALSE, EINA_FALSE); elm_object_part_content_set(rd, "icon", layout); elm_box_pack_end(bx, rd); evas_object_show(rd); elm_layout_signal_emit(layout, "focus,out", "terminology"); elm_layout_signal_emit(layout, "focus,in,noblink", "terminology"); evas_object_smart_callback_add(rd, "changed", _cursors_changed_cb, ctx); /* Blinking Underline */ rd = elm_radio_add(bx); evas_object_size_hint_weight_set(rd, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(rd, EVAS_HINT_FILL, 0.5); elm_object_text_set(rd, _("Blinking Underline")); elm_radio_state_value_set(rd, 3); elm_radio_group_add(rd, rdg); layout = elm_layout_add(rd); theme_apply_elm(layout, ctx->config, "terminology/cursor_underline"); evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_image_resizable_set(layout, EINA_FALSE, EINA_FALSE); elm_object_part_content_set(rd, "icon", layout); elm_box_pack_end(bx, rd); evas_object_show(rd); elm_layout_signal_emit(layout, "focus,out", "terminology"); elm_layout_signal_emit(layout, "focus,in", "terminology"); evas_object_smart_callback_add(rd, "changed", _cursors_changed_cb, ctx); /* Steady Underline */ rd = elm_radio_add(bx); evas_object_size_hint_weight_set(rd, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(rd, EVAS_HINT_FILL, 0.5); elm_object_text_set(rd, _("Steady Underline")); elm_radio_state_value_set(rd, 4); elm_radio_group_add(rd, rdg); layout = elm_layout_add(rd); theme_apply_elm(layout, ctx->config, "terminology/cursor_underline"); evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_image_resizable_set(layout, EINA_FALSE, EINA_FALSE); elm_object_part_content_set(rd, "icon", layout); elm_box_pack_end(bx, rd); evas_object_show(rd); elm_layout_signal_emit(layout, "focus,out", "terminology"); elm_layout_signal_emit(layout, "focus,in,noblink", "terminology"); evas_object_smart_callback_add(rd, "changed", _cursors_changed_cb, ctx); /* Blinking Bar */ rd = elm_radio_add(bx); evas_object_size_hint_weight_set(rd, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(rd, EVAS_HINT_FILL, 0.5); elm_object_text_set(rd, _("Blinking Bar")); elm_radio_state_value_set(rd, 5); elm_radio_group_add(rd, rdg); layout = elm_layout_add(rd); theme_apply_elm(layout, ctx->config, "terminology/cursor_bar"); evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_image_resizable_set(layout, EINA_FALSE, EINA_FALSE); elm_object_part_content_set(rd, "icon", layout); elm_box_pack_end(bx, rd); evas_object_show(rd); elm_layout_signal_emit(layout, "focus,out", "terminology"); elm_layout_signal_emit(layout, "focus,in", "terminology"); evas_object_smart_callback_add(rd, "changed", _cursors_changed_cb, ctx); /* Steady Bar */ rd = elm_radio_add(bx); evas_object_size_hint_weight_set(rd, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(rd, EVAS_HINT_FILL, 0.5); elm_object_text_set(rd, _("Steady Bar")); elm_radio_state_value_set(rd, 6); elm_radio_group_add(rd, rdg); layout = elm_layout_add(rd); theme_apply_elm(layout, ctx->config, "terminology/cursor_bar"); evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_image_resizable_set(layout, EINA_FALSE, EINA_FALSE); elm_object_part_content_set(rd, "icon", layout); elm_box_pack_end(bx, rd); evas_object_show(rd); elm_layout_signal_emit(layout, "focus,out", "terminology"); elm_layout_signal_emit(layout, "focus,in,noblink", "terminology"); evas_object_smart_callback_add(rd, "changed", _cursors_changed_cb, ctx); elm_radio_value_set(rdg, 1 + 2 * ctx->config->cursor_shape + (ctx->config->disable_cursor_blink ? 1 : 0)); } void options_behavior(Evas_Object *opbox, Evas_Object *term) { Config *config = termio_config_get(term); Evas_Object *o, *bx, *sc, *frame, *lbl; int w, h; const char *tooltip; Behavior_Ctx *ctx; termio_size_get(term, &w, &h); ctx = calloc(1, sizeof(*ctx)); assert(ctx); ctx->config = config; ctx->term = term; frame = o = elm_frame_add(opbox); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_object_text_set(o, _("Behavior")); elm_box_pack_end(opbox, o); evas_object_show(o); evas_object_event_callback_add(o, EVAS_CALLBACK_DEL, _parent_del_cb, ctx); sc = o = elm_scroller_add(opbox); elm_scroller_content_min_limit(sc, EINA_TRUE, EINA_FALSE); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_object_content_set(frame, o); evas_object_show(o); bx = o = elm_box_add(opbox); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.0); elm_object_content_set(sc, o); evas_object_show(o); #define SEPARATOR \ do { \ o = elm_separator_add(bx); \ evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); \ evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); \ elm_separator_horizontal_set(o, EINA_TRUE); \ elm_box_pack_end(bx, o); \ evas_object_show(o); \ } while (0) #define CX(_lbl, _cfg_name, _inv) \ do { \ o = elm_check_add(bx); \ evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); \ evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); \ elm_object_text_set(o, _lbl); \ elm_check_state_set(o, _inv ? !config->_cfg_name : config->_cfg_name); \ elm_box_pack_end(bx, o); \ evas_object_show(o); \ evas_object_smart_callback_add(o, "changed", \ _cb_op_behavior_##_cfg_name, ctx); \ } while (0) CX(_("Scroll to bottom on new content"), jump_on_change, 0); CX(_("Scroll to bottom when a key is pressed"), jump_on_keypress, 0); SEPARATOR; _add_cursors_option(bx, ctx); SEPARATOR; lbl = elm_label_add(bx); evas_object_size_hint_weight_set(lbl, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(lbl, 0.0, 0.0); elm_layout_text_set(lbl, NULL, _("Active Links:")); elm_box_pack_end(bx, lbl); evas_object_show(lbl); CX(_("On emails"), active_links_email, 0); CX(_("On file paths"), active_links_file, 0); CX(_("On URLs"), active_links_url, 0); CX(_("Based on escape codes"), active_links_escape, 0); SEPARATOR; CX(_("React to key presses"), flicker_on_key, 0); if (!multisense_available) { lbl = elm_label_add(bx); evas_object_size_hint_weight_set(lbl, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(lbl, 0.0, 0.5); elm_box_pack_before(bx, lbl, o); elm_object_text_set(lbl, _("Audio Support for key presses DISABLED!")); evas_object_show(lbl); } CX(_("Visual Bell"), disable_visual_bell, 1); CX(_("Bell rings"), bell_rings, 0); CX(_("Urgent Bell"), urg_bell, 0); CX(_("Multiple instances, one process"), multi_instance, 0); CX(_("Set TERM to xterm-256color"), xterm_256color, 0); CX(_("BackArrow sends Del (instead of BackSpace)"), erase_is_del, 0); CX(_("Drag & drop links"), drag_links, 0); CX(_("Start as login shell"), login_shell, 0); CX(_("Focus split under the Mouse"), mouse_over_focus, 0); CX(_("Focus-related visuals"), disable_focus_visuals, 1); CX(_("Gravatar integration"), gravatar, 0); CX(_("Show tabs"), notabs, 1); CX(_("Always show miniview"), mv_always_show, 0); CX(_("Enable special Terminology escape codes"), ty_escapes, 0); CX(_("Open new terminals in current working directory"), changedir_to_current, 0); CX(_("Treat Emojis as double-width characters"), emoji_dbl_width, 0); #undef CX SEPARATOR; o = elm_check_add(bx); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); elm_object_text_set(o, _("Always open at size:")); elm_check_state_set(o, config->custom_geometry); elm_box_pack_end(bx, o); evas_object_show(o); evas_object_smart_callback_add(o, "changed", _cb_op_behavior_custom_geometry, ctx); ctx->op_wh_current = o = elm_button_add(bx); evas_object_size_hint_weight_set(o, 0.0, 0.0); evas_object_size_hint_align_set(o, 0.0, 0.5); elm_object_text_set(o, _("Set Current:")); elm_box_pack_end(bx, o); evas_object_show(o); elm_object_disabled_set(o, !config->custom_geometry); evas_object_smart_callback_add(o, "clicked", _cb_op_behavior_custom_geometry_current_set, ctx); o = elm_label_add(bx); evas_object_size_hint_weight_set(o, 0.0, 0.0); evas_object_size_hint_align_set(o, 0.0, 0.5); elm_object_text_set(o, _("Width:")); elm_box_pack_end(bx, o); evas_object_show(o); ctx->op_w = o = elm_spinner_add(bx); elm_spinner_editable_set(o, EINA_TRUE); elm_spinner_min_max_set(o, 2.0, 350.0); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); if (config->custom_geometry) elm_spinner_value_set(o, config->cg_width); else elm_spinner_value_set(o, w); elm_object_disabled_set(o, !config->custom_geometry); elm_box_pack_end(bx, o); evas_object_show(o); evas_object_smart_callback_add(o, "changed", _cb_op_behavior_cg_width, ctx); o = elm_label_add(bx); evas_object_size_hint_weight_set(o, 0.0, 0.0); evas_object_size_hint_align_set(o, 0.0, 0.5); elm_object_text_set(o, _("Height:")); elm_box_pack_end(bx, o); evas_object_show(o); ctx->op_h = o = elm_spinner_add(bx); elm_spinner_editable_set(o, EINA_TRUE); elm_spinner_min_max_set(o, 1.0, 150.0); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); if (config->custom_geometry) elm_spinner_value_set(o, config->cg_height); else elm_spinner_value_set(o, h); elm_object_disabled_set(o, !config->custom_geometry); elm_box_pack_end(bx, o); evas_object_show(o); evas_object_smart_callback_add(o, "changed", _cb_op_behavior_cg_height, ctx); SEPARATOR; o = elm_label_add(bx); evas_object_size_hint_weight_set(o, 0.0, 0.0); evas_object_size_hint_align_set(o, 0.0, 0.5); elm_object_text_set(o, _("Scrollback:")); elm_box_pack_end(bx, o); evas_object_show(o); o = elm_slider_add(bx); elm_slider_indicator_format_function_set(o, sback_indicator_units_format, (void(*)(char*))eina_stringshare_del); elm_slider_units_format_function_set(o, sback_units_format, (void(*)(char*))eina_stringshare_del); elm_slider_span_size_set(o, 40); elm_slider_step_set(o, 1); /* http://graphics.stanford.edu/~seander/bithacks.html#IntegerLogFloat */ union { float v; int c; } u; u.v = config->scrollback; u.c = (u.c >> 23) - 127; elm_slider_min_max_set(o, 0.0, 17.0); elm_slider_value_set(o, u.c); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.0); elm_box_pack_end(bx, o); evas_object_show(o); evas_object_smart_callback_add(o, "delay,changed", _cb_op_behavior_sback_chg, ctx); SEPARATOR; o = elm_label_add(bx); evas_object_size_hint_weight_set(o, 0.0, 0.0); evas_object_size_hint_align_set(o, 0.0, 0.5); elm_object_text_set(o, _("Tab zoom/switch animation time:")); tooltip = _("Set the time of the animation that
" "takes places on tab switches,
" "be them by key binding, mouse
" "wheel or tabs panel mouse move"); elm_object_tooltip_text_set(o, tooltip); elm_box_pack_end(bx, o); evas_object_show(o); o = elm_slider_add(bx); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.0); elm_slider_span_size_set(o, 40); elm_slider_unit_format_set(o, _("%1.1f s")); elm_slider_indicator_format_set(o, _("%1.1f s")); elm_slider_min_max_set(o, 0.0, 1.0); elm_slider_value_set(o, config->tab_zoom); elm_box_pack_end(bx, o); evas_object_show(o); evas_object_smart_callback_add(o, "delay,changed", _cb_op_behavior_tab_zoom_slider_chg, ctx); evas_object_size_hint_weight_set(opbox, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(opbox, EVAS_HINT_FILL, EVAS_HINT_FILL); evas_object_show(o); SEPARATOR; o = elm_check_add(opbox); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5); elm_object_text_set(o, _("Translucent")); elm_object_text_set(o, _("Auto hide the mouse cursor when idle:")); elm_check_state_set(o, config->hide_cursor < CONFIG_CURSOR_IDLE_TIMEOUT_MAX); elm_box_pack_end(bx, o); evas_object_show(o); evas_object_smart_callback_add(o, "changed", _cb_op_hide_cursor_changed, ctx); o = elm_slider_add(bx); ctx->sld_hide_cursor = o; elm_object_tooltip_text_set(o, tooltip); evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0); evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.0); elm_slider_span_size_set(o, 40); elm_slider_unit_format_set(o, _("%1.1f s")); elm_slider_indicator_format_set(o, _("%1.1f s")); elm_slider_min_max_set(o, 0.0, CONFIG_CURSOR_IDLE_TIMEOUT_MAX); elm_slider_value_set(o, config->hide_cursor); elm_box_pack_end(bx, o); evas_object_show(o); evas_object_smart_callback_add(o, "delay,changed", _cb_hide_cursor_slider_chg, ctx); evas_object_size_hint_weight_set(opbox, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(opbox, EVAS_HINT_FILL, EVAS_HINT_FILL); evas_object_show(o); #undef SEPARATOR }