mirror of
https://github.com/weechat/weechat.git
synced 2026-07-05 01:03:14 +02:00
2019 lines
62 KiB
C
2019 lines
62 KiB
C
/*
|
|
* Copyright (c) 2003-2005 by FlashCode <flashcode@flashtux.org>
|
|
* See README for License detail, AUTHORS for developers list.
|
|
*
|
|
* This program 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/* gui-common.c: display functions, used by any GUI */
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
#include <time.h>
|
|
#include <curses.h>
|
|
|
|
#include "../common/weechat.h"
|
|
#include "gui.h"
|
|
#include "../common/command.h"
|
|
#include "../common/weeconfig.h"
|
|
#include "../common/history.h"
|
|
#include "../common/hotlist.h"
|
|
#include "../common/log.h"
|
|
#include "../common/utf8.h"
|
|
#include "../irc/irc.h"
|
|
|
|
|
|
int gui_init_ok = 0; /* = 1 if GUI is initialized */
|
|
int gui_ok = 0; /* = 1 if GUI is ok */
|
|
/* (0 when term size too small) */
|
|
int gui_add_hotlist = 1; /* 0 is for temporarly disable */
|
|
/* hotlist add for all buffers */
|
|
|
|
t_gui_window *gui_windows = NULL; /* pointer to first window */
|
|
t_gui_window *last_gui_window = NULL; /* pointer to last window */
|
|
t_gui_window *gui_current_window = NULL; /* pointer to current window */
|
|
|
|
t_gui_buffer *gui_buffers = NULL; /* pointer to first buffer */
|
|
t_gui_buffer *last_gui_buffer = NULL; /* pointer to last buffer */
|
|
t_gui_buffer *buffer_before_dcc = NULL; /* buffer before dcc switch */
|
|
t_gui_infobar *gui_infobar; /* pointer to infobar content */
|
|
|
|
char *gui_input_clipboard = NULL; /* buffer to store clipboard content */
|
|
|
|
/*
|
|
* gui_window_new: create a new window
|
|
*/
|
|
|
|
t_gui_window *
|
|
gui_window_new (int x, int y, int width, int height)
|
|
{
|
|
t_gui_window *new_window;
|
|
|
|
#ifdef DEBUG
|
|
wee_log_printf ("Creating new window (x:%d, y:%d, width:%d, height:%d)\n",
|
|
x, y, width, height);
|
|
#endif
|
|
if ((new_window = (t_gui_window *)(malloc (sizeof (t_gui_window)))))
|
|
{
|
|
new_window->win_x = x;
|
|
new_window->win_y = y;
|
|
new_window->win_width = width;
|
|
new_window->win_height = height;
|
|
|
|
new_window->win_chat_x = 0;
|
|
new_window->win_chat_y = 0;
|
|
new_window->win_chat_width = 0;
|
|
new_window->win_chat_height = 0;
|
|
new_window->win_chat_cursor_x = 0;
|
|
new_window->win_chat_cursor_y = 0;
|
|
|
|
new_window->win_nick_x = 0;
|
|
new_window->win_nick_y = 0;
|
|
new_window->win_nick_width = 0;
|
|
new_window->win_nick_height = 0;
|
|
new_window->win_nick_start = 0;
|
|
|
|
new_window->win_input_x = 0;
|
|
|
|
new_window->win_title = NULL;
|
|
new_window->win_chat = NULL;
|
|
new_window->win_nick = NULL;
|
|
new_window->win_status = NULL;
|
|
new_window->win_infobar = NULL;
|
|
new_window->win_input = NULL;
|
|
new_window->win_separator = NULL;
|
|
|
|
new_window->textview_chat = NULL;
|
|
new_window->textbuffer_chat = NULL;
|
|
new_window->texttag_chat = NULL;
|
|
new_window->textview_nicklist = NULL;
|
|
new_window->textbuffer_nicklist = NULL;
|
|
|
|
new_window->dcc_first = NULL;
|
|
new_window->dcc_selected = NULL;
|
|
new_window->dcc_last_displayed = NULL;
|
|
|
|
new_window->buffer = NULL;
|
|
|
|
new_window->first_line_displayed = 0;
|
|
new_window->start_line = NULL;
|
|
new_window->start_line_pos = 0;
|
|
|
|
/* add window to windows queue */
|
|
new_window->prev_window = last_gui_window;
|
|
if (gui_windows)
|
|
last_gui_window->next_window = new_window;
|
|
else
|
|
gui_windows = new_window;
|
|
last_gui_window = new_window;
|
|
new_window->next_window = NULL;
|
|
}
|
|
else
|
|
return NULL;
|
|
|
|
return new_window;
|
|
}
|
|
|
|
/*
|
|
* gui_buffer_new: create a new buffer in current window
|
|
*/
|
|
|
|
t_gui_buffer *
|
|
gui_buffer_new (t_gui_window *window, void *server, void *channel, int dcc,
|
|
int switch_to_buffer)
|
|
{
|
|
t_gui_buffer *new_buffer;
|
|
|
|
#ifdef DEBUG
|
|
wee_log_printf ("Creating new buffer\n");
|
|
#endif
|
|
|
|
/* use first buffer if no server was assigned to this buffer */
|
|
if (!dcc && gui_buffers && (!SERVER(gui_buffers)))
|
|
{
|
|
if (server)
|
|
((t_irc_server *)(server))->buffer = gui_buffers;
|
|
if (channel)
|
|
((t_irc_channel *)(channel))->buffer = gui_buffers;
|
|
gui_buffers->server = server;
|
|
gui_buffers->channel = channel;
|
|
if (cfg_log_auto_server)
|
|
log_start (gui_buffers);
|
|
return gui_buffers;
|
|
}
|
|
|
|
if ((new_buffer = (t_gui_buffer *)(malloc (sizeof (t_gui_buffer)))))
|
|
{
|
|
new_buffer->num_displayed = 0;
|
|
new_buffer->number = (last_gui_buffer) ? last_gui_buffer->number + 1 : 1;
|
|
|
|
/* assign server and channel to buffer */
|
|
new_buffer->server = server;
|
|
new_buffer->channel = channel;
|
|
new_buffer->dcc = dcc;
|
|
/* assign buffer to server and channel */
|
|
if (server && !channel)
|
|
SERVER(new_buffer)->buffer = new_buffer;
|
|
if (channel)
|
|
CHANNEL(new_buffer)->buffer = new_buffer;
|
|
|
|
if (!window->buffer)
|
|
{
|
|
window->buffer = new_buffer;
|
|
window->first_line_displayed = 1;
|
|
window->start_line = NULL;
|
|
window->start_line_pos = 0;
|
|
gui_calculate_pos_size (window);
|
|
gui_window_init_subwindows (window);
|
|
}
|
|
|
|
/* init lines */
|
|
new_buffer->lines = NULL;
|
|
new_buffer->last_line = NULL;
|
|
new_buffer->num_lines = 0;
|
|
new_buffer->line_complete = 1;
|
|
|
|
/* notify level */
|
|
new_buffer->notify_level = channel_get_notify_level (server, channel);
|
|
|
|
/* create/append to log file */
|
|
new_buffer->log_filename = NULL;
|
|
new_buffer->log_file = NULL;
|
|
if ((cfg_log_auto_server && BUFFER_IS_SERVER(new_buffer))
|
|
|| (cfg_log_auto_channel && BUFFER_IS_CHANNEL(new_buffer))
|
|
|| (cfg_log_auto_private && BUFFER_IS_PRIVATE(new_buffer)))
|
|
log_start (new_buffer);
|
|
|
|
/* init input buffer */
|
|
new_buffer->has_input = (new_buffer->dcc) ? 0 : 1;
|
|
if (new_buffer->has_input)
|
|
{
|
|
new_buffer->input_buffer_alloc = INPUT_BUFFER_BLOCK_SIZE;
|
|
new_buffer->input_buffer = (char *) malloc (INPUT_BUFFER_BLOCK_SIZE);
|
|
new_buffer->input_buffer[0] = '\0';
|
|
}
|
|
else
|
|
new_buffer->input_buffer = NULL;
|
|
new_buffer->input_buffer_size = 0;
|
|
new_buffer->input_buffer_length = 0;
|
|
new_buffer->input_buffer_pos = 0;
|
|
new_buffer->input_buffer_1st_display = 0;
|
|
|
|
/* init completion */
|
|
completion_init (&(new_buffer->completion));
|
|
|
|
/* init history */
|
|
new_buffer->history = NULL;
|
|
new_buffer->last_history = NULL;
|
|
new_buffer->ptr_history = NULL;
|
|
new_buffer->num_history = 0;
|
|
|
|
new_buffer->old_channel_buffer = NULL;
|
|
|
|
/* add buffer to buffers queue */
|
|
new_buffer->prev_buffer = last_gui_buffer;
|
|
if (gui_buffers)
|
|
last_gui_buffer->next_buffer = new_buffer;
|
|
else
|
|
gui_buffers = new_buffer;
|
|
last_gui_buffer = new_buffer;
|
|
new_buffer->next_buffer = NULL;
|
|
|
|
/* switch to new buffer */
|
|
if (switch_to_buffer)
|
|
gui_switch_to_buffer (window, new_buffer);
|
|
|
|
/* redraw buffer */
|
|
gui_redraw_buffer (new_buffer);
|
|
}
|
|
else
|
|
return NULL;
|
|
|
|
return new_buffer;
|
|
}
|
|
|
|
/*
|
|
* gui_buffer_clear: clear buffer content
|
|
*/
|
|
|
|
void
|
|
gui_buffer_clear (t_gui_buffer *buffer)
|
|
{
|
|
t_gui_window *ptr_win;
|
|
t_gui_line *ptr_line;
|
|
t_gui_message *ptr_message;
|
|
|
|
while (buffer->lines)
|
|
{
|
|
ptr_line = buffer->lines->next_line;
|
|
while (buffer->lines->messages)
|
|
{
|
|
ptr_message = buffer->lines->messages->next_message;
|
|
if (buffer->lines->messages->message)
|
|
free (buffer->lines->messages->message);
|
|
free (buffer->lines->messages);
|
|
buffer->lines->messages = ptr_message;
|
|
}
|
|
free (buffer->lines);
|
|
buffer->lines = ptr_line;
|
|
}
|
|
|
|
buffer->lines = NULL;
|
|
buffer->last_line = NULL;
|
|
buffer->num_lines = 0;
|
|
buffer->line_complete = 1;
|
|
|
|
for (ptr_win = gui_windows; ptr_win; ptr_win = ptr_win->next_window)
|
|
{
|
|
if (ptr_win->buffer == buffer)
|
|
{
|
|
ptr_win->first_line_displayed = 1;
|
|
ptr_win->start_line = NULL;
|
|
ptr_win->start_line_pos = 0;
|
|
}
|
|
}
|
|
|
|
gui_draw_buffer_chat (buffer, 1);
|
|
gui_draw_buffer_status (buffer, 0);
|
|
}
|
|
|
|
/*
|
|
* gui_buffer_clear_all: clear all buffers content
|
|
*/
|
|
|
|
void
|
|
gui_buffer_clear_all ()
|
|
{
|
|
t_gui_buffer *ptr_buffer;
|
|
|
|
for (ptr_buffer = gui_buffers; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
gui_buffer_clear (ptr_buffer);
|
|
}
|
|
|
|
/*
|
|
* gui_infobar_printf: display message in infobar
|
|
*/
|
|
|
|
void
|
|
gui_infobar_printf (int time_displayed, int color, char *message, ...)
|
|
{
|
|
static char buffer[1024];
|
|
va_list argptr;
|
|
t_gui_infobar *ptr_infobar;
|
|
char *pos, *buf2;
|
|
|
|
va_start (argptr, message);
|
|
vsnprintf (buffer, sizeof (buffer) - 1, message, argptr);
|
|
va_end (argptr);
|
|
|
|
buf2 = weechat_convert_encoding ((local_utf8) ?
|
|
cfg_look_charset_decode_iso : cfg_look_charset_decode_utf,
|
|
(cfg_look_charset_internal && cfg_look_charset_internal[0]) ?
|
|
cfg_look_charset_internal : local_charset,
|
|
buffer);
|
|
|
|
ptr_infobar = (t_gui_infobar *)malloc (sizeof (t_gui_infobar));
|
|
if (ptr_infobar)
|
|
{
|
|
ptr_infobar->color = color;
|
|
ptr_infobar->text = strdup (buf2);
|
|
pos = strchr (ptr_infobar->text, '\n');
|
|
if (pos)
|
|
pos[0] = '\0';
|
|
ptr_infobar->remaining_time = (time_displayed <= 0) ? -1 : time_displayed;
|
|
ptr_infobar->next_infobar = gui_infobar;
|
|
gui_infobar = ptr_infobar;
|
|
gui_draw_buffer_infobar (gui_current_window->buffer, 1);
|
|
}
|
|
else
|
|
wee_log_printf (_("Not enough memory for infobar message\n"));
|
|
|
|
free (buf2);
|
|
}
|
|
|
|
/*
|
|
* gui_window_free: delete a window
|
|
*/
|
|
|
|
void
|
|
gui_window_free (t_gui_window *window)
|
|
{
|
|
if (window->buffer && (window->buffer->num_displayed > 0))
|
|
window->buffer->num_displayed--;
|
|
|
|
/* remove window from windows list */
|
|
if (window->prev_window)
|
|
window->prev_window->next_window = window->next_window;
|
|
if (window->next_window)
|
|
window->next_window->prev_window = window->prev_window;
|
|
if (gui_windows == window)
|
|
gui_windows = window->next_window;
|
|
if (last_gui_window == window)
|
|
last_gui_window = window->prev_window;
|
|
|
|
free (window);
|
|
}
|
|
|
|
/*
|
|
* gui_infobar_remove: remove last displayed message in infobar
|
|
*/
|
|
|
|
void
|
|
gui_infobar_remove ()
|
|
{
|
|
t_gui_infobar *new_infobar;
|
|
|
|
if (gui_infobar)
|
|
{
|
|
new_infobar = gui_infobar->next_infobar;
|
|
if (gui_infobar->text)
|
|
free (gui_infobar->text);
|
|
free (gui_infobar);
|
|
gui_infobar = new_infobar;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_line_free: delete a line from a buffer
|
|
*/
|
|
|
|
void
|
|
gui_line_free (t_gui_line *line)
|
|
{
|
|
t_gui_window *ptr_win;
|
|
t_gui_message *ptr_message;
|
|
|
|
for (ptr_win = gui_windows; ptr_win; ptr_win = ptr_win->next_window)
|
|
{
|
|
if (ptr_win->start_line == line)
|
|
{
|
|
ptr_win->start_line = NULL;
|
|
ptr_win->start_line_pos = 0;
|
|
}
|
|
}
|
|
while (line->messages)
|
|
{
|
|
ptr_message = line->messages->next_message;
|
|
if (line->messages->message)
|
|
free (line->messages->message);
|
|
free (line->messages);
|
|
line->messages = ptr_message;
|
|
}
|
|
free (line);
|
|
}
|
|
|
|
/*
|
|
* gui_buffer_free: delete a buffer
|
|
*/
|
|
|
|
void
|
|
gui_buffer_free (t_gui_buffer *buffer, int switch_to_another)
|
|
{
|
|
t_gui_window *ptr_win;
|
|
t_gui_buffer *ptr_buffer;
|
|
t_gui_line *ptr_line;
|
|
int create_new;
|
|
|
|
create_new = (buffer->server || buffer->channel);
|
|
|
|
hotlist_remove_buffer (buffer);
|
|
if (hotlist_initial_buffer == buffer)
|
|
hotlist_initial_buffer = NULL;
|
|
|
|
if (buffer_before_dcc == buffer)
|
|
buffer_before_dcc = NULL;
|
|
|
|
for (ptr_buffer = gui_buffers; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
{
|
|
if (ptr_buffer->old_channel_buffer == buffer)
|
|
ptr_buffer->old_channel_buffer = NULL;
|
|
}
|
|
|
|
if (switch_to_another)
|
|
{
|
|
for (ptr_win = gui_windows; ptr_win; ptr_win = ptr_win->next_window)
|
|
{
|
|
if ((buffer == ptr_win->buffer) &&
|
|
((buffer->next_buffer) || (buffer->prev_buffer)))
|
|
gui_switch_to_previous_buffer (ptr_win);
|
|
}
|
|
}
|
|
|
|
/* decrease buffer number for all next buffers */
|
|
for (ptr_buffer = buffer->next_buffer; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
{
|
|
ptr_buffer->number--;
|
|
}
|
|
|
|
/* free lines and messages */
|
|
while (buffer->lines)
|
|
{
|
|
ptr_line = buffer->lines->next_line;
|
|
gui_line_free (buffer->lines);
|
|
buffer->lines = ptr_line;
|
|
}
|
|
|
|
/* close log if opened */
|
|
if (buffer->log_file)
|
|
log_end (buffer);
|
|
|
|
if (buffer->input_buffer)
|
|
free (buffer->input_buffer);
|
|
|
|
completion_free (&(buffer->completion));
|
|
|
|
history_buffer_free (buffer);
|
|
|
|
/* remove buffer from buffers list */
|
|
if (buffer->prev_buffer)
|
|
buffer->prev_buffer->next_buffer = buffer->next_buffer;
|
|
if (buffer->next_buffer)
|
|
buffer->next_buffer->prev_buffer = buffer->prev_buffer;
|
|
if (gui_buffers == buffer)
|
|
gui_buffers = buffer->next_buffer;
|
|
if (last_gui_buffer == buffer)
|
|
last_gui_buffer = buffer->prev_buffer;
|
|
|
|
for (ptr_win = gui_windows; ptr_win; ptr_win = ptr_win->next_window)
|
|
{
|
|
if (ptr_win->buffer == buffer)
|
|
ptr_win->buffer = NULL;
|
|
}
|
|
|
|
free (buffer);
|
|
|
|
/* always at least one buffer */
|
|
if (!gui_buffers && create_new && switch_to_another)
|
|
(void) gui_buffer_new (gui_windows, NULL, NULL, 0, 1);
|
|
}
|
|
|
|
/*
|
|
* gui_new_line: create new line for a buffer
|
|
*/
|
|
|
|
t_gui_line *
|
|
gui_new_line (t_gui_buffer *buffer)
|
|
{
|
|
t_gui_line *new_line, *ptr_line;
|
|
|
|
if ((new_line = (t_gui_line *) malloc (sizeof (struct t_gui_line))))
|
|
{
|
|
new_line->length = 0;
|
|
new_line->length_align = 0;
|
|
new_line->log_write = 1;
|
|
new_line->line_with_message = 0;
|
|
new_line->line_with_highlight = 0;
|
|
new_line->messages = NULL;
|
|
new_line->last_message = NULL;
|
|
if (!buffer->lines)
|
|
buffer->lines = new_line;
|
|
else
|
|
buffer->last_line->next_line = new_line;
|
|
new_line->prev_line = buffer->last_line;
|
|
new_line->next_line = NULL;
|
|
buffer->last_line = new_line;
|
|
buffer->num_lines++;
|
|
}
|
|
else
|
|
{
|
|
wee_log_printf (_("Not enough memory for new line\n"));
|
|
return NULL;
|
|
}
|
|
|
|
/* remove one line if necessary */
|
|
if ((cfg_history_max_lines > 0)
|
|
&& (buffer->num_lines > cfg_history_max_lines))
|
|
{
|
|
if (buffer->last_line == buffer->lines)
|
|
buffer->last_line = NULL;
|
|
ptr_line = buffer->lines->next_line;
|
|
gui_line_free (buffer->lines);
|
|
buffer->lines = ptr_line;
|
|
ptr_line->prev_line = NULL;
|
|
buffer->num_lines--;
|
|
//if (buffer->first_line_displayed)
|
|
gui_draw_buffer_chat (buffer, 1);
|
|
}
|
|
|
|
return new_line;
|
|
}
|
|
|
|
/*
|
|
* gui_new_message: create a new message for last line of a buffer
|
|
*/
|
|
|
|
t_gui_message *
|
|
gui_new_message (t_gui_buffer *buffer)
|
|
{
|
|
t_gui_message *new_message;
|
|
|
|
if ((new_message = (t_gui_message *) malloc (sizeof (struct t_gui_message))))
|
|
{
|
|
if (!buffer->last_line->messages)
|
|
buffer->last_line->messages = new_message;
|
|
else
|
|
buffer->last_line->last_message->next_message = new_message;
|
|
new_message->prev_message = buffer->last_line->last_message;
|
|
new_message->next_message = NULL;
|
|
buffer->last_line->last_message = new_message;
|
|
}
|
|
else
|
|
{
|
|
wee_log_printf (_("Not enough memory for new message\n"));
|
|
return NULL;
|
|
}
|
|
return new_message;
|
|
}
|
|
|
|
/*
|
|
* gui_input_optimize_buffer_size: optimize input buffer size by adding
|
|
* or deleting data block (predefined size)
|
|
*/
|
|
|
|
void
|
|
gui_input_optimize_buffer_size (t_gui_buffer *buffer)
|
|
{
|
|
int optimal_size;
|
|
|
|
if (buffer->has_input)
|
|
{
|
|
optimal_size = ((buffer->input_buffer_size / INPUT_BUFFER_BLOCK_SIZE) *
|
|
INPUT_BUFFER_BLOCK_SIZE) + INPUT_BUFFER_BLOCK_SIZE;
|
|
if (buffer->input_buffer_alloc != optimal_size)
|
|
{
|
|
buffer->input_buffer_alloc = optimal_size;
|
|
buffer->input_buffer = realloc (buffer->input_buffer, optimal_size);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_action_dcc: execute an action on a DCC after a user input
|
|
*/
|
|
|
|
void
|
|
gui_input_action_dcc (t_gui_window *window, char action)
|
|
{
|
|
t_irc_dcc *dcc_selected, *ptr_dcc, *ptr_dcc_next;
|
|
|
|
dcc_selected = (window->dcc_selected) ?
|
|
(t_irc_dcc *) window->dcc_selected : dcc_list;
|
|
|
|
switch (action)
|
|
{
|
|
/* accept DCC */
|
|
case 'a':
|
|
case 'A':
|
|
if (dcc_selected
|
|
&& (DCC_IS_RECV(dcc_selected->status))
|
|
&& (dcc_selected->status == DCC_WAITING))
|
|
{
|
|
dcc_accept (dcc_selected);
|
|
}
|
|
break;
|
|
/* cancel DCC */
|
|
case 'c':
|
|
case 'C':
|
|
if (dcc_selected
|
|
&& (!DCC_ENDED(dcc_selected->status)))
|
|
{
|
|
dcc_close (dcc_selected, DCC_ABORTED);
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
break;
|
|
/* purge old DCC */
|
|
case 'p':
|
|
case 'P':
|
|
window->dcc_selected = NULL;
|
|
ptr_dcc = dcc_list;
|
|
while (ptr_dcc)
|
|
{
|
|
ptr_dcc_next = ptr_dcc->next_dcc;
|
|
if (DCC_ENDED(ptr_dcc->status))
|
|
dcc_free (ptr_dcc);
|
|
ptr_dcc = ptr_dcc_next;
|
|
}
|
|
gui_redraw_buffer (window->buffer);
|
|
break;
|
|
/* close DCC window */
|
|
case 'q':
|
|
case 'Q':
|
|
if (buffer_before_dcc)
|
|
{
|
|
gui_buffer_free (window->buffer, 1);
|
|
gui_switch_to_buffer (window, buffer_before_dcc);
|
|
}
|
|
else
|
|
gui_buffer_free (window->buffer, 1);
|
|
gui_redraw_buffer (window->buffer);
|
|
break;
|
|
/* remove from DCC list */
|
|
case 'r':
|
|
case 'R':
|
|
if (dcc_selected
|
|
&& (DCC_ENDED(dcc_selected->status)))
|
|
{
|
|
if (dcc_selected->next_dcc)
|
|
window->dcc_selected = dcc_selected->next_dcc;
|
|
else
|
|
window->dcc_selected = NULL;
|
|
dcc_free (dcc_selected);
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_insert_string: insert a string into the input buffer
|
|
* if pos == -1, string is inserted at cursor position
|
|
* return: number of chars inserted
|
|
* (may be different of strlen if UTF-8 string)
|
|
*/
|
|
|
|
int
|
|
gui_input_insert_string (t_gui_window *window, char *string, int pos)
|
|
{
|
|
int size, length;
|
|
char *ptr_start;
|
|
|
|
if (window->buffer->dcc)
|
|
{
|
|
while (string[0])
|
|
{
|
|
if (string[0] >= 32)
|
|
gui_input_action_dcc (window, string[0]);
|
|
string = utf8_next_char (string);
|
|
}
|
|
}
|
|
else if (window->buffer->has_input)
|
|
{
|
|
if (pos == -1)
|
|
pos = window->buffer->input_buffer_pos;
|
|
|
|
size = strlen (string);
|
|
length = utf8_strlen (string);
|
|
|
|
/* increase buffer size */
|
|
window->buffer->input_buffer_size += size;
|
|
window->buffer->input_buffer_length += length;
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
|
|
/* move end of string to the right */
|
|
ptr_start = utf8_add_offset (window->buffer->input_buffer, pos);
|
|
memmove (ptr_start + size, ptr_start, strlen (ptr_start));
|
|
|
|
/* insert new string */
|
|
strncpy (utf8_add_offset (window->buffer->input_buffer, pos), string, size);
|
|
return length;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* gui_input_clipboard_copy: copy string into clipboard
|
|
*/
|
|
|
|
void
|
|
gui_input_clipboard_copy (char *buffer, int size)
|
|
{
|
|
if (size <= 0)
|
|
return;
|
|
|
|
if (gui_input_clipboard != NULL)
|
|
free (gui_input_clipboard);
|
|
|
|
gui_input_clipboard = (char *) malloc( (size + 1) * sizeof(*gui_input_clipboard));
|
|
|
|
if (gui_input_clipboard)
|
|
{
|
|
memcpy (gui_input_clipboard, buffer, size);
|
|
gui_input_clipboard[size] = '\0';
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_clipboard_paste: paste clipboard at cursor pos in input line
|
|
*/
|
|
|
|
void
|
|
gui_input_clipboard_paste (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input && gui_input_clipboard)
|
|
{
|
|
gui_input_insert_string (window, gui_input_clipboard, -1);
|
|
window->buffer->input_buffer_pos += utf8_strlen (gui_input_clipboard);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_return: terminate line (return pressed)
|
|
*/
|
|
|
|
void
|
|
gui_input_return (t_gui_window *window)
|
|
{
|
|
t_gui_buffer *ptr_buffer;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_size > 0)
|
|
{
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
history_add (window->buffer, window->buffer->input_buffer);
|
|
window->buffer->input_buffer_size = 0;
|
|
window->buffer->input_buffer_length = 0;
|
|
window->buffer->input_buffer_pos = 0;
|
|
window->buffer->input_buffer_1st_display = 0;
|
|
window->buffer->completion.position = -1;
|
|
window->buffer->ptr_history = NULL;
|
|
ptr_buffer = window->buffer;
|
|
user_command (SERVER(window->buffer),
|
|
window->buffer,
|
|
window->buffer->input_buffer);
|
|
if (ptr_buffer == window->buffer)
|
|
{
|
|
ptr_buffer->input_buffer[0] = '\0';
|
|
gui_draw_buffer_input (ptr_buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_tab: tab key => completion
|
|
*/
|
|
|
|
void
|
|
gui_input_tab (t_gui_window *window)
|
|
{
|
|
int i;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
completion_search (&(window->buffer->completion),
|
|
CHANNEL(window->buffer),
|
|
window->buffer->input_buffer,
|
|
window->buffer->input_buffer_size,
|
|
utf8_real_pos (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos));
|
|
|
|
if (window->buffer->completion.word_found)
|
|
{
|
|
/* replace word with new completed word into input buffer */
|
|
if (window->buffer->completion.diff_size > 0)
|
|
{
|
|
window->buffer->input_buffer_size +=
|
|
window->buffer->completion.diff_size;
|
|
window->buffer->input_buffer_length +=
|
|
window->buffer->completion.diff_length;
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
for (i = window->buffer->input_buffer_size - 1;
|
|
i >= window->buffer->completion.position_replace +
|
|
(int)strlen (window->buffer->completion.word_found); i--)
|
|
window->buffer->input_buffer[i] =
|
|
window->buffer->input_buffer[i - window->buffer->completion.diff_size];
|
|
}
|
|
else
|
|
{
|
|
for (i = window->buffer->completion.position_replace +
|
|
strlen (window->buffer->completion.word_found);
|
|
i < window->buffer->input_buffer_size; i++)
|
|
window->buffer->input_buffer[i] =
|
|
window->buffer->input_buffer[i - window->buffer->completion.diff_size];
|
|
window->buffer->input_buffer_size +=
|
|
window->buffer->completion.diff_size;
|
|
window->buffer->input_buffer_length +=
|
|
window->buffer->completion.diff_length;
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
}
|
|
|
|
strncpy (window->buffer->input_buffer + window->buffer->completion.position_replace,
|
|
window->buffer->completion.word_found,
|
|
strlen (window->buffer->completion.word_found));
|
|
window->buffer->input_buffer_pos =
|
|
utf8_pos (window->buffer->input_buffer,
|
|
window->buffer->completion.position_replace) +
|
|
utf8_strlen (window->buffer->completion.word_found);
|
|
|
|
/* position is < 0 this means only one word was found to complete,
|
|
so reinit to stop completion */
|
|
if (window->buffer->completion.position >= 0)
|
|
window->buffer->completion.position =
|
|
utf8_real_pos (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
|
|
/* add space or completor to the end of completion, if needed */
|
|
if ((window->buffer->completion.context == COMPLETION_COMMAND)
|
|
|| (window->buffer->completion.context == COMPLETION_COMMAND_ARG))
|
|
{
|
|
if (window->buffer->input_buffer[utf8_real_pos (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos)] != ' ')
|
|
gui_input_insert_string (window, " ",
|
|
window->buffer->input_buffer_pos);
|
|
if (window->buffer->completion.position >= 0)
|
|
window->buffer->completion.position++;
|
|
window->buffer->input_buffer_pos++;
|
|
}
|
|
else
|
|
{
|
|
/* add nick completor if position 0 and completing nick */
|
|
if ((window->buffer->completion.base_word_pos == 0)
|
|
&& (window->buffer->completion.context == COMPLETION_NICK))
|
|
{
|
|
if (strncmp (utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos),
|
|
cfg_look_completor, strlen (cfg_look_completor)) != 0)
|
|
gui_input_insert_string (window, cfg_look_completor,
|
|
window->buffer->input_buffer_pos);
|
|
if (window->buffer->completion.position >= 0)
|
|
window->buffer->completion.position += strlen (cfg_look_completor);
|
|
window->buffer->input_buffer_pos += utf8_strlen (cfg_look_completor);
|
|
if (window->buffer->input_buffer[utf8_real_pos (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos)] != ' ')
|
|
gui_input_insert_string (window, " ",
|
|
window->buffer->input_buffer_pos);
|
|
if (window->buffer->completion.position >= 0)
|
|
window->buffer->completion.position++;
|
|
window->buffer->input_buffer_pos++;
|
|
}
|
|
}
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_backspace: backspace key
|
|
*/
|
|
|
|
void
|
|
gui_input_backspace (t_gui_window *window)
|
|
{
|
|
char *pos, *pos_last;
|
|
int char_size, size_to_move;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos > 0)
|
|
{
|
|
pos = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
pos_last = utf8_prev_char (window->buffer->input_buffer, pos);
|
|
char_size = pos - pos_last;
|
|
size_to_move = strlen (pos);
|
|
memmove (pos_last, pos, size_to_move);
|
|
window->buffer->input_buffer_size -= char_size;
|
|
window->buffer->input_buffer_length--;
|
|
window->buffer->input_buffer_pos--;
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_delete: delete key
|
|
*/
|
|
|
|
void
|
|
gui_input_delete (t_gui_window *window)
|
|
{
|
|
char *pos, *pos_next;
|
|
int char_size, size_to_move;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos <
|
|
window->buffer->input_buffer_length)
|
|
{
|
|
pos = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
pos_next = utf8_next_char (pos);
|
|
char_size = pos_next - pos;
|
|
size_to_move = strlen (pos_next);
|
|
memmove (pos, pos_next, size_to_move);
|
|
window->buffer->input_buffer_size -= char_size;
|
|
window->buffer->input_buffer_length--;
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_delete_previous_word: delete previous word
|
|
*/
|
|
|
|
void
|
|
gui_input_delete_previous_word (t_gui_window *window)
|
|
{
|
|
int length_deleted, size_deleted;
|
|
char *start, *string;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos > 0)
|
|
{
|
|
start = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos - 1);
|
|
string = start;
|
|
while (string && (string[0] == ' '))
|
|
{
|
|
string = utf8_prev_char (window->buffer->input_buffer, string);
|
|
}
|
|
if (string)
|
|
{
|
|
while (string && (string[0] != ' '))
|
|
{
|
|
string = utf8_prev_char (window->buffer->input_buffer, string);
|
|
}
|
|
if (string)
|
|
{
|
|
while (string && (string[0] == ' '))
|
|
{
|
|
string = utf8_prev_char (window->buffer->input_buffer, string);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (string)
|
|
string = utf8_next_char (utf8_next_char (string));
|
|
else
|
|
string = window->buffer->input_buffer;
|
|
|
|
size_deleted = utf8_next_char (start) - string;
|
|
length_deleted = utf8_strnlen (string, size_deleted);
|
|
|
|
gui_input_clipboard_copy (string, size_deleted);
|
|
|
|
memmove (string, string + size_deleted, size_deleted);
|
|
|
|
window->buffer->input_buffer_size -= size_deleted;
|
|
window->buffer->input_buffer_length -= length_deleted;
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
window->buffer->input_buffer_pos -= length_deleted;
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_delete_next_word: delete next word
|
|
*/
|
|
|
|
void
|
|
gui_input_delete_next_word (t_gui_window *window)
|
|
{
|
|
int size_deleted, length_deleted;
|
|
char *start, *string;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
start = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
string = start;
|
|
length_deleted = 0;
|
|
while (string[0])
|
|
{
|
|
if ((string[0] == ' ') && (string > start))
|
|
break;
|
|
string = utf8_next_char (string);
|
|
length_deleted++;
|
|
}
|
|
size_deleted = string - start;
|
|
|
|
gui_input_clipboard_copy(start, size_deleted);
|
|
|
|
memmove (start, string, strlen (string));
|
|
|
|
window->buffer->input_buffer_size -= size_deleted;
|
|
window->buffer->input_buffer_length -= length_deleted;
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_delete_begin_of_line: delete all from cursor pos to beginning of line
|
|
*/
|
|
|
|
void
|
|
gui_input_delete_begin_of_line (t_gui_window *window)
|
|
{
|
|
int length_deleted, size_deleted;
|
|
char *start;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos > 0)
|
|
{
|
|
start = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
size_deleted = start - window->buffer->input_buffer;
|
|
length_deleted = utf8_strnlen (window->buffer->input_buffer, size_deleted);
|
|
gui_input_clipboard_copy (window->buffer->input_buffer,
|
|
start - window->buffer->input_buffer);
|
|
|
|
memmove (window->buffer->input_buffer, start, strlen (start));
|
|
|
|
window->buffer->input_buffer_size -= size_deleted;
|
|
window->buffer->input_buffer_length -= length_deleted;
|
|
window->buffer->input_buffer[window->buffer->input_buffer_size] = '\0';
|
|
window->buffer->input_buffer_pos = 0;
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_delete_end_of_line: delete all from cursor pos to end of line
|
|
*/
|
|
|
|
void
|
|
gui_input_delete_end_of_line (t_gui_window *window)
|
|
{
|
|
char *start;
|
|
int size_deleted, length_deleted;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
start = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
size_deleted = strlen (start);
|
|
length_deleted = utf8_strlen (start);
|
|
gui_input_clipboard_copy(start, size_deleted);
|
|
start[0] = '\0';
|
|
window->buffer->input_buffer_size = strlen (window->buffer->input_buffer);
|
|
window->buffer->input_buffer_length = utf8_strlen (window->buffer->input_buffer);
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_delete_line: delete entire line
|
|
*/
|
|
|
|
void
|
|
gui_input_delete_line (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
{
|
|
window->buffer->input_buffer[0] = '\0';
|
|
window->buffer->input_buffer_size = 0;
|
|
window->buffer->input_buffer_length = 0;
|
|
window->buffer->input_buffer_pos = 0;
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_transpose_chars: transpose chars (on lth left) at cursor pos
|
|
*/
|
|
|
|
void
|
|
gui_input_transpose_chars (t_gui_window *window)
|
|
{
|
|
char *start, *prev_char, saved_char[4];
|
|
int size_current_char;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos > 0)
|
|
{
|
|
if (window->buffer->input_buffer_pos == window->buffer->input_buffer_length)
|
|
window->buffer->input_buffer_pos--;
|
|
|
|
start = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
prev_char = utf8_prev_char (window->buffer->input_buffer,
|
|
start);
|
|
size_current_char = start - prev_char;
|
|
memcpy (saved_char, prev_char, size_current_char);
|
|
memcpy (prev_char, start, utf8_char_size (start));
|
|
start = utf8_next_char (prev_char);
|
|
memcpy (start, saved_char, size_current_char);
|
|
|
|
window->buffer->input_buffer_pos++;
|
|
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
window->buffer->completion.position = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_home: home key
|
|
*/
|
|
|
|
void
|
|
gui_input_home (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos > 0)
|
|
{
|
|
window->buffer->input_buffer_pos = 0;
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_end: end key
|
|
*/
|
|
|
|
void
|
|
gui_input_end (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos <
|
|
window->buffer->input_buffer_length)
|
|
{
|
|
window->buffer->input_buffer_pos =
|
|
window->buffer->input_buffer_length;
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_left: move to previous char
|
|
*/
|
|
|
|
void
|
|
gui_input_left (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos > 0)
|
|
{
|
|
window->buffer->input_buffer_pos--;
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_previous_word: move to beginning of previous word
|
|
*/
|
|
|
|
void
|
|
gui_input_previous_word (t_gui_window *window)
|
|
{
|
|
char *pos;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos > 0)
|
|
{
|
|
pos = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos - 1);
|
|
while (pos && (pos[0] == ' '))
|
|
{
|
|
pos = utf8_prev_char (window->buffer->input_buffer, pos);
|
|
}
|
|
if (pos)
|
|
{
|
|
while (pos && (pos[0] != ' '))
|
|
{
|
|
pos = utf8_prev_char (window->buffer->input_buffer, pos);
|
|
}
|
|
if (pos)
|
|
pos = utf8_next_char (pos);
|
|
else
|
|
pos = window->buffer->input_buffer;
|
|
window->buffer->input_buffer_pos = utf8_pos (window->buffer->input_buffer,
|
|
pos - window->buffer->input_buffer);
|
|
}
|
|
else
|
|
window->buffer->input_buffer_pos = 0;
|
|
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_right: move to previous char
|
|
*/
|
|
|
|
void
|
|
gui_input_right (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos <
|
|
window->buffer->input_buffer_length)
|
|
{
|
|
window->buffer->input_buffer_pos++;
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_next_word: move to the end of next
|
|
*/
|
|
|
|
void
|
|
gui_input_next_word (t_gui_window *window)
|
|
{
|
|
char *pos;
|
|
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->input_buffer_pos <
|
|
window->buffer->input_buffer_length)
|
|
{
|
|
pos = utf8_add_offset (window->buffer->input_buffer,
|
|
window->buffer->input_buffer_pos);
|
|
while (pos[0] && (pos[0] == ' '))
|
|
{
|
|
pos = utf8_next_char (pos);
|
|
}
|
|
if (pos[0])
|
|
{
|
|
while (pos[0] && (pos[0] != ' '))
|
|
{
|
|
pos = utf8_next_char (pos);
|
|
}
|
|
if (pos[0])
|
|
window->buffer->input_buffer_pos =
|
|
utf8_pos (window->buffer->input_buffer,
|
|
pos - window->buffer->input_buffer);
|
|
else
|
|
window->buffer->input_buffer_pos =
|
|
window->buffer->input_buffer_length;
|
|
}
|
|
else
|
|
window->buffer->input_buffer_pos =
|
|
utf8_pos (window->buffer->input_buffer,
|
|
utf8_prev_char (window->buffer->input_buffer, pos) - window->buffer->input_buffer);
|
|
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_up: recall last command or move to previous DCC in list
|
|
*/
|
|
|
|
void
|
|
gui_input_up (t_gui_window *window)
|
|
{
|
|
if (window->buffer->dcc)
|
|
{
|
|
if (dcc_list)
|
|
{
|
|
if (window->dcc_selected
|
|
&& ((t_irc_dcc *)(window->dcc_selected))->prev_dcc)
|
|
{
|
|
if (window->dcc_selected ==
|
|
window->dcc_first)
|
|
window->dcc_first =
|
|
((t_irc_dcc *)(window->dcc_first))->prev_dcc;
|
|
window->dcc_selected =
|
|
((t_irc_dcc *)(window->dcc_selected))->prev_dcc;
|
|
gui_draw_buffer_chat (window->buffer, 1);
|
|
gui_draw_buffer_input (window->buffer, 1);
|
|
}
|
|
}
|
|
}
|
|
else if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->ptr_history)
|
|
{
|
|
window->buffer->ptr_history =
|
|
window->buffer->ptr_history->next_history;
|
|
if (!window->buffer->ptr_history)
|
|
window->buffer->ptr_history =
|
|
window->buffer->history;
|
|
}
|
|
else
|
|
window->buffer->ptr_history =
|
|
window->buffer->history;
|
|
if (window->buffer->ptr_history)
|
|
{
|
|
window->buffer->input_buffer_size =
|
|
strlen (window->buffer->ptr_history->text);
|
|
window->buffer->input_buffer_length =
|
|
utf8_strlen (window->buffer->ptr_history->text);
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
window->buffer->input_buffer_pos =
|
|
window->buffer->input_buffer_length;
|
|
strcpy (window->buffer->input_buffer,
|
|
window->buffer->ptr_history->text);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_up_global: recall last command in global history
|
|
*/
|
|
|
|
void
|
|
gui_input_up_global (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (history_global_ptr)
|
|
{
|
|
history_global_ptr = history_global_ptr->next_history;
|
|
if (!history_global_ptr)
|
|
history_global_ptr = history_global;
|
|
}
|
|
else
|
|
history_global_ptr = history_global;
|
|
if (history_global_ptr)
|
|
{
|
|
window->buffer->input_buffer_size =
|
|
strlen (history_global_ptr->text);
|
|
window->buffer->input_buffer_length =
|
|
utf8_strlen (history_global_ptr->text);
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
window->buffer->input_buffer_pos =
|
|
window->buffer->input_buffer_length;
|
|
strcpy (window->buffer->input_buffer,
|
|
history_global_ptr->text);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_down: recall next command or move to next DCC in list
|
|
*/
|
|
|
|
void
|
|
gui_input_down (t_gui_window *window)
|
|
{
|
|
if (window->buffer->dcc)
|
|
{
|
|
if (dcc_list)
|
|
{
|
|
if (!window->dcc_selected
|
|
|| ((t_irc_dcc *)(window->dcc_selected))->next_dcc)
|
|
{
|
|
if (window->dcc_last_displayed
|
|
&& (window->dcc_selected ==
|
|
window->dcc_last_displayed))
|
|
{
|
|
if (window->dcc_first)
|
|
window->dcc_first =
|
|
((t_irc_dcc *)(window->dcc_first))->next_dcc;
|
|
else
|
|
window->dcc_first =
|
|
dcc_list->next_dcc;
|
|
}
|
|
if (window->dcc_selected)
|
|
window->dcc_selected =
|
|
((t_irc_dcc *)(window->dcc_selected))->next_dcc;
|
|
else
|
|
window->dcc_selected =
|
|
dcc_list->next_dcc;
|
|
gui_draw_buffer_chat (window->buffer, 1);
|
|
gui_draw_buffer_input (window->buffer, 1);
|
|
}
|
|
}
|
|
}
|
|
else if (window->buffer->has_input)
|
|
{
|
|
if (window->buffer->ptr_history)
|
|
{
|
|
window->buffer->ptr_history =
|
|
window->buffer->ptr_history->prev_history;
|
|
if (window->buffer->ptr_history)
|
|
{
|
|
window->buffer->input_buffer_size =
|
|
strlen (window->buffer->ptr_history->text);
|
|
window->buffer->input_buffer_length =
|
|
utf8_strlen (window->buffer->ptr_history->text);
|
|
}
|
|
else
|
|
{
|
|
window->buffer->input_buffer_size = 0;
|
|
window->buffer->input_buffer_length = 0;
|
|
}
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
window->buffer->input_buffer_pos =
|
|
window->buffer->input_buffer_length;
|
|
if (window->buffer->ptr_history)
|
|
strcpy (window->buffer->input_buffer,
|
|
window->buffer->ptr_history->text);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_down_global: recall next command in global history
|
|
*/
|
|
|
|
void
|
|
gui_input_down_global (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
{
|
|
if (history_global_ptr)
|
|
{
|
|
history_global_ptr = history_global_ptr->prev_history;
|
|
if (history_global_ptr)
|
|
{
|
|
window->buffer->input_buffer_size =
|
|
strlen (history_global_ptr->text);
|
|
window->buffer->input_buffer_length =
|
|
utf8_strlen (history_global_ptr->text);
|
|
}
|
|
else
|
|
{
|
|
window->buffer->input_buffer_size = 0;
|
|
window->buffer->input_buffer_length = 0;
|
|
}
|
|
gui_input_optimize_buffer_size (window->buffer);
|
|
window->buffer->input_buffer_pos =
|
|
window->buffer->input_buffer_length;
|
|
if (history_global_ptr)
|
|
strcpy (window->buffer->input_buffer,
|
|
history_global_ptr->text);
|
|
gui_draw_buffer_input (window->buffer, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_jump_smart: jump to buffer with activity (alt-A by default)
|
|
*/
|
|
|
|
void
|
|
gui_input_jump_smart (t_gui_window *window)
|
|
{
|
|
if (hotlist)
|
|
{
|
|
if (!hotlist_initial_buffer)
|
|
hotlist_initial_buffer = window->buffer;
|
|
gui_switch_to_buffer (window, hotlist->buffer);
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
else
|
|
{
|
|
if (hotlist_initial_buffer)
|
|
{
|
|
gui_switch_to_buffer (window, hotlist_initial_buffer);
|
|
gui_redraw_buffer (window->buffer);
|
|
hotlist_initial_buffer = NULL;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_jump_dcc: jump to DCC buffer
|
|
*/
|
|
|
|
void
|
|
gui_input_jump_dcc (t_gui_window *window)
|
|
{
|
|
if (window->buffer->dcc)
|
|
{
|
|
if (buffer_before_dcc)
|
|
{
|
|
gui_switch_to_buffer (window,
|
|
buffer_before_dcc);
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
buffer_before_dcc = window->buffer;
|
|
gui_switch_to_dcc_buffer (window);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_jump_last_buffer: jump to last buffer
|
|
*/
|
|
|
|
void
|
|
gui_input_jump_last_buffer (t_gui_window *window)
|
|
{
|
|
if (last_gui_buffer)
|
|
gui_switch_to_buffer_by_number (window, last_gui_buffer->number);
|
|
}
|
|
|
|
/*
|
|
* gui_input_jump_server: jump to server buffer
|
|
*/
|
|
|
|
void
|
|
gui_input_jump_server (t_gui_window *window)
|
|
{
|
|
if (SERVER(window->buffer))
|
|
{
|
|
if (SERVER(window->buffer)->buffer !=
|
|
window->buffer)
|
|
{
|
|
gui_switch_to_buffer (window,
|
|
SERVER(window->buffer)->buffer);
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_jump_next_server: jump to next server
|
|
*/
|
|
|
|
void
|
|
gui_input_jump_next_server (t_gui_window *window)
|
|
{
|
|
t_irc_server *ptr_server;
|
|
t_gui_buffer *ptr_buffer;
|
|
|
|
if (SERVER(window->buffer))
|
|
{
|
|
ptr_server = SERVER(window->buffer)->next_server;
|
|
if (!ptr_server)
|
|
ptr_server = irc_servers;
|
|
while (ptr_server != SERVER(window->buffer))
|
|
{
|
|
if (ptr_server->buffer)
|
|
break;
|
|
ptr_server = (ptr_server->next_server) ?
|
|
ptr_server->next_server : irc_servers;
|
|
}
|
|
if (ptr_server != SERVER(window->buffer))
|
|
{
|
|
/* save current buffer */
|
|
SERVER(window->buffer)->buffer->old_channel_buffer =
|
|
window->buffer;
|
|
|
|
/* come back to memorized chan if found */
|
|
if (ptr_server->buffer->old_channel_buffer)
|
|
ptr_buffer = ptr_server->buffer->old_channel_buffer;
|
|
else
|
|
ptr_buffer = (ptr_server->channels) ?
|
|
ptr_server->channels->buffer : ptr_server->buffer;
|
|
gui_switch_to_buffer (window, ptr_buffer);
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* gui_input_hotlist_clear: clear hotlist
|
|
*/
|
|
|
|
void
|
|
gui_input_hotlist_clear (t_gui_window *window)
|
|
{
|
|
if (hotlist)
|
|
{
|
|
hotlist_free_all ();
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
hotlist_initial_buffer = window->buffer;
|
|
}
|
|
|
|
/*
|
|
* gui_input_infobar_clear: clear infobar
|
|
*/
|
|
|
|
void
|
|
gui_input_infobar_clear (t_gui_window *window)
|
|
{
|
|
gui_infobar_remove ();
|
|
gui_draw_buffer_infobar (window->buffer, 1);
|
|
}
|
|
|
|
/*
|
|
* gui_input_grab_key: init "grab key mode" (next key will be inserted into input buffer)
|
|
*/
|
|
|
|
void
|
|
gui_input_grab_key (t_gui_window *window)
|
|
{
|
|
if (window->buffer->has_input)
|
|
gui_key_init_grab ();
|
|
}
|
|
|
|
/*
|
|
* gui_switch_to_previous_buffer: switch to previous buffer
|
|
*/
|
|
|
|
void
|
|
gui_switch_to_previous_buffer (t_gui_window *window)
|
|
{
|
|
if (!gui_ok)
|
|
return;
|
|
|
|
/* if only one buffer then return */
|
|
if (gui_buffers == last_gui_buffer)
|
|
return;
|
|
|
|
if (window->buffer->prev_buffer)
|
|
gui_switch_to_buffer (window, window->buffer->prev_buffer);
|
|
else
|
|
gui_switch_to_buffer (window, last_gui_buffer);
|
|
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
|
|
/*
|
|
* gui_switch_to_next_buffer: switch to next buffer
|
|
*/
|
|
|
|
void
|
|
gui_switch_to_next_buffer (t_gui_window *window)
|
|
{
|
|
if (!gui_ok)
|
|
return;
|
|
|
|
/* if only one buffer then return */
|
|
if (gui_buffers == last_gui_buffer)
|
|
return;
|
|
|
|
if (window->buffer->next_buffer)
|
|
gui_switch_to_buffer (window, window->buffer->next_buffer);
|
|
else
|
|
gui_switch_to_buffer (window, gui_buffers);
|
|
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
|
|
/*
|
|
* gui_switch_to_previous_window: switch to previous window
|
|
*/
|
|
|
|
void
|
|
gui_switch_to_previous_window (t_gui_window *window)
|
|
{
|
|
if (!gui_ok)
|
|
return;
|
|
|
|
/* if only one window then return */
|
|
if (gui_windows == last_gui_window)
|
|
return;
|
|
|
|
gui_current_window = (window->prev_window) ? window->prev_window : last_gui_window;
|
|
gui_switch_to_buffer (gui_current_window, gui_current_window->buffer);
|
|
gui_redraw_buffer (gui_current_window->buffer);
|
|
}
|
|
|
|
/*
|
|
* gui_switch_to_next_window: switch to next window
|
|
*/
|
|
|
|
void
|
|
gui_switch_to_next_window (t_gui_window *window)
|
|
{
|
|
if (!gui_ok)
|
|
return;
|
|
|
|
/* if only one window then return */
|
|
if (gui_windows == last_gui_window)
|
|
return;
|
|
|
|
gui_current_window = (window->next_window) ? window->next_window : gui_windows;
|
|
gui_switch_to_buffer (gui_current_window, gui_current_window->buffer);
|
|
gui_redraw_buffer (gui_current_window->buffer);
|
|
}
|
|
|
|
/*
|
|
* gui_switch_to_dcc_buffer: switch to dcc buffer (create it if it does not exist)
|
|
*/
|
|
|
|
void
|
|
gui_switch_to_dcc_buffer (t_gui_window *window)
|
|
{
|
|
t_gui_buffer *ptr_buffer;
|
|
|
|
/* check if dcc buffer exists */
|
|
for (ptr_buffer = gui_buffers; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
{
|
|
if (ptr_buffer->dcc)
|
|
break;
|
|
}
|
|
if (ptr_buffer)
|
|
{
|
|
gui_switch_to_buffer (window, ptr_buffer);
|
|
gui_redraw_buffer (ptr_buffer);
|
|
}
|
|
else
|
|
gui_buffer_new (window, NULL, NULL, 1, 1);
|
|
}
|
|
|
|
/*
|
|
* gui_switch_to_buffer_by_number: switch to another buffer with number
|
|
*/
|
|
|
|
t_gui_buffer *
|
|
gui_switch_to_buffer_by_number (t_gui_window *window, int number)
|
|
{
|
|
t_gui_buffer *ptr_buffer;
|
|
|
|
/* invalid buffer */
|
|
if (number < 0)
|
|
return NULL;
|
|
|
|
/* buffer is currently displayed ? */
|
|
if (number == window->buffer->number)
|
|
return window->buffer;
|
|
|
|
/* search for buffer in the list */
|
|
for (ptr_buffer = gui_buffers; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
{
|
|
if ((ptr_buffer != window->buffer) && (number == ptr_buffer->number))
|
|
{
|
|
gui_switch_to_buffer (window, ptr_buffer);
|
|
gui_redraw_buffer (window->buffer);
|
|
return ptr_buffer;
|
|
}
|
|
}
|
|
|
|
/* buffer not found */
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* gui_switch_to_buffer_by_number: switch to another buffer with number
|
|
*/
|
|
|
|
void
|
|
gui_move_buffer_to_number (t_gui_window *window, int number)
|
|
{
|
|
t_gui_buffer *ptr_buffer;
|
|
int i;
|
|
|
|
/* buffer number is already ok ? */
|
|
if (number == window->buffer->number)
|
|
return;
|
|
|
|
if (number < 1)
|
|
number = 1;
|
|
|
|
/* remove buffer from list */
|
|
if (window->buffer == gui_buffers)
|
|
{
|
|
gui_buffers = window->buffer->next_buffer;
|
|
gui_buffers->prev_buffer = NULL;
|
|
}
|
|
if (window->buffer == last_gui_buffer)
|
|
{
|
|
last_gui_buffer = window->buffer->prev_buffer;
|
|
last_gui_buffer->next_buffer = NULL;
|
|
}
|
|
if (window->buffer->prev_buffer)
|
|
(window->buffer->prev_buffer)->next_buffer = window->buffer->next_buffer;
|
|
if (window->buffer->next_buffer)
|
|
(window->buffer->next_buffer)->prev_buffer = window->buffer->prev_buffer;
|
|
|
|
if (number == 1)
|
|
{
|
|
gui_buffers->prev_buffer = window->buffer;
|
|
window->buffer->prev_buffer = NULL;
|
|
window->buffer->next_buffer = gui_buffers;
|
|
gui_buffers = window->buffer;
|
|
}
|
|
else
|
|
{
|
|
/* assign new number to all buffers */
|
|
i = 1;
|
|
for (ptr_buffer = gui_buffers; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
{
|
|
ptr_buffer->number = i++;
|
|
}
|
|
|
|
/* search for new position in the list */
|
|
for (ptr_buffer = gui_buffers; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
{
|
|
if (ptr_buffer->number == number)
|
|
break;
|
|
}
|
|
if (ptr_buffer)
|
|
{
|
|
/* insert before buffer found */
|
|
window->buffer->prev_buffer = ptr_buffer->prev_buffer;
|
|
window->buffer->next_buffer = ptr_buffer;
|
|
if (ptr_buffer->prev_buffer)
|
|
(ptr_buffer->prev_buffer)->next_buffer = window->buffer;
|
|
ptr_buffer->prev_buffer = window->buffer;
|
|
}
|
|
else
|
|
{
|
|
/* number not found (too big)? => add to end */
|
|
window->buffer->prev_buffer = last_gui_buffer;
|
|
window->buffer->next_buffer = NULL;
|
|
last_gui_buffer->next_buffer = window->buffer;
|
|
last_gui_buffer = window->buffer;
|
|
}
|
|
|
|
}
|
|
|
|
/* assign new number to all buffers */
|
|
i = 1;
|
|
for (ptr_buffer = gui_buffers; ptr_buffer; ptr_buffer = ptr_buffer->next_buffer)
|
|
{
|
|
ptr_buffer->number = i++;
|
|
}
|
|
|
|
gui_redraw_buffer (window->buffer);
|
|
}
|
|
|
|
/*
|
|
* gui_window_print_log: print window infos in log (usually for crash dump)
|
|
*/
|
|
|
|
void
|
|
gui_window_print_log (t_gui_window *window)
|
|
{
|
|
wee_log_printf ("[window (addr:0x%X)]\n", window);
|
|
wee_log_printf (" win_x . . . . . . . : %d\n", window->win_x);
|
|
wee_log_printf (" win_y . . . . . . . : %d\n", window->win_y);
|
|
wee_log_printf (" win_width . . . . . : %d\n", window->win_width);
|
|
wee_log_printf (" win_height. . . . . : %d\n", window->win_height);
|
|
wee_log_printf (" win_chat_x. . . . . : %d\n", window->win_chat_x);
|
|
wee_log_printf (" win_chat_y. . . . . : %d\n", window->win_chat_y);
|
|
wee_log_printf (" win_chat_width. . . : %d\n", window->win_chat_width);
|
|
wee_log_printf (" win_chat_height . . : %d\n", window->win_chat_height);
|
|
wee_log_printf (" win_chat_cursor_x . : %d\n", window->win_chat_cursor_x);
|
|
wee_log_printf (" win_chat_cursor_y . : %d\n", window->win_chat_cursor_y);
|
|
wee_log_printf (" win_nick_x. . . . . : %d\n", window->win_nick_x);
|
|
wee_log_printf (" win_nick_y. . . . . : %d\n", window->win_nick_y);
|
|
wee_log_printf (" win_nick_width. . . : %d\n", window->win_nick_width);
|
|
wee_log_printf (" win_nick_height . . : %d\n", window->win_nick_height);
|
|
wee_log_printf (" win_nick_start. . . : %d\n", window->win_nick_start);
|
|
wee_log_printf (" win_title . . . . . : 0x%X\n", window->win_title);
|
|
wee_log_printf (" win_chat. . . . . . : 0x%X\n", window->win_chat);
|
|
wee_log_printf (" win_nick. . . . . . : 0x%X\n", window->win_nick);
|
|
wee_log_printf (" win_status. . . . . : 0x%X\n", window->win_status);
|
|
wee_log_printf (" win_infobar . . . . : 0x%X\n", window->win_infobar);
|
|
wee_log_printf (" win_input . . . . . : 0x%X\n", window->win_input);
|
|
wee_log_printf (" win_separator . . . : 0x%X\n", window->win_separator);
|
|
wee_log_printf (" textview_chat . . . : 0x%X\n", window->textview_chat);
|
|
wee_log_printf (" textbuffer_chat . . : 0x%X\n", window->textbuffer_chat);
|
|
wee_log_printf (" texttag_chat. . . . : 0x%X\n", window->texttag_chat);
|
|
wee_log_printf (" textview_nicklist . : 0x%X\n", window->textview_nicklist);
|
|
wee_log_printf (" textbuffer_nicklist : 0x%X\n", window->textbuffer_nicklist);
|
|
wee_log_printf (" dcc_first . . . . . : 0x%X\n", window->dcc_first);
|
|
wee_log_printf (" dcc_selected. . . . : 0x%X\n", window->dcc_selected);
|
|
wee_log_printf (" dcc_last_displayed. : 0x%X\n", window->dcc_last_displayed);
|
|
wee_log_printf (" buffer. . . . . . . : 0x%X\n", window->buffer);
|
|
wee_log_printf (" first_line_displayed: %d\n", window->first_line_displayed);
|
|
wee_log_printf (" start_line. . . . . : 0x%X\n", window->start_line);
|
|
wee_log_printf (" start_line_pos. . . : %d\n", window->start_line_pos);
|
|
wee_log_printf (" prev_window . . . . : 0x%X\n", window->prev_window);
|
|
wee_log_printf (" next_window . . . . : 0x%X\n", window->next_window);
|
|
|
|
}
|
|
|
|
/*
|
|
* gui_buffer_print_log: print buffer infos in log (usually for crash dump)
|
|
*/
|
|
|
|
void
|
|
gui_buffer_print_log (t_gui_buffer *buffer)
|
|
{
|
|
t_gui_line *ptr_line;
|
|
t_gui_message *ptr_message;
|
|
int num;
|
|
char buf[4096];
|
|
|
|
wee_log_printf ("[buffer (addr:0x%X)]\n", buffer);
|
|
wee_log_printf (" num_displayed. . . . : %d\n", buffer->num_displayed);
|
|
wee_log_printf (" number . . . . . . . : %d\n", buffer->number);
|
|
wee_log_printf (" server . . . . . . . : 0x%X\n", buffer->server);
|
|
wee_log_printf (" channel. . . . . . . : 0x%X\n", buffer->channel);
|
|
wee_log_printf (" dcc. . . . . . . . . : %d\n", buffer->dcc);
|
|
wee_log_printf (" lines. . . . . . . . : 0x%X\n", buffer->lines);
|
|
wee_log_printf (" last_line. . . . . . : 0x%X\n", buffer->last_line);
|
|
wee_log_printf (" num_lines. . . . . . : %d\n", buffer->num_lines);
|
|
wee_log_printf (" line_complete. . . . : %d\n", buffer->line_complete);
|
|
wee_log_printf (" notify_level . . . . : %d\n", buffer->notify_level);
|
|
wee_log_printf (" log_filename . . . . : '%s'\n", buffer->log_filename);
|
|
wee_log_printf (" log_file . . . . . . : 0x%X\n", buffer->log_file);
|
|
wee_log_printf (" has_input. . . . . . : %d\n", buffer->has_input);
|
|
wee_log_printf (" input_buffer . . . . : '%s'\n", buffer->input_buffer);
|
|
wee_log_printf (" input_buffer_alloc . : %d\n", buffer->input_buffer_alloc);
|
|
wee_log_printf (" input_buffer_size. . : %d\n", buffer->input_buffer_size);
|
|
wee_log_printf (" input_buffer_length. : %d\n", buffer->input_buffer_length);
|
|
wee_log_printf (" input_buffer_pos . . : %d\n", buffer->input_buffer_pos);
|
|
wee_log_printf (" input_buffer_1st_disp: %d\n", buffer->input_buffer_1st_display);
|
|
wee_log_printf (" history. . . . . . . : 0x%X\n", buffer->history);
|
|
wee_log_printf (" last_history . . . . : 0x%X\n", buffer->last_history);
|
|
wee_log_printf (" ptr_history. . . . . : 0x%X\n", buffer->ptr_history);
|
|
wee_log_printf (" prev_buffer. . . . . : 0x%X\n", buffer->prev_buffer);
|
|
wee_log_printf (" next_buffer. . . . . : 0x%X\n", buffer->next_buffer);
|
|
wee_log_printf ("\n");
|
|
wee_log_printf (" => last 100 lines:\n");
|
|
|
|
num = 0;
|
|
ptr_line = buffer->last_line;
|
|
while (ptr_line && (num < 100))
|
|
{
|
|
num++;
|
|
ptr_line = ptr_line->prev_line;
|
|
}
|
|
if (!ptr_line)
|
|
ptr_line = buffer->lines;
|
|
else
|
|
ptr_line = ptr_line->next_line;
|
|
|
|
while (ptr_line)
|
|
{
|
|
buf[0] = '\0';
|
|
for (ptr_message = ptr_line->messages; ptr_message;
|
|
ptr_message = ptr_message->next_message)
|
|
{
|
|
if (strlen (buf) + strlen (ptr_message->message) + 1 >= sizeof (buf))
|
|
break;
|
|
strcat (buf, ptr_message->message);
|
|
}
|
|
num--;
|
|
wee_log_printf (" line N-%05d: %s\n", num, buf);
|
|
|
|
ptr_line = ptr_line->next_line;
|
|
}
|
|
}
|