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