/* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ #include "e.h" #define INITS #define ACT_GO(name) \ { \ act = e_action_add(#name); \ if (act) act->func.go = _e_actions_act_##name##_go; \ } #define ACT_FN_GO(act) \ static void _e_actions_act_##act##_go(E_Object *obj, const char *params) #define ACT_GO_MOUSE(name) \ { \ act = e_action_add(#name); \ if (act) act->func.go_mouse = _e_actions_act_##name##_go_mouse; \ } #define ACT_FN_GO_MOUSE(act) \ static void _e_actions_act_##act##_go_mouse(E_Object *obj, const char *params, Ecore_X_Event_Mouse_Button_Down *ev) #define ACT_GO_WHEEL(name) \ { \ act = e_action_add(#name); \ if (act) act->func.go_wheel = _e_actions_act_##name##_go_wheel; \ } #define ACT_FN_GO_WHEEL(act) \ static void _e_actions_act_##act##_go_wheel(E_Object *obj, const char *params, Ecore_X_Event_Mouse_Wheel *ev) #define ACT_GO_SIGNAL(name) \ { \ act = e_action_add(#name); \ if (act) act->func.go_signal = _e_actions_act_##name##_go_signal; \ } #define ACT_FN_GO_SIGNAL(act) \ static void _e_actions_act_##act##_go_signal(E_Object *obj, const char *params, const char *sig, const char *src) #define ACT_GO_KEY(name) \ { \ act = e_action_add(#name); \ if (act) act->func.go_key = _e_actions_act_##name##_go_key; \ } #define ACT_FN_GO_KEY(act) \ static void _e_actions_act_##act##_go_key(E_Object *obj, const char *params, Ecore_X_Event_Key_Down *ev) #define ACT_END(name) \ { \ act = e_action_add(#name); \ if (act) act->func.end = _e_actions_act_##name##_end; \ } #define ACT_FN_END(act) \ static void _e_actions_act_##act##_end(E_Object *obj, const char *params) #define ACT_END_MOUSE(name) \ { \ act = e_action_add(#name); \ if (act) act->func.end_mouse = _e_actions_act_##name##_end_mouse; \ } #define ACT_FN_END_MOUSE(act) \ static void _e_actions_act_##act##_end_mouse(E_Object *obj, const char *params, Ecore_X_Event_Mouse_Button_Up *ev) #define ACT_END_KEY(name) \ { \ act = e_action_add(#name); \ if (act) act->func.end_key = _e_actions_act_##name##_end_key; \ } #define ACT_FN_END_KEY(act) \ static void _e_actions_act_##act##_end_key(E_Object *obj, const char *params, Ecore_X_Event_Key_Up *ev) /* local subsystem functions */ static void _e_action_free(E_Action *act); static Evas_Bool _e_actions_cb_free(Evas_Hash *hash, const char *key, void *data, void *fdata); static E_Maximize _e_actions_maximize_parse(const char *maximize); static int _action_groups_sort_cb(void *d1, void *d2); /* to save writing this in N places - the sctions are defined here */ /***************************************************************************/ ACT_FN_GO(window_move) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; if (!((E_Border *)obj)->lock_user_location) e_border_act_move_begin((E_Border *)obj, NULL); } ACT_FN_GO_MOUSE(window_move) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; if (!((E_Border *)obj)->lock_user_location) e_border_act_move_begin((E_Border *)obj, ev); } ACT_FN_GO_SIGNAL(window_move) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; if (!((E_Border *)obj)->lock_user_location) { if ((params) && (!strcmp(params, "end"))) { e_border_signal_move_end((E_Border *)obj, sig, src); } else { if (((E_Border *)obj)->moving) e_border_signal_move_end((E_Border *)obj, sig, src); else e_border_signal_move_begin((E_Border *)obj, sig, src); } } } ACT_FN_END(window_move) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; e_border_act_move_end((E_Border *)obj, NULL); } ACT_FN_END_MOUSE(window_move) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; e_border_act_move_end((E_Border *)obj, ev); } /***************************************************************************/ ACT_FN_GO(window_resize) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; if (!((E_Border *)obj)->lock_user_size) e_border_act_resize_begin((E_Border *)obj, NULL); } ACT_FN_GO_MOUSE(window_resize) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; if (!((E_Border *)obj)->lock_user_size) e_border_act_resize_begin((E_Border *)obj, ev); } ACT_FN_GO_SIGNAL(window_resize) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; if (!((E_Border *)obj)->lock_user_size) { if ((params) && (!strcmp(params, "end"))) e_border_signal_resize_end((E_Border *)obj, params, sig, src); else { if (!params) params = ""; if (e_border_resizing_get((E_Border *)obj)) e_border_signal_resize_end((E_Border *)obj, params, sig, src); else e_border_signal_resize_begin((E_Border *)obj, params, sig, src); } } } ACT_FN_END(window_resize) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; e_border_act_resize_end((E_Border *)obj, NULL); } ACT_FN_END_MOUSE(window_resize) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) return; e_border_act_resize_end((E_Border *)obj, ev); } /***************************************************************************/ ACT_FN_GO(window_menu) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } e_border_act_menu_begin((E_Border *)obj, NULL, 0); } ACT_FN_GO_MOUSE(window_menu) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } e_border_act_menu_begin((E_Border *)obj, ev, 0); } ACT_FN_GO_KEY(window_menu) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } e_border_act_menu_begin((E_Border *)obj, NULL, 1); } /***************************************************************************/ ACT_FN_GO(window_raise) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_stacking) e_border_raise((E_Border *)obj); } /***************************************************************************/ ACT_FN_GO(window_lower) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_stacking) e_border_lower((E_Border *)obj); } /***************************************************************************/ ACT_FN_GO(window_close) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_close) e_border_act_close_begin((E_Border *)obj); } /***************************************************************************/ ACT_FN_GO(window_kill) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_close) e_border_act_kill_begin((E_Border *)obj); } /***************************************************************************/ ACT_FN_GO(window_sticky_toggle) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_sticky) { E_Border *bd; bd = (E_Border *)obj; if (bd->sticky) e_border_unstick(bd); else e_border_stick(bd); } } /***************************************************************************/ ACT_FN_GO(window_sticky) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_sticky) { E_Border *bd; bd = (E_Border *)obj; if (params) { if (atoi(params) == 1) e_border_stick(bd); else if (atoi(params) == 0) e_border_unstick(bd); } } } /***************************************************************************/ ACT_FN_GO(window_iconic_toggle) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_iconify) { E_Border *bd; bd = (E_Border *)obj; if (bd->iconic) e_border_uniconify(bd); else e_border_iconify(bd); } } /***************************************************************************/ ACT_FN_GO(window_iconic) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_iconify) { E_Border *bd; bd = (E_Border *)obj; if (params) { if (atoi(params) == 1) e_border_iconify(bd); else if (atoi(params) == 0) e_border_uniconify(bd); } } } /***************************************************************************/ ACT_FN_GO(window_fullscreen_toggle) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_fullscreen) { E_Border *bd; bd = (E_Border *)obj; if (bd->fullscreen) e_border_unfullscreen(bd); else if (params == 0 || *params == '\0') e_border_fullscreen(bd, e_config->fullscreen_policy); else if (! strcmp(params, "resize")) e_border_fullscreen(bd, E_FULLSCREEN_RESIZE); else if (! strcmp(params, "zoom")) e_border_fullscreen(bd, E_FULLSCREEN_ZOOM); } } /***************************************************************************/ ACT_FN_GO(window_fullscreen) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_fullscreen) { E_Border *bd; bd = (E_Border *)obj; if (params) { int v; char buf[32]; if (sscanf(params, "%i %20s", &v, buf) == 2) { if (v == 1) { if (buf == 0 || *buf == '\0') e_border_fullscreen(bd, e_config->fullscreen_policy); else if (! strcmp(buf, "resize")) e_border_fullscreen(bd, E_FULLSCREEN_RESIZE); else if (! strcmp(buf, "zoom")) e_border_fullscreen(bd, E_FULLSCREEN_ZOOM); } else if (v == 0) e_border_unfullscreen(bd); } } } } /***************************************************************************/ ACT_FN_GO(window_maximized_toggle) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_maximize) { E_Border *bd; bd = (E_Border *)obj; if ((bd->maximized & E_MAXIMIZE_TYPE) != E_MAXIMIZE_NONE) { if (!params) e_border_unmaximize(bd, E_MAXIMIZE_BOTH); else { E_Maximize max; max = _e_actions_maximize_parse(params); max &= E_MAXIMIZE_DIRECTION; if (max == E_MAXIMIZE_VERTICAL) { if (bd->maximized & E_MAXIMIZE_VERTICAL) e_border_unmaximize(bd, E_MAXIMIZE_VERTICAL); else goto maximize; } else if (max == E_MAXIMIZE_HORIZONTAL) { if (bd->maximized & E_MAXIMIZE_HORIZONTAL) e_border_unmaximize(bd, E_MAXIMIZE_HORIZONTAL); else goto maximize; } else e_border_unmaximize(bd, E_MAXIMIZE_BOTH); } } else { maximize: e_border_maximize(bd, _e_actions_maximize_parse(params)); } } } /***************************************************************************/ ACT_FN_GO(window_maximized) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_maximize) { E_Border *bd; bd = (E_Border *)obj; if (params) { E_Maximize max; int v, ret; char s1[32], s2[32]; max = (e_config->maximize_policy & E_MAXIMIZE_DIRECTION); ret = sscanf(params, "%i %20s %20s", &v, s1, s2); if (ret == 3) { if (!strcmp(s2, "horizontal")) max = E_MAXIMIZE_HORIZONTAL; else if (!strcmp(s2, "vertical")) max = E_MAXIMIZE_VERTICAL; else max = E_MAXIMIZE_BOTH; } if (ret > 1); { if (v == 1) { if (!strcmp(s1, "fullscreen")) e_border_maximize(bd, E_MAXIMIZE_FULLSCREEN | max); else if (!strcmp(s1, "smart")) e_border_maximize(bd, E_MAXIMIZE_SMART | max); else if (!strcmp(s1, "expand")) e_border_maximize(bd, E_MAXIMIZE_EXPAND | max); else if (!strcmp(s1, "fill")) e_border_maximize(bd, E_MAXIMIZE_FILL | max); else e_border_maximize(bd, (e_config->maximize_policy & E_MAXIMIZE_TYPE) | max); } else if (v == 0) e_border_unmaximize(bd, max); } } } } /***************************************************************************/ ACT_FN_GO(window_shaded_toggle) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_shade) { E_Border *bd; bd = (E_Border *)obj; if (bd->shaded) { if (!params) e_border_unshade(bd, E_DIRECTION_UP); else { if (!strcmp(params, "up")) e_border_unshade(bd, E_DIRECTION_UP); else if (!strcmp(params, "down")) e_border_unshade(bd, E_DIRECTION_DOWN); else if (!strcmp(params, "left")) e_border_unshade(bd, E_DIRECTION_LEFT); else if (!strcmp(params, "right")) e_border_unshade(bd, E_DIRECTION_RIGHT); else e_border_unshade(bd, E_DIRECTION_UP); } } else { if (!params) e_border_shade(bd, E_DIRECTION_UP); else { if (!strcmp(params, "up")) e_border_shade(bd, E_DIRECTION_UP); else if (!strcmp(params, "down")) e_border_shade(bd, E_DIRECTION_DOWN); else if (!strcmp(params, "left")) e_border_shade(bd, E_DIRECTION_LEFT); else if (!strcmp(params, "right")) e_border_shade(bd, E_DIRECTION_RIGHT); else e_border_shade(bd, E_DIRECTION_UP); } } } } /***************************************************************************/ ACT_FN_GO(window_shaded) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (!((E_Border *)obj)->lock_user_shade) { E_Border *bd; bd = (E_Border *)obj; if (params) { int v; char buf[32]; if (sscanf(params, "%i %20s", &v, buf) == 2) { if (v == 1) { if (!strcmp(buf, "up")) e_border_shade(bd, E_DIRECTION_UP); else if (!strcmp(buf, "down")) e_border_shade(bd, E_DIRECTION_DOWN); else if (!strcmp(buf, "left")) e_border_shade(bd, E_DIRECTION_LEFT); else if (!strcmp(buf, "right")) e_border_shade(bd, E_DIRECTION_RIGHT); } else if (v == 0) { if (!strcmp(buf, "up")) e_border_unshade(bd, E_DIRECTION_UP); else if (!strcmp(buf, "down")) e_border_unshade(bd, E_DIRECTION_DOWN); else if (!strcmp(buf, "left")) e_border_unshade(bd, E_DIRECTION_LEFT); else if (!strcmp(buf, "right")) e_border_unshade(bd, E_DIRECTION_RIGHT); } } } } } /***************************************************************************/ ACT_FN_GO(window_borderless_toggle) { if ((!obj) || (obj->type != E_BORDER_TYPE)) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (!((E_Border *)obj)->lock_border) { E_Border *bd; bd = (E_Border *)obj; if (bd->borderless) bd->borderless = 0; else bd->borderless = 1; bd->client.border.changed = 1; bd->changed = 1; } } /***************************************************************************/ ACT_FN_GO(window_move_by) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (params) { int dx, dy; if (sscanf(params, "%i %i", &dx, &dy) == 2) { E_Border *bd; bd = (E_Border *)obj; e_border_move(bd, bd->x + dx, bd->y + dy); if (e_config->focus_policy != E_FOCUS_CLICK) ecore_x_pointer_warp(bd->zone->container->win, bd->x + (bd->w / 2), bd->y + (bd->h / 2)); } } } /***************************************************************************/ ACT_FN_GO(window_move_to) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (params) { E_Border *bd; int x, y; char cx, cy; bd = (E_Border *)obj; if (sscanf(params, "%c%i %c%i", &cx, &x, &cy, &y) == 4) { // Nothing, both x and y is updated. } else if (sscanf(params, "* %c%i", &cy, &y) == 2) { // Updated y, reset x. x = bd->x; } else if (sscanf(params, "%c%i *", &cx, &x) == 2) { // Updated x, reset y. y = bd->y; } if (cx == '-') x = bd->zone->w - bd->w - x; if (cy == '-') y = bd->zone->h - bd->h - y; if ((x != bd->x) || (y != bd->y)) { e_border_move(bd, x, y); if (e_config->focus_policy != E_FOCUS_CLICK) ecore_x_pointer_warp(bd->zone->container->win, bd->x + (bd->w / 2), bd->y + (bd->h / 2)); } } } /***************************************************************************/ ACT_FN_GO(window_resize_by) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } if (params) { int dw, dh; if (sscanf(params, "%i %i", &dw, &dh) == 2) { E_Border *bd; bd = (E_Border *)obj; dw += bd->w; dh += bd->h; e_border_resize_limit(bd, &dw, &dh); e_border_resize(bd, dw, dh); if (e_config->focus_policy != E_FOCUS_CLICK) ecore_x_pointer_warp(bd->zone->container->win, bd->x + (dw / 2), bd->y + (dh / 2)); } } } /***************************************************************************/ ACT_FN_GO(window_drag_icon) { if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } { E_Border *bd; bd = (E_Border *)obj; bd->drag.start = 1; bd->drag.x = -1; bd->drag.y = -1; } } /***************************************************************************/ ACT_FN_GO(window_desk_move_by) { E_Border *bd; int x, y; if (!params) return; if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } bd = (E_Border *)obj; if ((!bd->zone) || (!bd->desk)) return; if (sscanf(params, "%d %d", &x, &y) == 2) { E_Desk *desk; int dx, dy; int to_x = 0, to_y = 0; e_desk_xy_get(bd->desk, &dx, &dy); to_x = dx + x; to_y = dy + y; while ((desk = e_desk_at_xy_get(bd->zone, to_x, to_y )) == NULL) { // here we are out of our desktop range while (to_x >= bd->zone->desk_x_count) { to_x -= bd->zone->desk_x_count; to_y++; } while (to_x < 0) { to_x += bd->zone->desk_x_count; to_y--; } while (to_y >= bd->zone->desk_y_count) { to_y -= bd->zone->desk_y_count; } while (to_y < 0) { to_y += bd->zone->desk_y_count; } } if (desk) { // switch desktop. Quite usefull from the interface point of view. e_zone_desk_flip_by(bd->zone, to_x - dx, to_y - dy); // send the border to the required desktop. e_border_desk_set(bd, desk); e_border_focus_set(bd, 1, 1); } } } /***************************************************************************/ ACT_FN_GO(window_desk_move_to) { E_Border *bd; int x, y; if (!params) return; if (!obj) obj = E_OBJECT(e_border_focused_get()); if (!obj) return; if (obj->type != E_BORDER_TYPE) { obj = E_OBJECT(e_border_focused_get()); if (!obj) return; } bd = (E_Border *)obj; if ((!bd->zone) || (!bd->desk)) return; if (sscanf(params, "%d %d", &x, &y) == 2) { E_Desk *desk; desk = e_desk_at_xy_get(bd->zone, x, y); if (desk) e_border_desk_set(bd, desk); } } /***************************************************************************/ static E_Zone * _e_actions_zone_get(E_Object *obj) { if (obj) { if (obj->type == E_MANAGER_TYPE) return e_util_zone_current_get((E_Manager *)obj); else if (obj->type == E_CONTAINER_TYPE) return e_util_zone_current_get(((E_Container *)obj)->manager); else if (obj->type == E_ZONE_TYPE) return e_util_zone_current_get(((E_Zone *)obj)->container->manager); else return e_util_zone_current_get(e_manager_current_get()); } return e_util_zone_current_get(e_manager_current_get()); } ACT_FN_GO(desk_flip_by) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { int dx = 0, dy = 0; if (sscanf(params, "%i %i", &dx, &dy) == 2) e_zone_desk_flip_by(zone, dx, dy); } } } /***************************************************************************/ ACT_FN_GO(desk_flip_to) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { int dx = 0, dy = 0; if (sscanf(params, "%i %i", &dx, &dy) == 2) e_zone_desk_flip_to(zone, dx, dy); } } } /***************************************************************************/ ACT_FN_GO(desk_linear_flip_by) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { int dx = 0; if (sscanf(params, "%i", &dx) == 1) e_zone_desk_linear_flip_by(zone, dx); } } } /***************************************************************************/ ACT_FN_GO(desk_linear_flip_to) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { int dx = 0; if (sscanf(params, "%i", &dx) == 1) e_zone_desk_linear_flip_to(zone, dx); } } } /***************************************************************************/ ACT_FN_GO(screen_send_to) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (!zone) zone = e_util_zone_current_get(e_manager_current_get()); if (zone) { if (params) { int scr = 0; if (sscanf(params, "%i", &scr) == 1) { E_Zone *zone2 = NULL; if (evas_list_count(e_manager_list()) > 1) { scr = scr % evas_list_count(e_manager_list()); if (scr < 0) scr += evas_list_count(e_manager_list()); zone2 = e_util_container_zone_number_get(scr, 0); } else { scr = scr % evas_list_count(zone->container->zones); if (scr < 0) scr += evas_list_count(zone->container->zones); zone2 = e_util_container_zone_number_get(0, scr); } if ((zone2) && (zone != zone2)) ecore_x_pointer_warp(zone2->container->win, zone2->x + (zone2->w / 2), zone2->y + (zone2->h / 2)); } } } } ACT_FN_GO(screen_send_by) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (!zone) zone = e_util_zone_current_get(e_manager_current_get()); if (zone) { if (params) { int scr = 0; if (sscanf(params, "%i", &scr) == 1) { E_Zone *zone2 = NULL; if (evas_list_count(e_manager_list()) > 1) { scr += zone->container->num; scr = scr % evas_list_count(e_manager_list()); if (scr < 0) scr += evas_list_count(e_manager_list()); zone2 = e_util_container_zone_number_get(scr, 0); } else { scr += zone->num; scr = scr % evas_list_count(zone->container->zones); if (scr < 0) scr += evas_list_count(zone->container->zones); zone2 = e_util_container_zone_number_get(0, scr); } if ((zone2) && (zone != zone2)) ecore_x_pointer_warp(zone2->container->win, zone2->x + (zone2->w / 2), zone2->y + (zone2->h / 2)); } } } } #define ZONE_DESK_ACTION(con_num, zone_num, zone, act) \ E_Zone *zone; \ if ((con_num < 0) || (zone_num < 0)) { \ Evas_List *l, *ll, *lll; \ E_Container *con; \ E_Manager *man; \ if ((con_num >= 0) && (zone_num < 0)) /* con=1 zone=all */ { \ con = e_util_container_number_get(con_num); \ for (l = con->zones; l; l = l->next) { \ zone = l->data; \ act; \ } } \ else if ((con_num < 0) && (zone_num >= 0)) /* con=all zone=1 */ { \ for (l = e_manager_list(); l; l = l->next) { \ man = l->data; \ for (ll = man->containers; ll; ll = ll->next) { \ con = ll->data; \ zone = e_container_zone_number_get(con, zone_num); \ if (zone) \ act; \ } } } \ else if ((con_num < 0) && (zone_num < 0)) /* con=all zone=all */ { \ for (l = e_manager_list(); l; l = l->next) { \ man = l->data; \ for (ll = man->containers; ll; ll = ll->next) { \ con = ll->data; \ for (lll = con->zones; lll; lll = lll->next) { \ zone = lll->data; \ act; \ } } } } } \ else { \ zone = e_util_container_zone_number_get(con_num, zone_num); \ if (zone) act; \ } /***************************************************************************/ ACT_FN_GO(zone_desk_flip_by) { if (params) { int con_num = 0, zone_num = 0; int dx = 0, dy = 0; if (sscanf(params, "%i %i %i %i", &con_num, &zone_num, &dx, &dy) == 4) { ZONE_DESK_ACTION(con_num, zone_num, zone, e_zone_desk_flip_by(zone, dx, dy)); } } } /***************************************************************************/ ACT_FN_GO(zone_desk_flip_to) { if (params) { int con_num = 0, zone_num = 0; int dx = 0, dy = 0; if (sscanf(params, "%i %i %i %i", &con_num, &zone_num, &dx, &dy) == 4) { ZONE_DESK_ACTION(con_num, zone_num, zone, e_zone_desk_flip_to(zone, dx, dy)); } } } /***************************************************************************/ ACT_FN_GO(zone_desk_linear_flip_by) { if (params) { int con_num = 0, zone_num = 0; int dx = 0; if (sscanf(params, "%i %i %i", &con_num, &zone_num, &dx) == 3) { ZONE_DESK_ACTION(con_num, zone_num, zone, e_zone_desk_linear_flip_by(zone, dx)); } } } /***************************************************************************/ ACT_FN_GO(zone_desk_linear_flip_to) { if (params) { int con_num = 0, zone_num = 0; int dx = 0; if (sscanf(params, "%i %i %i", &con_num, &zone_num, &dx) == 3) { ZONE_DESK_ACTION(con_num, zone_num, zone, e_zone_desk_linear_flip_to(zone, dx)); } } } /***************************************************************************/ static void _e_actions_cb_menu_end(void *data, E_Menu *m) { e_object_del(E_OBJECT(m)); } static E_Menu * _e_actions_menu_find(const char *name) { if (!strcmp(name, "main")) return e_int_menus_main_new(); #ifdef ENABLE_FAVORITES else if (!strcmp(name, "favorites")) return e_int_menus_favorite_apps_new(); #endif else if (!strcmp(name, "all")) return e_int_menus_all_apps_new(); else if (!strcmp(name, "clients")) return e_int_menus_clients_new(); else if (!strcmp(name, "lost_clients")) return e_int_menus_lost_clients_new(); else if (!strcmp(name, "configuration")) return e_int_menus_config_new(); else if (!strcmp(name, "system")) return e_int_menus_sys_new(); return NULL; } ACT_FN_GO(menu_show) { E_Zone *zone; /* menu is active - abort */ if (e_menu_grab_window_get()) return; zone = _e_actions_zone_get(obj); if (zone) { if (params) { E_Menu *m = NULL; m = _e_actions_menu_find(params); if (m) { int x, y; /* FIXME: this is a bit of a hack... setting m->con - bad hack */ m->zone = zone; ecore_x_pointer_xy_get(zone->container->win, &x, &y); e_menu_post_deactivate_callback_set(m, _e_actions_cb_menu_end, NULL); e_menu_activate_mouse(m, zone, x, y, 1, 1, E_MENU_POP_DIRECTION_DOWN, ecore_x_current_time_get()); } } } } ACT_FN_GO_MOUSE(menu_show) { E_Zone *zone; /* menu is active - abort */ if (e_menu_grab_window_get()) return; zone = _e_actions_zone_get(obj); if (zone) { if (params) { E_Menu *m = NULL; m = _e_actions_menu_find(params); if (m) { int x, y; /* FIXME: this is a bit of a hack... setting m->con - bad hack */ m->zone = zone; x = ev->root.x; y = ev->root.y; x -= zone->container->x; y -= zone->container->y; e_menu_post_deactivate_callback_set(m, _e_actions_cb_menu_end, NULL); e_menu_activate_mouse(m, zone, x, y, 1, 1, E_MENU_POP_DIRECTION_DOWN, ev->time); e_util_container_fake_mouse_up_all_later(zone->container); } } } } ACT_FN_GO_KEY(menu_show) { E_Zone *zone; /* menu is active - abort */ if (e_menu_grab_window_get()) return; zone = _e_actions_zone_get(obj); if (zone) { if (params) { E_Menu *m = NULL; m = _e_actions_menu_find(params); if (m) { int x, y; /* FIXME: this is a bit of a hack... setting m->con - bad hack */ m->zone = zone; ecore_x_pointer_xy_get(zone->container->win, &x, &y); e_menu_post_deactivate_callback_set(m, _e_actions_cb_menu_end, NULL); e_menu_activate_key(m, zone, x, y, 1, 1, E_MENU_POP_DIRECTION_DOWN); } } } } /***************************************************************************/ ACT_FN_GO(exec) { if (params) { Ecore_Exe *exe; exe = ecore_exe_run(params, NULL); e_exehist_add("action/exec", params); if (exe) ecore_exe_free(exe); } } /***************************************************************************/ ACT_FN_GO(app) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { E_App *a = NULL; char *p, *p2; p2 = alloca(strlen(params) + 1); strcpy(p2, params); p = strchr(p2, ' '); if (p) { *p = 0; if (!strcmp(p2, "file:")) a = e_app_file_find(p + 1); else if (!strcmp(p2, "name:")) a = e_app_name_find(p + 1); else if (!strcmp(p2, "generic:")) a = e_app_generic_find(p + 1); else if (!strcmp(p2, "exe:")) a = e_app_exe_find(p + 1); if (a) { e_zone_app_exec(zone, a); e_exehist_add("action/app", a->exe); } } } } } /***************************************************************************/ ACT_FN_GO(winlist) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { if (!strcmp(params, "next")) { if (!e_winlist_show(zone)) e_winlist_next(); } else if (!strcmp(params, "prev")) { if (!e_winlist_show(zone)) e_winlist_prev(); } } else { if (!e_winlist_show(zone)) e_winlist_next(); } } } ACT_FN_GO_MOUSE(winlist) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { if (!strcmp(params, "next")) { if (e_winlist_show(zone)) e_winlist_modifiers_set(ev->modifiers); else e_winlist_next(); } else if (!strcmp(params, "prev")) { if (e_winlist_show(zone)) e_winlist_modifiers_set(ev->modifiers); else e_winlist_prev(); } } else { if (e_winlist_show(zone)) e_winlist_modifiers_set(ev->modifiers); else e_winlist_next(); } } } ACT_FN_GO_KEY(winlist) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) { if (params) { if (!strcmp(params, "next")) { if (e_winlist_show(zone)) e_winlist_modifiers_set(ev->modifiers); else e_winlist_next(); } else if (!strcmp(params, "prev")) { if (e_winlist_show(zone)) e_winlist_modifiers_set(ev->modifiers); else e_winlist_prev(); } } else { if (e_winlist_show(zone)) e_winlist_modifiers_set(ev->modifiers); else e_winlist_next(); } } } ACT_FN_GO(desk_deskshow_toggle) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (!zone) zone = e_util_zone_current_get(e_manager_current_get()); if (zone) { e_desk_deskshow(zone); } } ACT_FN_GO(cleanup_windows) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (!zone) zone = e_util_zone_current_get(e_manager_current_get()); if (zone) e_place_zone_region_smart_cleanup(zone); } /***************************************************************************/ static E_Dialog *exit_dialog = NULL; static void _e_actions_cb_exit_dialog_ok(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(exit_dialog)); exit_dialog = NULL; e_sys_action_do(E_SYS_EXIT, NULL); } static void _e_actions_cb_exit_dialog_cancel(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(exit_dialog)); exit_dialog = NULL; } static void _e_actions_cb_exit_dialog_delete(E_Win *win) { E_Dialog *dia; dia = win->data; _e_actions_cb_exit_dialog_cancel(NULL, dia); } ACT_FN_GO(exit) { if (exit_dialog) e_object_del(E_OBJECT(exit_dialog)); exit_dialog = e_dialog_new(e_container_current_get(e_manager_current_get()), "E", "_exit_dialog"); if (!exit_dialog) return; e_win_delete_callback_set(exit_dialog->win, _e_actions_cb_exit_dialog_delete); e_dialog_title_set(exit_dialog, _("Are you sure you want to exit?")); e_dialog_text_set(exit_dialog, _("You requested to exit Enlightenment.
" "
" "Are you sure you want to exit?" )); e_dialog_icon_set(exit_dialog, "enlightenment/exit", 64); e_dialog_button_add(exit_dialog, _("Yes"), NULL, _e_actions_cb_exit_dialog_ok, NULL); e_dialog_button_add(exit_dialog, _("No"), NULL, _e_actions_cb_exit_dialog_cancel, NULL); e_dialog_button_focus_num(exit_dialog, 1); e_win_centered_set(exit_dialog->win, 1); e_dialog_show(exit_dialog); } /***************************************************************************/ ACT_FN_GO(restart) { e_sys_action_do(E_SYS_RESTART, NULL); } /***************************************************************************/ ACT_FN_GO(exit_now) { e_sys_action_do(E_SYS_EXIT_NOW, NULL); } /***************************************************************************/ static E_Dialog *logout_dialog = NULL; static void _e_actions_cb_logout_dialog_ok(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(logout_dialog)); logout_dialog = NULL; e_sys_action_do(E_SYS_LOGOUT, NULL); } static void _e_actions_cb_logout_dialog_cancel(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(logout_dialog)); logout_dialog = NULL; } static void _e_actions_cb_logout_dialog_delete(E_Win *win) { E_Dialog *dia; dia = win->data; _e_actions_cb_logout_dialog_cancel(NULL, dia); } ACT_FN_GO(logout) { if (logout_dialog) e_object_del(E_OBJECT(logout_dialog)); logout_dialog = e_dialog_new(e_container_current_get(e_manager_current_get()), "E", "_logout_dialog"); if (!logout_dialog) return; e_win_delete_callback_set(logout_dialog->win, _e_actions_cb_logout_dialog_delete); e_dialog_title_set(logout_dialog, _("Are you sure you want to log out?")); e_dialog_text_set(logout_dialog, _("You are about to log out.
" "
" "Are you sure you want to do this?" )); e_dialog_icon_set(logout_dialog, "enlightenment/logout", 64); e_dialog_button_add(logout_dialog, _("Yes"), NULL, _e_actions_cb_logout_dialog_ok, NULL); e_dialog_button_add(logout_dialog, _("No"), NULL, _e_actions_cb_logout_dialog_cancel, NULL); e_dialog_button_focus_num(logout_dialog, 1); e_win_centered_set(logout_dialog->win, 1); e_dialog_show(logout_dialog); } /***************************************************************************/ static E_Dialog *halt_dialog = NULL; static void _e_actions_cb_halt_dialog_ok(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(halt_dialog)); halt_dialog = NULL; e_sys_action_do(E_SYS_HALT, NULL); } static void _e_actions_cb_halt_dialog_cancel(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(halt_dialog)); halt_dialog = NULL; } static void _e_actions_cb_halt_dialog_delete(E_Win *win) { E_Dialog *dia; dia = win->data; _e_actions_cb_halt_dialog_cancel(NULL, dia); } ACT_FN_GO(halt) { if (halt_dialog) e_object_del(E_OBJECT(halt_dialog)); halt_dialog = e_dialog_new(e_container_current_get(e_manager_current_get()), "E", "_halt_dialog"); if (!halt_dialog) return; e_win_delete_callback_set(halt_dialog->win, _e_actions_cb_halt_dialog_delete); e_dialog_title_set(halt_dialog, _("Are you sure you want to turn off?")); e_dialog_text_set(halt_dialog, _("You requested to turn off your Computer.
" "
" "Are you sure you want to shut down?" )); e_dialog_icon_set(halt_dialog, "enlightenment/halt", 64); e_dialog_button_add(halt_dialog, _("Yes"), NULL, _e_actions_cb_halt_dialog_ok, NULL); e_dialog_button_add(halt_dialog, _("No"), NULL, _e_actions_cb_halt_dialog_cancel, NULL); e_dialog_button_focus_num(halt_dialog, 1); e_win_centered_set(halt_dialog->win, 1); e_dialog_show(halt_dialog); } /***************************************************************************/ static E_Dialog *reboot_dialog = NULL; static void _e_actions_cb_reboot_dialog_ok(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(reboot_dialog)); reboot_dialog = NULL; e_sys_action_do(E_SYS_REBOOT, NULL); } static void _e_actions_cb_reboot_dialog_cancel(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(reboot_dialog)); reboot_dialog = NULL; } static void _e_actions_cb_reboot_dialog_delete(E_Win *win) { E_Dialog *dia; dia = win->data; _e_actions_cb_reboot_dialog_cancel(NULL, dia); } ACT_FN_GO(reboot) { if (reboot_dialog) e_object_del(E_OBJECT(reboot_dialog)); reboot_dialog = e_dialog_new(e_container_current_get(e_manager_current_get()), "E", "_reboot_dialog"); if (!reboot_dialog) return; e_win_delete_callback_set(reboot_dialog->win, _e_actions_cb_reboot_dialog_delete); e_dialog_title_set(reboot_dialog, _("Are you sure you want to reboot?")); e_dialog_text_set(reboot_dialog, _("You requested to reboot your Computer.
" "
" "Are you sure you want to restart it?" )); e_dialog_icon_set(reboot_dialog, "enlightenment/reboot", 64); e_dialog_button_add(reboot_dialog, _("Yes"), NULL, _e_actions_cb_reboot_dialog_ok, NULL); e_dialog_button_add(reboot_dialog, _("No"), NULL, _e_actions_cb_reboot_dialog_cancel, NULL); e_dialog_button_focus_num(reboot_dialog, 1); e_win_centered_set(reboot_dialog->win, 1); e_dialog_show(reboot_dialog); } /***************************************************************************/ static E_Dialog *suspend_dialog = NULL; static void _e_actions_cb_suspend_dialog_ok(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(suspend_dialog)); suspend_dialog = NULL; e_sys_action_do(E_SYS_SUSPEND, NULL); } static void _e_actions_cb_suspend_dialog_cancel(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(suspend_dialog)); suspend_dialog = NULL; } static void _e_actions_cb_suspend_dialog_delete(E_Win *win) { E_Dialog *dia; dia = win->data; _e_actions_cb_suspend_dialog_cancel(NULL, dia); } ACT_FN_GO(suspend) { if (suspend_dialog) e_object_del(E_OBJECT(suspend_dialog)); suspend_dialog = e_dialog_new(e_container_current_get(e_manager_current_get()), "E", "_suspend_dialog"); if (!suspend_dialog) return; e_win_delete_callback_set(suspend_dialog->win, _e_actions_cb_suspend_dialog_delete); e_dialog_title_set(suspend_dialog, _("Are you sure you want to turn off?")); e_dialog_text_set(suspend_dialog, _("You requested to suspend your Computer.
" "
" "Are you sure you want to suspend?" )); e_dialog_icon_set(suspend_dialog, "enlightenment/suspend", 64); e_dialog_button_add(suspend_dialog, _("Yes"), NULL, _e_actions_cb_suspend_dialog_ok, NULL); e_dialog_button_add(suspend_dialog, _("No"), NULL, _e_actions_cb_suspend_dialog_cancel, NULL); e_dialog_button_focus_num(suspend_dialog, 1); e_win_centered_set(suspend_dialog->win, 1); e_dialog_show(suspend_dialog); } /***************************************************************************/ static E_Dialog *hibernate_dialog = NULL; static void _e_actions_cb_hibernate_dialog_ok(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(hibernate_dialog)); hibernate_dialog = NULL; e_sys_action_do(E_SYS_HIBERNATE, NULL); } static void _e_actions_cb_hibernate_dialog_cancel(void *data, E_Dialog *dia) { e_object_del(E_OBJECT(hibernate_dialog)); hibernate_dialog = NULL; } static void _e_actions_cb_hibernate_dialog_delete(E_Win *win) { E_Dialog *dia; dia = win->data; _e_actions_cb_hibernate_dialog_cancel(NULL, dia); } ACT_FN_GO(hibernate) { if (hibernate_dialog) e_object_del(E_OBJECT(hibernate_dialog)); hibernate_dialog = e_dialog_new(e_container_current_get(e_manager_current_get()), "E", "_hibernate_dialog"); if (!hibernate_dialog) return; e_win_delete_callback_set(hibernate_dialog->win, _e_actions_cb_hibernate_dialog_delete); e_dialog_title_set(hibernate_dialog, _("Are you sure you want to hibernate?")); e_dialog_text_set(hibernate_dialog, _("You requested to hibernate your Computer.
" "
" "Are you sure you want to suspend to disk?" )); e_dialog_icon_set(hibernate_dialog, "enlightenment/hibernate", 64); e_dialog_button_add(hibernate_dialog, _("Yes"), NULL, _e_actions_cb_hibernate_dialog_ok, NULL); e_dialog_button_add(hibernate_dialog, _("No"), NULL, _e_actions_cb_hibernate_dialog_cancel, NULL); e_dialog_button_focus_num(hibernate_dialog, 1); e_win_centered_set(hibernate_dialog->win, 1); e_dialog_show(hibernate_dialog); } /***************************************************************************/ ACT_FN_GO(pointer_resize_push) { E_Manager *man = NULL; if (!obj) return; if (obj->type == E_BORDER_TYPE) { E_Border *bd; bd = (E_Border *)obj; if ((bd->lock_user_size) || (bd->shaded) || (bd->shading) || (bd->fullscreen) || ((bd->maximized == E_MAXIMIZE_FULLSCREEN) && (!e_config->allow_manip))) return; if (bd->zone) man = bd->zone->container->manager; e_pointer_type_push(bd->pointer, bd, params); } } /***************************************************************************/ ACT_FN_GO(pointer_resize_pop) { E_Manager *man = NULL; if (!obj) return; if (obj->type == E_BORDER_TYPE) { E_Border *bd; bd = (E_Border *)obj; if ((bd->lock_user_size) || (bd->shaded) || (bd->shading) || (bd->fullscreen) || ((bd->maximized == E_MAXIMIZE_FULLSCREEN) && (!e_config->allow_manip))) return; if (bd->zone) man = (E_Manager *)bd->zone->container->manager; e_pointer_type_pop(bd->pointer, bd, params); } } /***************************************************************************/ ACT_FN_GO(exebuf) { E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone) e_exebuf_show(zone); } /***************************************************************************/ ACT_FN_GO(desk_lock) { /* E_Zone *zone; zone = _e_actions_zone_get(obj); if (zone)*/ e_desklock_show(); } /* local subsystem globals */ static Evas_Hash *actions = NULL; static Evas_List *action_names = NULL; static Evas_List *action_groups = NULL; /* externally accessible functions */ EAPI int e_actions_init(void) { E_Action *act; ACT_GO(window_move); e_action_predef_name_set(_("Window : Actions"), _("Move"), "window_move", NULL, NULL, 0); ACT_GO_MOUSE(window_move); ACT_GO_SIGNAL(window_move); ACT_END(window_move); ACT_END_MOUSE(window_move); /* window_resize */ ACT_GO(window_resize); e_action_predef_name_set(_("Window : Actions"), _("Resize"), "window_resize", NULL, NULL, 0); ACT_GO_MOUSE(window_resize); ACT_GO_SIGNAL(window_resize); ACT_END(window_resize); ACT_END_MOUSE(window_resize); /* window_menu */ ACT_GO(window_menu); e_action_predef_name_set(_("Menu"), _("Window Menu"), "window_menu", NULL, NULL, 0); ACT_GO_MOUSE(window_menu); ACT_GO_KEY(window_menu); /* window_raise */ ACT_GO(window_raise); e_action_predef_name_set(_("Window : Actions"), _("Raise"), "window_raise", NULL, NULL, 0); /* window_lower */ ACT_GO(window_lower); e_action_predef_name_set(_("Window : Actions"), _("Lower"), "window_lower", NULL, NULL, 0); /* window_close */ ACT_GO(window_close); e_action_predef_name_set(_("Window : Actions"), _("Close"), "window_close", NULL, NULL, 0); /* window_kill */ ACT_GO(window_kill); e_action_predef_name_set(_("Window : Actions"), _("Kill"), "window_kill", NULL, NULL, 0); /* window_sticky_toggle */ ACT_GO(window_sticky_toggle); e_action_predef_name_set(_("Window : State"), _("Sticky Mode Toggle"), "window_sticky_toggle", NULL, NULL, 0); ACT_GO(window_sticky); /* window_iconic_toggle */ ACT_GO(window_iconic_toggle); e_action_predef_name_set(_("Window : State"), _("Iconic Mode Toggle"), "window_iconic_toggle", NULL, NULL, 0); ACT_GO(window_iconic); /* window_fullscreen_toggle */ ACT_GO(window_fullscreen_toggle); e_action_predef_name_set(_("Window : State"), _("Fullscreen Mode Toggle"), "window_fullscreen_toggle", NULL, NULL, 0); ACT_GO(window_fullscreen); /* window_maximized_toggle */ ACT_GO(window_maximized_toggle); e_action_predef_name_set(_("Window : State"), _("Maximize"), "window_maximized_toggle", NULL, NULL, 0); e_action_predef_name_set(_("Window : State"), _("Maximize Vertically"), "window_maximized_toggle", "default vertical", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Maximize Horizontally"), "window_maximized_toggle", "default horizontal", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Maximize Fullscreen"), "window_maximized_toggle", "fullscreen", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Maximize Mode \"Smart\""), "window_maximized_toggle", "smart", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Maximize Mode \"Expand\""), "window_maximized_toggle", "expand", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Maximize Mode \"Fill\""), "window_maximized_toggle", "fill", NULL, 0); ACT_GO(window_maximized); /* window_shaded_toggle */ ACT_GO(window_shaded_toggle); e_action_predef_name_set(_("Window : State"), _("Shade Up Mode Toggle"), "window_shaded_toggle", "up", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Shade Down Mode Toggle"), "window_shaded_toggle", "down", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Shade Left Mode Toggle"), "window_shaded_toggle", "left", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Shade Right Mode Toggle"), "window_shaded_toggle", "right", NULL, 0); e_action_predef_name_set(_("Window : State"), _("Shade Mode Toggle"), "window_shaded_toggle", NULL, NULL, 0); ACT_GO(window_shaded); /* window_borderless_toggle */ ACT_GO(window_borderless_toggle); e_action_predef_name_set(_("Window : State"), _("Toggle Borderless State"), "window_borderless_toggle", NULL, NULL, 0); /* desk_flip_by */ ACT_GO(desk_flip_by); e_action_predef_name_set(_("Desktop"), _("Flip Desktop Left"), "desk_flip_by", "-1 0", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Flip Desktop Right"), "desk_flip_by", "1 0", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Flip Desktop Up"), "desk_flip_by", "0 -1", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Flip Desktop Down"), "desk_flip_by", "0 1", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Flip Desktop By..."), "desk_flip_by", NULL, "syntax: X-offset Y-offset, example: -1 0", 1); /* desk_deskshow_toggle */ ACT_GO(desk_deskshow_toggle); e_action_predef_name_set(_("Desktop"), _("Show The Desktop"), "desk_deskshow_toggle", NULL, NULL, 0); /* desk_linear_flip_to */ ACT_GO(desk_flip_to); e_action_predef_name_set(_("Desktop"), _("Flip Desktop To..."), "desk_flip_to", NULL, "syntax: X Y, example: 1 2", 1); /* desk_linear_flip_by */ ACT_GO(desk_linear_flip_by); e_action_predef_name_set(_("Desktop"), _("Flip Desktop Linearly..."), "desk_linear_flip_by", NULL, "syntax: N-offset, example: -2", 1); /* desk_linear_flip_to */ ACT_GO(desk_linear_flip_to); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 0"), "desk_linear_flip_to", "0", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 1"), "desk_linear_flip_to", "1", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 2"), "desk_linear_flip_to", "2", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 3"), "desk_linear_flip_to", "3", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 4"), "desk_linear_flip_to", "4", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 5"), "desk_linear_flip_to", "5", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 6"), "desk_linear_flip_to", "6", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 7"), "desk_linear_flip_to", "7", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 8"), "desk_linear_flip_to", "8", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 9"), "desk_linear_flip_to", "9", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 10"), "desk_linear_flip_to", "10", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop 11"), "desk_linear_flip_to", "11", NULL, 0); e_action_predef_name_set(_("Desktop"), _("Switch To Desktop..."), "desk_linear_flip_to", NULL, "syntax: N, example: 1", 1); /* screen_send_to */ ACT_GO(screen_send_to); e_action_predef_name_set(_("Screen"), _("Send Mouse To Screen 0"), "screen_send_to", "0", NULL, 0); e_action_predef_name_set(_("Screen"), _("Send Mouse To Screen 1"), "screen_send_to", "1", NULL, 0); e_action_predef_name_set(_("Screen"), _("Send Mouse To Screen..."), "screen_send_to", NULL, "syntax: N, example: 0", 1); /* screen_send_by */ ACT_GO(screen_send_by); e_action_predef_name_set(_("Screen"), _("Send Mouse Forward 1 Screen"), "screen_send_by", "1", NULL, 0); e_action_predef_name_set(_("Screen"), _("Send Mouse Back 1 Screen"), "screen_send_by", "-1", NULL, 0); e_action_predef_name_set(_("Screen"), _("Send Mouse Forward/Back Screens..."), "screen_send_by", NULL, "syntax: N-offset, example: -2", 1); /* window_move_to */ ACT_GO(window_move_to); e_action_predef_name_set(_("Window : Actions"), "Move To...", "window_move_to", NULL, "syntax: [ ,-]X [ ,-]Y or * [ ,-]Y or [ , -]X *, example: -1 1", 1); /* window_move_by */ ACT_GO(window_move_by); e_action_predef_name_set(_("Window : Actions"), "Move By...", "window_move_by", NULL, "syntax: X-offset Y-offset, example: -1 0", 1); /* window_resize_by */ ACT_GO(window_resize_by); e_action_predef_name_set(_("Window : Actions"), "Resize By...", "window_resize_by", NULL, "syntax: W H, example: 100 150", 1); /* window_drag_icon */ ACT_GO(window_drag_icon); e_action_predef_name_set(_("Window : Actions"), "Drag Icon...", "window_drag_icon", NULL, NULL, 0); /* window_desk_move_by */ ACT_GO(window_desk_move_by); e_action_predef_name_set(_("Window : Moving"), _("To Next Desktop"), "window_desk_move_by", "1 0", NULL, 0); e_action_predef_name_set(_("Window : Moving"), _("To Previous Desktop"), "window_desk_move_by", "-1 0", NULL, 0); e_action_predef_name_set(_("Window : Moving"), _("By Desktop #..."), "window_desk_move_by", NULL, "syntax: X-offset Y-offset, example: -2 2", 1); /* window_desk_move_to */ ACT_GO(window_desk_move_to); e_action_predef_name_set(_("Window : Moving"), _("To Desktop..."), "window_desk_move_to", NULL, "syntax: X Y, example: 0 1", 1); /* menu_show */ ACT_GO(menu_show); e_action_predef_name_set(_("Menu"), _("Show Main Menu"), "menu_show", "main", NULL, 0); #ifdef ENABLE_FAVORITES e_action_predef_name_set(_("Menu"), _("Show Favorites Menu"), "menu_show", "favorites", NULL, 0); #endif e_action_predef_name_set(_("Menu"), _("Show All Applications Menu"), "menu_show", "all", NULL, 0); e_action_predef_name_set(_("Menu"), _("Show Clients Menu"), "menu_show", "clients", NULL, 0); e_action_predef_name_set(_("Menu"), _("Show Menu..."), "menu_show", NULL, "syntax: MenuName, example: MyMenu", 1); ACT_GO_MOUSE(menu_show); ACT_GO_KEY(menu_show); /* exec */ ACT_GO(exec); e_action_predef_name_set(_("Launch"), _("Defined Command"), "exec", NULL, "syntax: CommandName, example: /usr/bin/xmms", 1); /* app */ ACT_GO(app); e_action_predef_name_set(_("Launch"), _("Application"), "app", NULL, "syntax: , example:", 1); /* winlist */ ACT_GO(winlist); e_action_predef_name_set(_("Window : List"), _("Next Window"), "winlist", "next", NULL, 0); e_action_predef_name_set(_("Window : List"), _("Previous Window"), "winlist", "prev", NULL, 0); ACT_GO_MOUSE(winlist); ACT_GO_KEY(winlist); ACT_GO(restart); e_action_predef_name_set(_("Enlightenment"), _("Restart"), "restart", NULL, NULL, 0); ACT_GO(exit); e_action_predef_name_set(_("Enlightenment"), _("Exit"), "exit", NULL, NULL, 0); ACT_GO(logout); e_action_predef_name_set(_("Enlightenment"), _("Log Out"), "logout", NULL, NULL, 0); ACT_GO(exit_now); e_action_predef_name_set(_("Enlightenment"), _("Exit Immediately"), "exit_now", NULL, NULL, 0); ACT_GO(halt); e_action_predef_name_set(_("System"), _("Shut Down"), "halt", NULL, NULL, 0); ACT_GO(reboot); e_action_predef_name_set(_("System"), _("Reboot"), "reboot", NULL, NULL, 0); ACT_GO(suspend); e_action_predef_name_set(_("System"), _("Suspend"), "suspend", NULL, NULL, 0); ACT_GO(hibernate); e_action_predef_name_set(_("System"), _("Suspend to Disk"), "hibernate", NULL, NULL, 0); ACT_GO(pointer_resize_push); ACT_GO(pointer_resize_pop); /* exebuf */ ACT_GO(exebuf); e_action_predef_name_set(_("Launch"), _("Run Command Dialog"), "exebuf", NULL, NULL, 0); /* desk_lock */ ACT_GO(desk_lock); e_action_predef_name_set(_("Desktop"), _("Desktop Lock"), "desk_lock", NULL, NULL, 0); /* cleanup_windows */ ACT_GO(cleanup_windows); e_action_predef_name_set(_("Desktop"), _("Cleanup Windows"), "cleanup_windows", NULL, NULL, 0); return 1; } EAPI int e_actions_shutdown(void) { e_action_predef_name_all_del(); action_names = evas_list_free(action_names); while (actions) { evas_hash_foreach(actions, _e_actions_cb_free, NULL); } return 1; } EAPI Evas_List * e_action_name_list(void) { return action_names; } EAPI E_Action * e_action_add(const char *name) { E_Action *act; act = e_action_find(name); if (!act) { act = E_OBJECT_ALLOC(E_Action, E_ACTION_TYPE, _e_action_free); if (!act) return NULL; act->name = name; actions = evas_hash_direct_add(actions, act->name, act); action_names = evas_list_append(action_names, name); } return act; } EAPI void e_action_del(const char *name) { E_Action *act; act = evas_hash_find(actions, name); if (act) _e_action_free(act); } EAPI E_Action * e_action_find(const char *name) { E_Action *act; act = evas_hash_find(actions, name); return act; } EAPI void e_action_predef_name_set(const char *act_grp, const char *act_name, const char *act_cmd, const char *act_params, const char *param_example, int editable) { E_Action_Group *actg = NULL; E_Action_Description *actd = NULL; Evas_List *l; if (!act_grp || !act_name) return; for (l = action_groups; l; l = l->next) { actg = l->data; if (!strcmp(actg->act_grp, act_grp)) break; actg = NULL; } if (!actg) { actg = E_NEW(E_Action_Group, 1); if (!actg) return; actg->act_grp = evas_stringshare_add(act_grp); actg->acts = NULL; action_groups = evas_list_append(action_groups, actg); action_groups = evas_list_sort(action_groups, evas_list_count(action_groups), _action_groups_sort_cb); } for (l = actg->acts; l; l = l->next) { actd = l->data; if (!strcmp(actd->act_name, act_name)) break; actd = NULL; } if (actd) return; actd = E_NEW(E_Action_Description, 1); if (!actd) return; actd->act_name = evas_stringshare_add(act_name); actd->act_cmd = act_cmd == NULL ? NULL : evas_stringshare_add(act_cmd); actd->act_params = act_params == NULL ? NULL : evas_stringshare_add(act_params); actd->param_example = param_example == NULL ? NULL : evas_stringshare_add(param_example); actd->editable = editable; actg->acts = evas_list_append(actg->acts, actd); } EAPI void e_action_predef_name_del(const char *act_grp, const char *act_name) { E_Action_Group *actg = NULL; E_Action_Description *actd = NULL; Evas_List *l; for (l = action_groups; l; l = l->next) { actg = l->data; if (!strcmp(actg->act_grp, act_grp)) break; actg = NULL; } if (!actg) return; for (l = actg->acts; l; l = l->next) { actd = l->data; if (!strcmp(actd->act_name, act_name)) { actg->acts = evas_list_remove(actg->acts, actd); if (actd->act_name) evas_stringshare_del(actd->act_name); if (actd->act_cmd) evas_stringshare_del(actd->act_cmd); if (actd->act_params) evas_stringshare_del(actd->act_params); if (actd->param_example) evas_stringshare_del(actd->param_example); E_FREE(actd); if (!evas_list_count(actg->acts)) { action_groups = evas_list_remove(action_groups, actg); if (actg->act_grp) evas_stringshare_del(actg->act_grp); E_FREE(actg); } break; } } } EAPI void e_action_predef_name_all_del() { E_Action_Group *actg = NULL; E_Action_Description *actd = NULL; while (action_groups) { actg = action_groups->data; while (actg->acts) { actd = actg->acts->data; if (actd->act_name) evas_stringshare_del(actd->act_name); if (actd->act_cmd) evas_stringshare_del(actd->act_cmd); if (actd->act_params) evas_stringshare_del(actd->act_params); if (actd->param_example) evas_stringshare_del(actd->param_example); E_FREE(actd); actg->acts = evas_list_remove_list(actg->acts, actg->acts); } if (actg->act_grp) evas_stringshare_del(actg->act_grp); E_FREE(actg); action_groups = evas_list_remove_list(action_groups, action_groups); } action_groups = NULL; } EAPI Evas_List * e_action_groups_get() { return action_groups; } /* local subsystem functions */ static void _e_action_free(E_Action *act) { actions = evas_hash_del(actions, act->name, act); action_names = evas_list_remove(action_names, act->name); free(act); } static Evas_Bool _e_actions_cb_free(Evas_Hash *hash __UNUSED__, const char *key __UNUSED__, void *data, void *fdata __UNUSED__) { e_object_del(E_OBJECT(data)); return 0; } static E_Maximize _e_actions_maximize_parse(const char *params) { E_Maximize max = 0; int ret; char s1[32], s2[32]; if (!params) return e_config->maximize_policy; ret = sscanf(params, "%20s %20s", s1, s2); if (ret == 2) { if (!strcmp(s2, "horizontal")) max = E_MAXIMIZE_HORIZONTAL; else if (!strcmp(s2, "vertical")) max = E_MAXIMIZE_VERTICAL; else max = E_MAXIMIZE_BOTH; } if (ret >= 1) { if (!strcmp(s1, "fullscreen")) max |= E_MAXIMIZE_FULLSCREEN; else if (!strcmp(s1, "smart")) max |= E_MAXIMIZE_SMART; else if (!strcmp(s1, "expand")) max |= E_MAXIMIZE_EXPAND; else if (!strcmp(s1, "fill")) max |= E_MAXIMIZE_FILL; else max |= (e_config->maximize_policy & E_MAXIMIZE_TYPE); } else max = e_config->maximize_policy; return max; } static int _action_groups_sort_cb(void *d1, void *d2) { E_Action_Group *g1, *g2; g1 = d1; g2 = d2; if (!g1) return 1; if (!g2) return -1; return strcmp(g1->act_grp, g2->act_grp); }