/* * Copyright (C) 2003-2010 Sebastien Helleu * * 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 . */ #ifndef __WEECHAT_GUI_INPUT_H #define __WEECHAT_GUI_INPUT_H 1 struct t_gui_buffer; struct t_gui_window; /* input variables */ extern char *gui_input_clipboard; /* input functions */ extern void gui_input_replace_input (struct t_gui_buffer *buffer, const char *new_input); extern void gui_input_paste_pending_signal (); extern void gui_input_text_changed_modifier_and_signal (struct t_gui_buffer *buffer, int save_undo); extern void gui_input_set_pos (struct t_gui_buffer *buffer, int pos); extern int gui_input_insert_string (struct t_gui_buffer *buffer, const char *string, int pos); extern void gui_input_move_to_buffer (struct t_gui_buffer *from_buffer, struct t_gui_buffer *to_buffer); extern void gui_input_clipboard_paste (struct t_gui_window *window); extern void gui_input_return (struct t_gui_window *window); extern void gui_input_complete_next (struct t_gui_window *window); extern void gui_input_complete_previous (struct t_gui_window *window); extern void gui_input_search_text (struct t_gui_window *window); extern void gui_input_delete_previous_char (struct t_gui_window *window); extern void gui_input_delete_next_char (struct t_gui_window *window); extern void gui_input_delete_previous_word (struct t_gui_window *window); extern void gui_input_delete_next_word (struct t_gui_window *window); extern void gui_input_delete_beginning_of_line (struct t_gui_window *window); extern void gui_input_delete_end_of_line (struct t_gui_window *window); extern void gui_input_delete_line (struct t_gui_window *window); extern void gui_input_transpose_chars (struct t_gui_window *window); extern void gui_input_move_beginning_of_line (struct t_gui_window *window); extern void gui_input_move_end_of_line (struct t_gui_window *window); extern void gui_input_move_previous_char (struct t_gui_window *window); extern void gui_input_move_next_char (struct t_gui_window *window); extern void gui_input_move_previous_word (struct t_gui_window *window); extern void gui_input_move_next_word (struct t_gui_window *window); extern void gui_input_history_local_previous (struct t_gui_window *window); extern void gui_input_history_local_next (struct t_gui_window *window); extern void gui_input_history_global_previous (struct t_gui_window *window); extern void gui_input_history_global_next (struct t_gui_window *window); extern void gui_input_jump_smart (struct t_gui_window *window); extern void gui_input_jump_last_buffer (struct t_gui_window *window); extern void gui_input_jump_previously_visited_buffer (struct t_gui_window *window); extern void gui_input_jump_next_visited_buffer (struct t_gui_window *window); extern void gui_input_hotlist_clear (struct t_gui_window *window); extern void gui_input_grab_key (struct t_gui_window *window); extern void gui_input_grab_key_command (struct t_gui_window *window); extern void gui_input_scroll_unread (struct t_gui_window *window); extern void gui_input_set_unread (); extern void gui_input_set_unread_current (struct t_gui_window *window); extern void gui_input_switch_active_buffer (struct t_gui_window *window); extern void gui_input_switch_active_buffer_previous (struct t_gui_window *window); extern void gui_input_insert (struct t_gui_window *window, const char *args); extern void gui_input_undo (struct t_gui_window *window); extern void gui_input_redo (struct t_gui_window *window); #endif /* __WEECHAT_GUI_INPUT_H */