summaryrefslogtreecommitdiff
path: root/javascript/jsapi
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2012-07-01 10:10:00 +0100
committerVincent Sanders <vince@kyllikki.org>2012-07-02 22:48:41 +0100
commit274a76d97a878ef66155a215e1d16c33998f5597 (patch)
treecd69338034ad4d8694bdd79e723c859e60f62662 /javascript/jsapi
parent44f448b7c0f6ea5210cc097f3fa6652207df2a12 (diff)
downloadnetsurf-274a76d97a878ef66155a215e1d16c33998f5597.tar.gz
netsurf-274a76d97a878ef66155a215e1d16c33998f5597.tar.bz2
Add initial navigator object creation.
Basic navigator object outline ready to add methods to. The navigator object contains all the information about the browser Signed-Off-By: Vincent Sanders <vince@netsurf-browser.org>
Diffstat (limited to 'javascript/jsapi')
-rw-r--r--javascript/jsapi/navigator.c55
-rw-r--r--javascript/jsapi/window.c32
2 files changed, 87 insertions, 0 deletions
diff --git a/javascript/jsapi/navigator.c b/javascript/jsapi/navigator.c
new file mode 100644
index 000000000..44af710ad
--- /dev/null
+++ b/javascript/jsapi/navigator.c
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "javascript/jsapi.h"
+
+#include "utils/log.h"
+
+static JSFunctionSpec jsfunctions_navigator[] = {
+ JS_FS_END
+};
+
+static JSClass jsclass_navigator =
+{
+ "navigator",
+ JSCLASS_HAS_PRIVATE,
+ JS_PropertyStub,
+ JS_PropertyStub,
+ JS_PropertyStub,
+ JS_StrictPropertyStub,
+ JS_EnumerateStub,
+ JS_ResolveStub,
+ JS_ConvertStub,
+ JS_FinalizeStub,
+ JSCLASS_NO_OPTIONAL_MEMBERS
+};
+
+
+JSObject *jsapi_new_navigator(JSContext *cx, JSObject *parent)
+{
+ return JS_InitClass(cx,
+ parent,
+ NULL,
+ &jsclass_navigator,
+ NULL,
+ 0,
+ NULL,
+ jsfunctions_navigator,
+ NULL,
+ NULL);
+}
diff --git a/javascript/jsapi/window.c b/javascript/jsapi/window.c
index f1c845152..06e6cdfe8 100644
--- a/javascript/jsapi/window.c
+++ b/javascript/jsapi/window.c
@@ -202,8 +202,40 @@ static JSBool JSAPI_NATIVE(prompt, JSContext *cx, uintN argc, jsval *vp)
return JS_TRUE;
}
+static JSBool JSAPI_NATIVE(close, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
+static JSBool JSAPI_NATIVE(stop, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
+static JSBool JSAPI_NATIVE(focus, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
+static JSBool JSAPI_NATIVE(blur, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
static JSFunctionSpec jsfunctions_window[] =
{
+ JSAPI_FS(close, 0, 0),
+ JSAPI_FS(stop, 0, 0),
+ JSAPI_FS(focus, 0, 0),
+ JSAPI_FS(blur, 0, 0),
JSAPI_FS(alert, 1, 0),
JSAPI_FS(confirm, 1, 0),
JSAPI_FS(prompt, 1, 0),