replaced usage of deprecated gtk function gtk_color_button_XXX by new gtk_color_choos...
[psensor.git] / src / lib / color.h
index eb8fac9..3af8deb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2013 jeanfi@gmail.com
+ * Copyright (C) 2010-2014 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
@@ -40,15 +40,19 @@ struct color {
        double f_blue;
 };
 
-struct color *
-color_new(unsigned int red, unsigned int green, unsigned int blue);
+/** rgb 0..65535 */
+struct color *color_new(unsigned int r, unsigned int g, unsigned int b);
 
 struct color *color_dup(struct color *);
 
+/** rgb 0..65535 */
 void color_set(struct color *,
-              unsigned int red,
-              unsigned int green,
-              unsigned int blue);
+              unsigned int r,
+              unsigned int g,
+              unsigned int b);
+
+/** rgb 0..1 */
+void color_set_f(struct color *, double r, double g, double b);
 
 int is_color(const char *str);