1 /*
2  * File:         notebook.h
3  *
4  * Description:  header for notebook.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 NOTEBOOK_H
14 #define NOTEBOOK_H
15 
16 #include <gtk/gtk.h>
17 
18 typedef enum {
19     SCOPE_VERTEX,
20     SCOPE_POLYGON,
21     SCOPE_MESH,
22     SCOPE_CURSOR /* not used yet... */
23 } GlobalScopeType;
24 
25 extern int global_scope;
26 
27 GtkWidget *create_notebook( void );
28 
29 #endif
30