mirror of
https://github.com/weechat/weechat.git
synced 2026-07-09 03:03:12 +02:00
cf6aca1619
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
474 lines
12 KiB
C
474 lines
12 KiB
C
/*
|
|
* gui-curses-mouse.c - mouse functions for Curses GUI
|
|
*
|
|
* Copyright (C) 2011-2016 Sébastien Helleu <flashcode@flashtux.org>
|
|
*
|
|
* This file is part of WeeChat, the extensible chat client.
|
|
*
|
|
* WeeChat is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* WeeChat is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include "../../core/weechat.h"
|
|
#include "../../core/wee-config.h"
|
|
#include "../../core/wee-hook.h"
|
|
#include "../../core/wee-string.h"
|
|
#include "../../core/wee-utf8.h"
|
|
#include "../../plugins/plugin.h"
|
|
#include "../gui-bar.h"
|
|
#include "../gui-bar-window.h"
|
|
#include "../gui-buffer.h"
|
|
#include "../gui-chat.h"
|
|
#include "../gui-completion.h"
|
|
#include "../gui-focus.h"
|
|
#include "../gui-input.h"
|
|
#include "../gui-key.h"
|
|
#include "../gui-mouse.h"
|
|
#include "../gui-window.h"
|
|
|
|
|
|
#define MOUSE_CODE_BUTTON(code) ((code >= 32) && (code < 64))
|
|
#define MOUSE_CODE_MOTION(code) ((code >= 64) && (code < 96))
|
|
#define MOUSE_CODE_END(code) ((code == '#') || (code == '3') \
|
|
|| (code == '+') || (code == ';'))
|
|
|
|
char *gui_mouse_wheel_codes[][2] =
|
|
{ { "`", "wheelup" },
|
|
{ "p", "ctrl-wheelup" },
|
|
{ "h", "alt-wheelup" },
|
|
{ "x", "ctrl-alt-wheelup" },
|
|
{ "a", "wheeldown" },
|
|
{ "q", "ctrl-wheeldown" },
|
|
{ "i", "alt-wheeldown" },
|
|
{ "y", "ctrl-alt-wheeldown" },
|
|
{ NULL, NULL } };
|
|
char *gui_mouse_button_codes[][2] =
|
|
{ { " ", "button1" },
|
|
{ "\"", "button2" },
|
|
{ "!", "button3" },
|
|
{ "b", "button4" },
|
|
{ "c", "button5" },
|
|
{ "d", "button6" },
|
|
{ "e", "button7" },
|
|
{ "f", "button8" },
|
|
{ "g", "button9" },
|
|
{ "0", "ctrl-button1" },
|
|
{ "2", "ctrl-button2" },
|
|
{ "1", "ctrl-button3" },
|
|
{ "(", "alt-button1" },
|
|
{ "*", "alt-button2" },
|
|
{ ")", "alt-button3" },
|
|
{ "8", "ctrl-alt-button1" },
|
|
{ NULL, NULL } };
|
|
|
|
|
|
/*
|
|
* Enables mouse.
|
|
*/
|
|
|
|
void
|
|
gui_mouse_enable ()
|
|
{
|
|
gui_mouse_enabled = 1;
|
|
fprintf (stderr, "\033[?1005h\033[?1000h\033[?1002h");
|
|
fflush (stderr);
|
|
|
|
(void) hook_signal_send ("mouse_enabled",
|
|
WEECHAT_HOOK_SIGNAL_STRING, NULL);
|
|
}
|
|
|
|
/*
|
|
* Disables mouse.
|
|
*/
|
|
|
|
void
|
|
gui_mouse_disable ()
|
|
{
|
|
gui_mouse_enabled = 0;
|
|
fprintf (stderr, "\033[?1002l\033[?1000l\033[?1005l");
|
|
fflush (stderr);
|
|
|
|
(void) hook_signal_send ("mouse_disabled",
|
|
WEECHAT_HOOK_SIGNAL_STRING, NULL);
|
|
}
|
|
|
|
/*
|
|
* Displays state of mouse.
|
|
*/
|
|
|
|
void
|
|
gui_mouse_display_state ()
|
|
{
|
|
gui_chat_printf (NULL,
|
|
gui_mouse_enabled ?
|
|
_("Mouse is enabled") : _("Mouse is disabled"));
|
|
}
|
|
|
|
/*
|
|
* Initializes "grab mode".
|
|
*/
|
|
|
|
void
|
|
gui_mouse_grab_init (int area)
|
|
{
|
|
gui_mouse_grab = (area) ? 2 : 1;
|
|
}
|
|
|
|
/*
|
|
* Gets area for input, according to (x,y) of mouse event.
|
|
*
|
|
* For example: @item(buffer_nicklist)
|
|
* @bar(title)
|
|
* @chat
|
|
* @*
|
|
*/
|
|
|
|
const char *
|
|
gui_mouse_grab_event2input ()
|
|
{
|
|
struct t_gui_focus_info *focus_info;
|
|
static char area[256];
|
|
|
|
area[0] = '\0';
|
|
|
|
focus_info = gui_focus_get_info (gui_mouse_event_x[0],
|
|
gui_mouse_event_y[0]);
|
|
if (focus_info)
|
|
{
|
|
if (focus_info->bar_item)
|
|
{
|
|
snprintf (area, sizeof (area),
|
|
"@item(%s)", focus_info->bar_item);
|
|
}
|
|
else if (focus_info->bar_window)
|
|
{
|
|
snprintf (area, sizeof (area),
|
|
"@bar(%s)", ((focus_info->bar_window)->bar)->name);
|
|
}
|
|
else if (focus_info->chat)
|
|
{
|
|
snprintf (area, sizeof (area), "@chat");
|
|
}
|
|
else
|
|
{
|
|
snprintf (area, sizeof (area), "@*");
|
|
}
|
|
gui_focus_free_info (focus_info);
|
|
}
|
|
|
|
return area;
|
|
}
|
|
|
|
/*
|
|
* Ends "grab mode".
|
|
*/
|
|
|
|
void
|
|
gui_mouse_grab_end (const char *mouse_key)
|
|
{
|
|
char mouse_key_input[256];
|
|
|
|
/* insert mouse key in input */
|
|
if (gui_current_window->buffer->input)
|
|
{
|
|
if (gui_mouse_grab == 2)
|
|
{
|
|
/* mouse key with area */
|
|
snprintf (mouse_key_input, sizeof (mouse_key_input),
|
|
"%s:%s",
|
|
gui_mouse_grab_event2input (),
|
|
mouse_key);
|
|
}
|
|
else
|
|
{
|
|
/* mouse key without area */
|
|
snprintf (mouse_key_input, sizeof (mouse_key_input),
|
|
"%s", mouse_key);
|
|
}
|
|
gui_input_insert_string (gui_current_window->buffer,
|
|
mouse_key_input, -1);
|
|
gui_input_text_changed_modifier_and_signal (gui_current_window->buffer,
|
|
1, /* save undo */
|
|
1); /* stop completion */
|
|
}
|
|
|
|
gui_mouse_grab = 0;
|
|
}
|
|
|
|
/*
|
|
* Timer for grabbing mouse code.
|
|
*/
|
|
|
|
int
|
|
gui_mouse_event_timer_cb (const void *pointer, void *data, int remaining_calls)
|
|
{
|
|
/* make C compiler happy */
|
|
(void) pointer;
|
|
(void) data;
|
|
(void) remaining_calls;
|
|
|
|
gui_mouse_event_end ();
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* Initializes mouse event.
|
|
*/
|
|
|
|
void
|
|
gui_mouse_event_init ()
|
|
{
|
|
gui_mouse_event_pending = 1;
|
|
|
|
if (gui_mouse_event_timer)
|
|
unhook (gui_mouse_event_timer);
|
|
|
|
gui_mouse_event_timer = hook_timer (NULL,
|
|
CONFIG_INTEGER(config_look_mouse_timer_delay),
|
|
0, 1,
|
|
&gui_mouse_event_timer_cb, NULL, NULL);
|
|
}
|
|
|
|
/*
|
|
* Gets key name with a mouse code.
|
|
*/
|
|
|
|
const char *
|
|
gui_mouse_event_code2key (const char *code)
|
|
{
|
|
int i, x, y, code_utf8, length;
|
|
double diff_x, diff_y, distance, angle, pi4;
|
|
static char key[128];
|
|
const char *ptr_code;
|
|
|
|
key[0] = '\0';
|
|
|
|
/*
|
|
* mouse code must have at least:
|
|
* one code (for event) + X + Y == 3 bytes or 3 UTF-8 chars
|
|
*/
|
|
code_utf8 = utf8_is_valid (code, -1, NULL);
|
|
length = (code_utf8) ? utf8_strlen (code) : (int)strlen (code);
|
|
if (length < 3)
|
|
return NULL;
|
|
|
|
/* get coordinates and button */
|
|
if (code_utf8)
|
|
{
|
|
/* get coordinates using UTF-8 chars in code */
|
|
x = utf8_char_int (code + 1) - 33;
|
|
ptr_code = utf8_next_char (code + 1);
|
|
if (!ptr_code)
|
|
return NULL;
|
|
y = utf8_char_int (ptr_code) - 33;
|
|
}
|
|
else
|
|
{
|
|
/* get coordinates using ISO chars in code */
|
|
x = ((unsigned char)code[1]) - 33;
|
|
y = ((unsigned char)code[2]) - 33;
|
|
}
|
|
if (x < 0)
|
|
x = 0;
|
|
if (y < 0)
|
|
y = 0;
|
|
|
|
/* ignore code if it's motion/end code received as first event */
|
|
if ((gui_mouse_event_index == 0)
|
|
&& (MOUSE_CODE_MOTION(code[0]) || MOUSE_CODE_END(code[0])))
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
/* set data in "gui_mouse_event_xxx" */
|
|
gui_mouse_event_x[gui_mouse_event_index] = x;
|
|
gui_mouse_event_y[gui_mouse_event_index] = y;
|
|
if (gui_mouse_event_index == 0)
|
|
gui_mouse_event_button = code[0];
|
|
|
|
if (gui_mouse_event_index == 0)
|
|
gui_mouse_event_index = 1;
|
|
|
|
/*
|
|
* browse wheel codes, if one code is found, return event name immediately
|
|
*/
|
|
for (i = 0; gui_mouse_wheel_codes[i][0]; i++)
|
|
{
|
|
if (code[0] == gui_mouse_wheel_codes[i][0][0])
|
|
{
|
|
strcat (key, gui_mouse_wheel_codes[i][1]);
|
|
gui_mouse_event_x[1] = gui_mouse_event_x[0];
|
|
gui_mouse_event_y[1] = gui_mouse_event_y[0];
|
|
return key;
|
|
}
|
|
}
|
|
|
|
/* add name of button event */
|
|
for (i = 0; gui_mouse_button_codes[i][0]; i++)
|
|
{
|
|
if (gui_mouse_event_button == gui_mouse_button_codes[i][0][0])
|
|
{
|
|
strcat (key, gui_mouse_button_codes[i][1]);
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* nothing found, reset now or mouse will be stuck */
|
|
if (!key[0])
|
|
{
|
|
gui_mouse_event_reset ();
|
|
return NULL;
|
|
}
|
|
|
|
if (!MOUSE_CODE_END(code[0]))
|
|
{
|
|
strcat (key, "-event-");
|
|
if (MOUSE_CODE_MOTION(code[0])) {
|
|
strcat (key, "drag");
|
|
}
|
|
else
|
|
{
|
|
gui_mouse_event_x[1] = gui_mouse_event_x[0];
|
|
gui_mouse_event_y[1] = gui_mouse_event_y[0];
|
|
strcat (key, "down");
|
|
}
|
|
return key;
|
|
}
|
|
|
|
/*
|
|
* Mouse gesture: if (x,y) on release is different from (x,y) on click,
|
|
* compute distance and angle between 2 points.
|
|
*
|
|
* Distance: sqrt((x2-x1)²+(y2-y1)²)
|
|
* Angle : atan2(x1-x1, y2-y1)
|
|
*
|
|
* Angle:
|
|
*
|
|
* 3.14 pi
|
|
* /\
|
|
* -2.35 || 2.35 3/4 * pi
|
|
* ||
|
|
* -1.57 /----++----\ 1.57 1/2 * pi
|
|
* \----++----/
|
|
* ||
|
|
* -0.78 || 0.78 1/4 * pi
|
|
* \/
|
|
* 0.00 0
|
|
*
|
|
* Possible returned gestures are:
|
|
*
|
|
* key name | dist. | angle
|
|
* ---------------------------+-------+--------------------------
|
|
* buttonX-gesture-up | 3..19 | -2.35..-3.14 + 2.35..3.14
|
|
* buttonX-gesture-up-long | >= 20 |
|
|
* buttonX-gesture-down | 3..19 | -0.78..0.78
|
|
* buttonX-gesture-down-long | >= 20 |
|
|
* buttonX-gesture-left | 3..39 | -0.78..-2.35
|
|
* buttonX-gesture-left-long | >= 40 |
|
|
* buttonX-gesture-right | 3..39 | 0.78..2.35
|
|
* buttonX-gesture-right-long | >= 40 |
|
|
*/
|
|
|
|
if (key[0]
|
|
&& ((gui_mouse_event_x[0] != gui_mouse_event_x[1])
|
|
|| (gui_mouse_event_y[0] != gui_mouse_event_y[1])))
|
|
{
|
|
diff_x = gui_mouse_event_x[1] - gui_mouse_event_x[0];
|
|
diff_y = gui_mouse_event_y[1] - gui_mouse_event_y[0];
|
|
distance = sqrt ((diff_x * diff_x) + (diff_y * diff_y));
|
|
if (distance >= 3)
|
|
{
|
|
angle = atan2 ((double)(gui_mouse_event_x[1] - gui_mouse_event_x[0]),
|
|
(double)(gui_mouse_event_y[1] - gui_mouse_event_y[0]));
|
|
pi4 = 3.14159265358979 / 4;
|
|
if ((angle <= pi4 * (-3)) || (angle >= pi4 * 3))
|
|
{
|
|
strcat (key, "-gesture-up");
|
|
if (distance >= 20)
|
|
strcat (key, "-long");
|
|
}
|
|
else if ((angle >= pi4 * (-1)) && (angle <= pi4))
|
|
{
|
|
strcat (key, "-gesture-down");
|
|
if (distance >= 20)
|
|
strcat (key, "-long");
|
|
}
|
|
else if ((angle >= pi4 * (-3)) && (angle <= pi4 * (-1)))
|
|
{
|
|
strcat (key, "-gesture-left");
|
|
if (distance >= 40)
|
|
strcat (key, "-long");
|
|
}
|
|
else if ((angle >= pi4) && (angle <= pi4 * 3))
|
|
{
|
|
strcat (key, "-gesture-right");
|
|
if (distance >= 40)
|
|
strcat (key, "-long");
|
|
}
|
|
}
|
|
}
|
|
|
|
return key;
|
|
}
|
|
|
|
/*
|
|
* Ends mouse event.
|
|
*/
|
|
|
|
void
|
|
gui_mouse_event_end ()
|
|
{
|
|
const char *mouse_key;
|
|
int bare_event;
|
|
|
|
gui_mouse_event_pending = 0;
|
|
|
|
/* end mouse event timer */
|
|
if (gui_mouse_event_timer)
|
|
{
|
|
unhook (gui_mouse_event_timer);
|
|
gui_mouse_event_timer = NULL;
|
|
}
|
|
|
|
/* get key from mouse code */
|
|
mouse_key = gui_mouse_event_code2key (gui_key_combo_buffer);
|
|
if (mouse_key && mouse_key[0])
|
|
{
|
|
bare_event = string_match (mouse_key, "*-event-*", 1);
|
|
if (gui_mouse_grab)
|
|
{
|
|
if (!bare_event)
|
|
gui_mouse_grab_end (mouse_key);
|
|
}
|
|
else
|
|
{
|
|
/* execute command (if found) */
|
|
(void) gui_key_focus (mouse_key,
|
|
GUI_KEY_CONTEXT_MOUSE);
|
|
}
|
|
if (!bare_event)
|
|
gui_mouse_event_reset ();
|
|
}
|
|
|
|
gui_key_combo_buffer[0] = '\0';
|
|
}
|