1 /*
2  * File:         gui.h
3  *
4  * Description:  header for gui.c
5  *
6  *
7  * This source code is part of kludge3d, and is released under the
8  * GNU General Public License.
9  *
10  *
11  */
12 
13 #ifndef GUI_H
14 #define GUI_H
15 
16 #include <gtk/gtk.h>
17 
18 extern GtkWidget *TopLevelWindow;
19 
20 void gui_init( int *argc, char ***argv ) ;
21 void gui_create_main_window( void ) ;
22 void gui_run( void ) ;
23 
24 void gui_dialog_ok_cb( GtkWidget *entry, gpointer dialog ) ;
25 
26 #endif
27