webengine/osswebengine/DerivedSources/WebCore/JSSVGPathSegList.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 16 Apr 2010 16:07:13 +0300
changeset 66 cacf6ee57968
parent 0 dd21522fd290
permissions -rw-r--r--
Revision: 201006 Kit: 201015

/*
    This file is part of the WebKit open source project.
    This file has been generated by generate-bindings.pl. DO NOT MODIFY!

    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; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#include "config.h"


#if ENABLE(SVG)

#include "Document.h"
#include "Frame.h"
#include "SVGDocumentExtensions.h"
#include "SVGElement.h"
#include "SVGAnimatedTemplate.h"
#include "JSSVGPathSegList.h"

#include <wtf/GetPtr.h>

#include "SVGPathSegList.h"

using namespace KJS;

namespace WebCore {

/* Hash table */

static const HashEntry JSSVGPathSegListTableEntries[] =
{
    { "numberOfItems", JSSVGPathSegList::NumberOfItemsAttrNum, DontDelete|ReadOnly, 0, 0 }
};

static const HashTable JSSVGPathSegListTable = 
{
    2, 1, JSSVGPathSegListTableEntries, 1
};

/* Hash table for prototype */

static const HashEntry JSSVGPathSegListPrototypeTableEntries[] =
{
    { 0, 0, 0, 0, 0 },
    { "clear", JSSVGPathSegList::ClearFuncNum, DontDelete|Function, 0, &JSSVGPathSegListPrototypeTableEntries[9] },
    { "getItem", JSSVGPathSegList::GetItemFuncNum, DontDelete|Function, 1, &JSSVGPathSegListPrototypeTableEntries[7] },
    { "insertItemBefore", JSSVGPathSegList::InsertItemBeforeFuncNum, DontDelete|Function, 2, &JSSVGPathSegListPrototypeTableEntries[8] },
    { 0, 0, 0, 0, 0 },
    { 0, 0, 0, 0, 0 },
    { "initialize", JSSVGPathSegList::InitializeFuncNum, DontDelete|Function, 1, 0 },
    { "replaceItem", JSSVGPathSegList::ReplaceItemFuncNum, DontDelete|Function, 2, 0 },
    { "removeItem", JSSVGPathSegList::RemoveItemFuncNum, DontDelete|Function, 1, 0 },
    { "appendItem", JSSVGPathSegList::AppendItemFuncNum, DontDelete|Function, 1, 0 }
};

static const HashTable JSSVGPathSegListPrototypeTable = 
{
    2, 10, JSSVGPathSegListPrototypeTableEntries, 7
};

const ClassInfo JSSVGPathSegListPrototype::info = { "SVGPathSegListPrototype", 0, &JSSVGPathSegListPrototypeTable, 0 };

JSObject* JSSVGPathSegListPrototype::self(ExecState* exec)
{
    return KJS::cacheGlobalObject<JSSVGPathSegListPrototype>(exec, "[[JSSVGPathSegList.prototype]]");
}

bool JSSVGPathSegListPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
    return getStaticFunctionSlot<JSSVGPathSegListPrototypeFunction, JSObject>(exec, &JSSVGPathSegListPrototypeTable, this, propertyName, slot);
}

const ClassInfo JSSVGPathSegList::info = { "SVGPathSegList", 0, &JSSVGPathSegListTable, 0 };

JSSVGPathSegList::JSSVGPathSegList(ExecState* exec, SVGPathSegList* impl)
    : m_impl(impl)
{
    setPrototype(JSSVGPathSegListPrototype::self(exec));
}

JSSVGPathSegList::~JSSVGPathSegList()
{
    ScriptInterpreter::forgetDOMObject(m_impl.get());
}

bool JSSVGPathSegList::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
    return getStaticValueSlot<JSSVGPathSegList, KJS::DOMObject>(exec, &JSSVGPathSegListTable, this, propertyName, slot);
}

JSValue* JSSVGPathSegList::getValueProperty(ExecState* exec, int token) const
{
    switch (token) {
    case NumberOfItemsAttrNum: {
        SVGPathSegList* imp = static_cast<SVGPathSegList*>(impl());

        return jsNumber(imp->numberOfItems());
    }
    }
    return 0;
}

JSValue* JSSVGPathSegListPrototypeFunction::callAsFunction(ExecState* exec, JSObject* thisObj, const List& args)
{
    if (!thisObj->inherits(&JSSVGPathSegList::info))
      return throwError(exec, TypeError);

    SVGPathSegList* imp = static_cast<SVGPathSegList*>(static_cast<JSSVGPathSegList*>(thisObj)->impl());

    switch (id) {
    case JSSVGPathSegList::ClearFuncNum: {
        return static_cast<JSSVGPathSegList*>(thisObj)->clear(exec, args);
    }
    case JSSVGPathSegList::InitializeFuncNum: {
        return static_cast<JSSVGPathSegList*>(thisObj)->initialize(exec, args);
    }
    case JSSVGPathSegList::GetItemFuncNum: {
        return static_cast<JSSVGPathSegList*>(thisObj)->getItem(exec, args);
    }
    case JSSVGPathSegList::InsertItemBeforeFuncNum: {
        return static_cast<JSSVGPathSegList*>(thisObj)->insertItemBefore(exec, args);
    }
    case JSSVGPathSegList::ReplaceItemFuncNum: {
        return static_cast<JSSVGPathSegList*>(thisObj)->replaceItem(exec, args);
    }
    case JSSVGPathSegList::RemoveItemFuncNum: {
        return static_cast<JSSVGPathSegList*>(thisObj)->removeItem(exec, args);
    }
    case JSSVGPathSegList::AppendItemFuncNum: {
        return static_cast<JSSVGPathSegList*>(thisObj)->appendItem(exec, args);
    }
    }
    (void)imp;
    return 0;
}
KJS::JSValue* toJS(KJS::ExecState* exec, SVGPathSegList* obj)
{
    return KJS::cacheDOMObject<SVGPathSegList, JSSVGPathSegList>(exec, obj);
}
SVGPathSegList* toSVGPathSegList(KJS::JSValue* val)
{
    return val->isObject(&JSSVGPathSegList::info) ? static_cast<JSSVGPathSegList*>(val)->impl() : 0;
}

}

#endif // ENABLE(SVG)