1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 02:33:12 +02:00

Added input_data callback argument to gui_buffer_new() function

This commit is contained in:
Sebastien Helleu
2007-11-26 14:27:53 +00:00
parent 7cc78f4172
commit f5d026a775
8 changed files with 35 additions and 19 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ gui_main_init ()
if (gui_window_new (NULL, 0, 0, COLS, LINES, 100, 100))
{
gui_current_window = gui_windows;
ptr_buffer = gui_buffer_new (NULL, "weechat", "weechat");
ptr_buffer = gui_buffer_new (NULL, "weechat", "weechat", NULL);
if (ptr_buffer)
{
gui_init_ok = 1;
+1 -1
View File
@@ -162,7 +162,7 @@ gui_main_init ()
if (gui_window_new (NULL, 0, 0, 0, 0, 100, 100))
{
gui_current_window = gui_windows;
ptr_buffer = gui_buffer_new (NULL, "weechat", "weechat");
ptr_buffer = gui_buffer_new (NULL, "weechat", "weechat", NULL);
if (ptr_buffer)
{
gui_init_ok = 1;
+3 -2
View File
@@ -63,7 +63,8 @@ struct t_gui_buffer *gui_buffer_before_raw_data = NULL; /* buf. before raw */
*/
struct t_gui_buffer *
gui_buffer_new (void *plugin, char *category, char *name)
gui_buffer_new (void *plugin, char *category, char *name,
void (*input_data_cb)(struct t_gui_buffer *, char *))
{
struct t_gui_buffer *new_buffer;
struct t_gui_completion *new_completion;
@@ -118,7 +119,7 @@ gui_buffer_new (void *plugin, char *category, char *name)
/* input */
new_buffer->input = 1;
new_buffer->input_data_cb = NULL;
new_buffer->input_data_cb = input_data_cb;
new_buffer->input_nick = NULL;
new_buffer->input_buffer_alloc = GUI_BUFFER_INPUT_BLOCK_SIZE;
new_buffer->input_buffer = (char *) malloc (GUI_BUFFER_INPUT_BLOCK_SIZE);
+2 -1
View File
@@ -139,7 +139,8 @@ extern struct t_gui_buffer *gui_buffer_before_raw_data;
/* buffer functions */
extern struct t_gui_buffer *gui_buffer_new (void *, char *, char *);
extern struct t_gui_buffer *gui_buffer_new (void *, char *, char *,
void (*)(struct t_gui_buffer *, char *));
extern int gui_buffer_valid (struct t_gui_buffer *);
extern void gui_buffer_set_category (struct t_gui_buffer *, char *);
extern void gui_buffer_set_name (struct t_gui_buffer *, char *);