1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2010 litl, LLC.
#include <config.h>
#include <cairo.h>
#include <js/CallArgs.h>
#include <js/PropertyDescriptor.h> // for JSPROP_READONLY
#include <js/PropertySpec.h>
#include <js/RootingAPI.h>
#include <js/TypeDecls.h>
#include <jsapi.h> // for JS_NewObjectWithGivenProto
#include <jspubtd.h> // for JSProtoKey
#include "gjs/jsapi-util-args.h"
#include "gjs/jsapi-util.h"
#include "gjs/macros.h"
#include "modules/cairo-private.h"
JSObject* CairoSurfacePattern::new_proto(JSContext* cx, JSProtoKey) {
JS::RootedObject parent_proto(cx, CairoPattern::prototype(cx));
return JS_NewObjectWithGivenProto(cx, nullptr, parent_proto);
}
cairo_pattern_t* CairoSurfacePattern::constructor_impl(
JSContext* cx, const JS::CallArgs& args) {
JS::RootedObject surface_wrapper{cx};
if (!gjs_parse_call_args(cx, "SurfacePattern", args, "o", "surface",
&surface_wrapper))
return nullptr;
cairo_surface_t* surface = CairoSurface::for_js(cx, surface_wrapper);
if (!surface)
return nullptr;
cairo_pattern_t* pattern = cairo_pattern_create_for_surface(surface);
if (!gjs_cairo_check_status(cx, cairo_pattern_status(pattern), "pattern"))
return nullptr;
return pattern;
}
const JSPropertySpec CairoSurfacePattern::proto_props[] = {
JS_STRING_SYM_PS(toStringTag, "SurfacePattern", JSPROP_READONLY),
JS_PS_END};
GJS_JSAPI_RETURN_CONVENTION
static bool setExtend_func(JSContext* cx, unsigned argc, JS::Value* vp) {
GJS_GET_THIS(cx, argc, vp, argv, obj);
cairo_extend_t extend;
if (!gjs_parse_call_args(cx, "setExtend", argv, "i", "extend", &extend))
return false;
cairo_pattern_t* pattern = CairoPattern::for_js(cx, obj);
if (!pattern)
return false;
cairo_pattern_set_extend(pattern, extend);
if (!gjs_cairo_check_status(cx, cairo_pattern_status(pattern), "pattern"))
return false;
argv.rval().setUndefined();
return true;
}
GJS_JSAPI_RETURN_CONVENTION
static bool getExtend_func(JSContext* cx, unsigned argc, JS::Value* vp) {
GJS_GET_THIS(cx, argc, vp, rec, obj);
if (argc > 0) {
gjs_throw(cx, "SurfacePattern.getExtend() requires no arguments");
return false;
}
cairo_pattern_t* pattern = CairoPattern::for_js(cx, obj);
if (!pattern)
return false;
cairo_extend_t extend = cairo_pattern_get_extend(pattern);
if (!gjs_cairo_check_status(cx, cairo_pattern_status(pattern), "pattern"))
return false;
rec.rval().setInt32(extend);
return true;
}
GJS_JSAPI_RETURN_CONVENTION
static bool setFilter_func(JSContext* cx, unsigned argc, JS::Value* vp) {
GJS_GET_THIS(cx, argc, vp, argv, obj);
cairo_filter_t filter;
if (!gjs_parse_call_args(cx, "setFilter", argv, "i", "filter", &filter))
return false;
cairo_pattern_t* pattern = CairoPattern::for_js(cx, obj);
if (!pattern)
return false;
cairo_pattern_set_filter(pattern, filter);
if (!gjs_cairo_check_status(cx, cairo_pattern_status(pattern), "pattern"))
return false;
argv.rval().setUndefined();
return true;
}
GJS_JSAPI_RETURN_CONVENTION
static bool getFilter_func(JSContext* cx, unsigned argc, JS::Value* vp) {
GJS_GET_THIS(cx, argc, vp, rec, obj);
if (argc > 0) {
gjs_throw(cx, "SurfacePattern.getFilter() requires no arguments");
return false;
}
cairo_pattern_t* pattern = CairoPattern::for_js(cx, obj);
if (!pattern)
return false;
cairo_filter_t filter = cairo_pattern_get_filter(pattern);
if (!gjs_cairo_check_status(cx, cairo_pattern_status(pattern), "pattern"))
return false;
rec.rval().setInt32(filter);
return true;
}
// clang-format off
const JSFunctionSpec CairoSurfacePattern::proto_funcs[] = {
JS_FN("setExtend", setExtend_func, 0, 0),
JS_FN("getExtend", getExtend_func, 0, 0),
JS_FN("setFilter", setFilter_func, 0, 0),
JS_FN("getFilter", getFilter_func, 0, 0),
JS_FS_END};
// clang-format on
|