blob: 4f8e9083bedf508cc05a5f2416e3dfee56291829 [file] [log] [blame]
gwt.team.knorton3bee6a42006-12-11 01:16:34 +00001/*
gwt.team.scottb5aa171d2007-04-11 21:11:15 +00002 * Copyright 2007 Google Inc.
gwt.team.knorton3bee6a42006-12-11 01:16:34 +00003 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
gwt.team.scottbab0aa682006-12-06 23:14:19 +000016#ifndef FUNCTION_OBJECT_H
17#define FUNCTION_OBJECT_H
18
19#include "gwt-webkit.h"
20#include <kjs/object.h>
21
22class FunctionObject : public KJS::JSObject {
23protected:
gwt.team.scottb5aa171d2007-04-11 21:11:15 +000024 FunctionObject(const KJS::UString& name);
gwt.team.scottbab0aa682006-12-06 23:14:19 +000025
26public:
gwt.team.scottb5aa171d2007-04-11 21:11:15 +000027 const KJS::ClassInfo *classInfo() const { return &info; }
gwt.team.scottbab0aa682006-12-06 23:14:19 +000028
gwt.team.scottb5aa171d2007-04-11 21:11:15 +000029 // shared implementations of JSObject methods
30 virtual bool getOwnPropertySlot(KJS::ExecState*, const KJS::Identifier&,
31 KJS::PropertySlot&);
32 virtual bool canPut(KJS::ExecState*, const KJS::Identifier&) const;
33 virtual void put(KJS::ExecState*, const KJS::Identifier&, KJS::JSValue*, int);
34 virtual bool deleteProperty(KJS::ExecState*, const KJS::Identifier&);
35 virtual KJS::JSValue *defaultValue(KJS::ExecState*, KJS::JSType) const;
36 virtual bool implementsCall() const;
37
38 // subclasses must implement
39 virtual KJS::JSValue *callAsFunction(KJS::ExecState*, KJS::JSObject*,
40 const KJS::List&) = 0;
gwt.team.scottbab0aa682006-12-06 23:14:19 +000041
gwt.team.scottb5aa171d2007-04-11 21:11:15 +000042 static const KJS::ClassInfo info;
gwt.team.scottbab0aa682006-12-06 23:14:19 +000043
44private:
gwt.team.scottb5aa171d2007-04-11 21:11:15 +000045 static KJS::JSValue* getter(KJS::ExecState*, KJS::JSObject*,
46 const KJS::Identifier&, const KJS::PropertySlot&);
gwt.team.scottbab0aa682006-12-06 23:14:19 +000047
48private:
gwt.team.scottb5aa171d2007-04-11 21:11:15 +000049 KJS::UString name;
gwt.team.scottbab0aa682006-12-06 23:14:19 +000050};
51
52class ToStringFunction : public FunctionObject {
53public:
gwt.team.scottb5aa171d2007-04-11 21:11:15 +000054 ToStringFunction();
55 virtual KJS::JSValue *callAsFunction(KJS::ExecState*, KJS::JSObject*,
56 const KJS::List&);
gwt.team.scottbab0aa682006-12-06 23:14:19 +000057};
58
59#endif