1 
2 /*
3  *  Ump - Unnamed Math Program
4  *  Copyright (c) 2004-2006 by Mattias Hultgren <mattias_hultgren@tele2.se>
5  *
6  *  See main.cpp
7  */
8 
9 #ifndef UMP_GRAPHWINDOW_H_
10 #define UMP_GRAPHWINDOW_H_
11 
12 // this will create and present or just present the graphwin
13 GtkWindow* graphwin_show(void);
14 
15 // this closes the graphwin (if the graphwin isn't open nothing happens)
16 void graphwin_close(void);
17 
18 
19 // this will apply the present translation to the graphwin
20 void graphwin_translate(void);
21 
22 
23 #endif
24