1 /* Bluefish HTML Editor
2  * outputbox.h - the output box
3  *
4  * Copyright (C) 2005-2017 Olivier Sessink
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef __OUTPUTBOX_H_
21 #define __OUTPUTBOX_H_
22 
23 /*void init_output_box(Tbfwin *bfwin,GtkWidget *vbox);*/
24 void outputbox_add_line_markup(Tbfwin *bfwin, const gchar *uri, gint line, const gchar *markup);
25 void outputbox_add_line(Tbfwin *bfwin, const gchar *uri, gint line, const gchar *message);
26 void fill_output_box(gpointer data, gchar *string);
27 void outputbox(Tbfwin *bfwin,gchar *pattern, gint file_subpat, gint line_subpat, gint output_subpat, gchar *command);
28 void outputbox_clear(Tbfwin *bfwin);
29 void outputbox_cleanup(Tbfwin *bfwin);
30 
31 #endif /* __OUTPUTBOX_H */
32