gegl r1889 - in trunk: . gegl



Author: ok
Date: Mon Jan 21 22:18:13 2008
New Revision: 1889
URL: http://svn.gnome.org/viewvc/gegl?rev=1889&view=rev

Log:
* gegl/gegl-plugin.h: added some functions that are not present
in the installed header files that some operations depends on.
Removing warnings about undefined prototypes for functions.


Modified:
   trunk/ChangeLog
   trunk/gegl/gegl-plugin.h

Modified: trunk/gegl/gegl-plugin.h
==============================================================================
--- trunk/gegl/gegl-plugin.h	(original)
+++ trunk/gegl/gegl-plugin.h	Mon Jan 21 22:18:13 2008
@@ -31,4 +31,30 @@
 #include <geglmoduletypes.h>
 #include <geglmodule.h>
 
+GeglBuffer     *gegl_node_context_get_source (GeglNodeContext *self,
+                                              const gchar     *padname);
+GeglBuffer     *gegl_node_context_get_target (GeglNodeContext *self,
+                                              const gchar     *padname);
+void            gegl_node_context_set_object (GeglNodeContext *context,
+                                              const gchar     *padname,
+                                              GObject         *data);
+
+
+
+GParamSpec *
+gegl_param_spec_color_from_string (const gchar *name,
+                                   const gchar *nick,
+                                   const gchar *blurb,
+                                   const gchar *default_color_string,
+                                   GParamFlags  flags);
+
+/* Probably needs a more API exposed */
+GParamSpec * gegl_param_spec_curve     (const gchar *name,
+                                        const gchar *nick,
+                                        const gchar *blurb,
+                                        GeglCurve   *default_curve,
+                                        GParamFlags  flags);
+
+
+
 #endif  /* __GEGL_PLUGIN_H__ */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]