1 /* NetHack 3.6	gntext.h	$NHDT-Date: 1432512805 2015/05/25 00:13:25 $  $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
2 /* Copyright (C) 1998 by Erik Andersen <andersee@debian.org> */
3 /* NetHack may be freely redistributed.  See license for details. */
4 
5 #ifndef GnomeHackTextWindow_h
6 #define GnomeHackTextWindow_h
7 
8 #include <gnome.h>
9 #include "config.h"
10 #include "global.h"
11 
12 GtkWidget *ghack_init_text_window();
13 void ghack_text_window_clear(GtkWidget *widget, gpointer data);
14 void ghack_text_window_destroy();
15 void ghack_text_window_display(GtkWidget *widget, boolean block,
16                                gpointer data);
17 void ghack_text_window_put_string(GtkWidget *widget, int attr,
18                                   const char *text, gpointer data);
19 void ghack_text_window_rip_string(const char *ripString);
20 
21 #endif /* GnomeHackTextWindow_h */
22