gwt.team.knorton | 3bee6a4 | 2006-12-11 01:16:34 +0000 | [diff] [blame] | 1 | /* |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 2 | * Copyright 2007 Google Inc. |
gwt.team.knorton | 3bee6a4 | 2006-12-11 01:16:34 +0000 | [diff] [blame] | 3 | * |
| 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.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 16 | #ifndef FUNCTION_OBJECT_H |
| 17 | #define FUNCTION_OBJECT_H |
| 18 | |
| 19 | #include "gwt-webkit.h" |
| 20 | #include <kjs/object.h> |
| 21 | |
| 22 | class FunctionObject : public KJS::JSObject { |
| 23 | protected: |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 24 | FunctionObject(const KJS::UString& name); |
gwt.team.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 25 | |
| 26 | public: |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 27 | const KJS::ClassInfo *classInfo() const { return &info; } |
gwt.team.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 28 | |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 29 | // 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.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 41 | |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 42 | static const KJS::ClassInfo info; |
gwt.team.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 43 | |
| 44 | private: |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 45 | static KJS::JSValue* getter(KJS::ExecState*, KJS::JSObject*, |
| 46 | const KJS::Identifier&, const KJS::PropertySlot&); |
gwt.team.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 47 | |
| 48 | private: |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 49 | KJS::UString name; |
gwt.team.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | class ToStringFunction : public FunctionObject { |
| 53 | public: |
gwt.team.scottb | 5aa171d | 2007-04-11 21:11:15 +0000 | [diff] [blame] | 54 | ToStringFunction(); |
| 55 | virtual KJS::JSValue *callAsFunction(KJS::ExecState*, KJS::JSObject*, |
| 56 | const KJS::List&); |
gwt.team.scottb | ab0aa68 | 2006-12-06 23:14:19 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | #endif |