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_GRADIENT_EDITOR_H_
10 #define UMP_GRADIENT_EDITOR_H_
11 
12 #include <gtk/gtk.h>
13 #include "vartypes.h"
14 #include "vector.h"
15 #include "picture.h"
16 
17 // this function displays a window in which one can create and/or modify gradients
18 void gradient_editor( GtkWidget *parent, Vector<picture_h::colorrgb> &gradient ) throw(error_obj);
19 
20 
21 #endif
22