From ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- khtml/ecma/kjs_mozilla.cpp | 94 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 khtml/ecma/kjs_mozilla.cpp (limited to 'khtml/ecma/kjs_mozilla.cpp') diff --git a/khtml/ecma/kjs_mozilla.cpp b/khtml/ecma/kjs_mozilla.cpp new file mode 100644 index 000000000..4b1520b9a --- /dev/null +++ b/khtml/ecma/kjs_mozilla.cpp @@ -0,0 +1,94 @@ +// -*- c-basic-offset: 2 -*- +/* + * This file is part of the KDE libraries + * Copyright (c) 2003 George Staikos (staikos@kde.org) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library 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 + */ + +#include +#include + +#include "kjs_mozilla.h" +#include "kjs/lookup.h" +#include "kjs_binding.h" +#include "khtml_part.h" +#include "kjs_mozilla.lut.h" + +using namespace KJS; + +namespace KJS { + +const ClassInfo MozillaSidebarExtension::info = { "sidebar", 0, &MozillaSidebarExtensionTable, 0 }; +/* +@begin MozillaSidebarExtensionTable 1 + addPanel MozillaSidebarExtension::addPanel DontDelete|Function 0 +@end +*/ +} +IMPLEMENT_PROTOFUNC_DOM(MozillaSidebarExtensionFunc) + +MozillaSidebarExtension::MozillaSidebarExtension(ExecState *exec, KHTMLPart *p) + : ObjectImp(exec->interpreter()->builtinObjectPrototype()), m_part(p) { } + +Value MozillaSidebarExtension::get(ExecState *exec, const Identifier &propertyName) const +{ +#ifdef KJS_VERBOSE + kdDebug(6070) << "MozillaSidebarExtension::get " << propertyName.ascii() << endl; +#endif + return lookupGet(exec,propertyName,&MozillaSidebarExtensionTable,this); +} + +Value MozillaSidebarExtension::getValueProperty(ExecState *exec, int token) const +{ + Q_UNUSED(exec); + switch (token) { + default: + kdDebug(6070) << "WARNING: Unhandled token in MozillaSidebarExtension::getValueProperty : " << token << endl; + return Value(); + } +} + +Value MozillaSidebarExtensionFunc::tryCall(ExecState *exec, Object &thisObj, const List &args) +{ + KJS_CHECK_THIS( KJS::MozillaSidebarExtension, thisObj ); + MozillaSidebarExtension *mse = static_cast(thisObj.imp()); + + KHTMLPart *part = mse->part(); + if (!part) + return Undefined(); + + // addPanel() id == 0 + KParts::BrowserExtension *ext = part->browserExtension(); + if (ext) { + QString url, name; + if (args.size() == 1) { // I've seen this, don't know if it's legal. + name = QString::null; + url = args[0].toString(exec).qstring(); + } else if (args.size() == 2 || args.size() == 3) { + name = args[0].toString(exec).qstring(); + url = args[1].toString(exec).qstring(); + // 2 is the "CURL" which I don't understand and don't think we need. + } else { + return Boolean(false); + } + emit ext->addWebSideBar(KURL( url ), name); + return Boolean(true); + } + + return Undefined(); +} + + -- cgit v1.2.1