/* * Copyright (C) 2000 Harri Porten (porten@kde.org) * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reseved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef JSLocation_h #define JSLocation_h #include "kjs_binding.h" namespace KJS { class Window; } namespace WebCore { class Frame; class JSLocation : public DOMObject { typedef DOMObject Base; friend class KJS::Window; public: JSLocation(KJS::JSObject* protoype, Frame*); virtual bool getOwnPropertySlot(KJS::ExecState*, const KJS::Identifier&, KJS::PropertySlot&); KJS::JSValue* getValueProperty(KJS::ExecState*, int token) const; virtual void put(KJS::ExecState*, const KJS::Identifier&, KJS::JSValue*); virtual bool deleteProperty(KJS::ExecState*, const KJS::Identifier&); virtual void getPropertyNames(KJS::ExecState*, KJS::PropertyNameArray&); enum { Hash, Href, Hostname, Host, Pathname, Port, Protocol, Search, Replace, Reload, ToString, Assign }; Frame* frame() const { return m_frame; } virtual const KJS::ClassInfo* classInfo() const { return &info; } static const KJS::ClassInfo info; private: bool customGetOwnPropertySlot(KJS::ExecState*, const KJS::Identifier&, KJS::PropertySlot&); Frame* m_frame; }; // Functions KJS::JSValue* jsLocationProtoFuncAssign(KJS::ExecState*, KJS::JSObject*, const KJS::List&); KJS::JSValue* jsLocationProtoFuncToString(KJS::ExecState*, KJS::JSObject*, const KJS::List&); KJS::JSValue* jsLocationProtoFuncReplace(KJS::ExecState*, KJS::JSObject*, const KJS::List&); KJS::JSValue* jsLocationProtoFuncReload(KJS::ExecState*, KJS::JSObject*, const KJS::List&); } // namespace WebCore #endif // JSLocation_h