Index: gui.h
===================================================================
--- gui.h	(revision 817)
+++ gui.h	(revision 818)
@@ -13,7 +13,7 @@
 Raydium provides a support for simple GUI definitions thru a set of
 functions (RayPHP interface is available).
 Raydium's GUI are themable, using ".gui" theme text files. A default "full"
-theme is provided as "theme-raydium3.gui" (and suitable ".tga" file) on the 
+theme is provided as "theme-raydium2.gui" (and suitable ".tga" file) on the 
 data repository.
 Complete informations about theme building are readable in this file.
 **/
@@ -145,11 +145,6 @@
 Internal use.
 **/
 
-__rayapi void raydium_gui_colorpick_draw(int w, int window);
-/**
-Internal use.
-**/
-
 __rayapi void raydium_gui_window_draw(int window);
 /**
 Internal use.
@@ -225,11 +220,6 @@
 Internal use. Zone read accessor.
 **/
 
-__rayapi int raydium_gui_colorpick_read(int window, int widget, char *str);
-/**
-Internal use. Color picker accessor.
-**/
-
 __rayapi void raydium_gui_show(void);
 /**
 Will show current built GUI.
@@ -354,7 +344,7 @@
 __rayapi int raydium_gui_zone_create(char *name, int window,  GLfloat px, GLfloat py, GLfloat sx, GLfloat sy, int tag, void *OnClick);
 /**
 This function will create a "zone" with ##name## and with ##window## for
-parent. A zone will act like a button, but will highlight a rectangular area 
+parent. A zone will act like a button, but  will highlight a rectangular area 
 of the window.
 
 This widget will return its ##tag## when you'll read it, and will 
@@ -363,11 +353,6 @@
 Unit for position/size (##px##, ##py##, ##sx## and ##sy##): percents (**window**)
 **/
 
-__rayapi int raydium_gui_colorpick_create(char *name, int window, GLfloat px, GLfloat py, GLfloat sx, GLfloat sy, GLfloat r, GLfloat g, GLfloat b);
-/**
-Need doc here !
-**/
-
 __rayapi int raydium_gui_read(int window, int widget, char *str);
 /**
 Use this function to get ##widget##'s state (for ##window##).
@@ -440,24 +425,4 @@
 Same as above, but using widget and window names
 **/
 
-__rayapi signed char raydium_gui_colorpick_hex2rgb(char *hex_string, GLfloat *rgb);
-/**
-...
-**/
-
-__rayapi signed char raydium_gui_colorpick_rgb2hex(GLfloat *rgb, char *hex_string);
-/**
-...
-**/
-
-__rayapi void raydium_gui_internal_colorpick_click(raydium_gui_Object *obj);
-/**
-Internal use.
-**/
-
-__rayapi void raydium_gui_internal_colorpick_color(raydium_gui_Colorpick *cp, GLfloat r, GLfloat g, GLfloat b);
-/**
-Internal use.
-**/
-
 #endif