[gjs: 14/45] [cairo] Add a RadialGradient prototype



commit 7fd214e899edbae9d4c3d52e1206c619b9903ca1
Author: Johan Dahlin <johan gnome org>
Date:   Mon Feb 22 16:09:30 2010 -0300

    [cairo] Add a RadialGradient prototype

 Makefile-modules.am             |    1 +
 modules/cairo-private.h         |    4 ++
 modules/cairo-radial-gradient.c |   80 +++++++++++++++++++++++++++++++++++++++
 modules/cairo.c                 |    5 ++
 4 files changed, 90 insertions(+), 0 deletions(-)
---
diff --git a/Makefile-modules.am b/Makefile-modules.am
index 284aeb6..0894c12 100644
--- a/Makefile-modules.am
+++ b/Makefile-modules.am
@@ -95,6 +95,7 @@ cairoNative_la_SOURCES =		\
 	modules/cairo-pattern.c \
 	modules/cairo-gradient.c \
 	modules/cairo-linear-gradient.c \
+	modules/cairo-radial-gradient.c \
 	modules/cairo.c
 
 
diff --git a/modules/cairo-private.h b/modules/cairo-private.h
index 69466db..69ba584 100644
--- a/modules/cairo-private.h
+++ b/modules/cairo-private.h
@@ -97,5 +97,9 @@ jsval gjs_cairo_gradient_create_proto(JSContext *context, JSObject *module,
 jsval gjs_cairo_linear_gradient_create_proto(JSContext *context, JSObject *module,
                                              const char *proto_name, JSObject *parent);
 
+/* radial gradient */
+jsval gjs_cairo_radial_gradient_create_proto(JSContext *context, JSObject *module,
+                                             const char *proto_name, JSObject *parent);
+
 #endif /* __CAIRO_PRIVATE_H__ */
 
diff --git a/modules/cairo-radial-gradient.c b/modules/cairo-radial-gradient.c
new file mode 100644
index 0000000..d94ea54
--- /dev/null
+++ b/modules/cairo-radial-gradient.c
@@ -0,0 +1,80 @@
+/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
+/* Copyright 2010 litl, LLC. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include <config.h>
+
+#include <gjs/gjs.h>
+#include <cairo.h>
+#include "cairo-private.h"
+
+GJS_DEFINE_PROTO("CairoRadialGradient", gjs_cairo_radial_gradient)
+
+static JSBool
+gjs_cairo_radial_gradient_constructor(JSContext *context,
+                                      JSObject  *obj,
+                                      uintN      argc,
+                                      jsval     *argv,
+                                      jsval     *retval)
+{
+    double cx0, cy0, radius0, cx1, cy1, radius1;
+    cairo_pattern_t *pattern;
+    cairo_status_t status;
+
+    if (!gjs_check_constructing(context))
+        return JS_FALSE;
+
+    if (!gjs_parse_args(context, "RadialGradient", "ffffff", argc, argv,
+                        "cx0", &cx0,
+                        "cy0", &cy0,
+                        "radius0", &radius0,
+                        "cx1", &cx1,
+                        "cy1", &cy1,
+                        "radius1", &radius1))
+        return JS_FALSE;
+
+    pattern = cairo_pattern_create_radial(cx0, cy0, radius0, cx1, cy1, radius1);
+    status = cairo_pattern_status(pattern);
+    if (status != CAIRO_STATUS_SUCCESS) {
+        gjs_throw(context, "Failed to create cairo pattern: %s",
+                  cairo_status_to_string(status));
+        return JS_FALSE;
+    }
+    gjs_cairo_pattern_construct(context, obj, pattern);
+
+    return JS_TRUE;
+}
+
+static void
+gjs_cairo_radial_gradient_finalize(JSContext *context,
+                                   JSObject  *obj)
+{
+    gjs_cairo_pattern_finalize_pattern(context, obj);
+}
+
+static JSPropertySpec gjs_cairo_radial_gradient_proto_props[] = {
+    { NULL }
+};
+
+static JSFunctionSpec gjs_cairo_radial_gradient_proto_funcs[] = {
+    // getRadialCircles
+    { NULL }
+};
diff --git a/modules/cairo.c b/modules/cairo.c
index 6eddfcd..474f07f 100644
--- a/modules/cairo.c
+++ b/modules/cairo.c
@@ -90,6 +90,11 @@ gjs_js_define_cairo_stuff(JSContext      *context,
     if (obj == JSVAL_NULL)
         return JS_FALSE;
 
+    obj = gjs_cairo_radial_gradient_create_proto(context, module_obj,
+                                                 "RadialGradient", gradient_proto);
+    if (obj == JSVAL_NULL)
+        return JS_FALSE;
+
     return JS_TRUE;
 }
 



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