summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/JSSVGPointListCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/JSSVGPointListCustom.cpp')
-rw-r--r--WebCore/bindings/js/JSSVGPointListCustom.cpp190
1 files changed, 190 insertions, 0 deletions
diff --git a/WebCore/bindings/js/JSSVGPointListCustom.cpp b/WebCore/bindings/js/JSSVGPointListCustom.cpp
new file mode 100644
index 0000000..af4fc91
--- /dev/null
+++ b/WebCore/bindings/js/JSSVGPointListCustom.cpp
@@ -0,0 +1,190 @@
+/*
+ * Copyright (C) 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@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; 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 "JSSVGPointList.h"
+
+#include "Document.h"
+#include "Frame.h"
+#include "JSSVGPoint.h"
+#include "SVGDocumentExtensions.h"
+#include "SVGPointList.h"
+#include "SVGStyledElement.h"
+
+#include <wtf/Assertions.h>
+
+using namespace KJS;
+
+namespace WebCore {
+
+JSValue* JSSVGPointList::clear(ExecState* exec, const List&)
+{
+ ExceptionCode ec = 0;
+
+ SVGPointList* imp = static_cast<SVGPointList*>(impl());
+ imp->clear(ec);
+ setDOMException(exec, ec);
+
+ m_context->svgAttributeChanged(imp->associatedAttributeName());
+
+ return jsUndefined();
+}
+
+JSValue* JSSVGPointList::initialize(ExecState* exec, const List& args)
+{
+ ExceptionCode ec = 0;
+ FloatPoint newItem = toSVGPoint(args[0]);
+
+ SVGPointList* imp = static_cast<SVGPointList*>(impl());
+ SVGList<RefPtr<SVGPODListItem<FloatPoint> > >* listImp = imp;
+
+ SVGPODListItem<FloatPoint>* listItem = listImp->initialize(SVGPODListItem<FloatPoint>::copy(newItem), ec).get();
+ JSSVGPODTypeWrapperCreatorForList<FloatPoint>* obj = new JSSVGPODTypeWrapperCreatorForList<FloatPoint>(listItem, imp->associatedAttributeName());
+
+ KJS::JSValue* result = toJS(exec, obj, m_context.get());
+ setDOMException(exec, ec);
+
+ m_context->svgAttributeChanged(imp->associatedAttributeName());
+
+ return result;
+}
+
+JSValue* JSSVGPointList::getItem(ExecState* exec, const List& args)
+{
+ ExceptionCode ec = 0;
+
+ bool indexOk;
+ unsigned index = args[0]->toInt32(exec, indexOk);
+ if (!indexOk) {
+ setDOMException(exec, TYPE_MISMATCH_ERR);
+ return jsUndefined();
+ }
+
+ SVGPointList* imp = static_cast<SVGPointList*>(impl());
+ SVGList<RefPtr<SVGPODListItem<FloatPoint> > >* listImp = imp;
+
+ SVGPODListItem<FloatPoint>* listItem = listImp->getItem(index, ec).get();
+ JSSVGPODTypeWrapperCreatorForList<FloatPoint>* obj = new JSSVGPODTypeWrapperCreatorForList<FloatPoint>(listItem, imp->associatedAttributeName());
+
+ KJS::JSValue* result = toJS(exec, obj, m_context.get());
+ setDOMException(exec, ec);
+ return result;
+}
+
+JSValue* JSSVGPointList::insertItemBefore(ExecState* exec, const List& args)
+{
+ ExceptionCode ec = 0;
+ FloatPoint newItem = toSVGPoint(args[0]);
+
+ bool indexOk;
+ unsigned index = args[1]->toInt32(exec, indexOk);
+ if (!indexOk) {
+ setDOMException(exec, TYPE_MISMATCH_ERR);
+ return jsUndefined();
+ }
+
+ SVGPointList* imp = static_cast<SVGPointList*>(impl());
+ SVGList<RefPtr<SVGPODListItem<FloatPoint> > >* listImp = imp;
+
+ SVGPODListItem<FloatPoint>* listItem = listImp->insertItemBefore(SVGPODListItem<FloatPoint>::copy(newItem), index, ec).get();
+ JSSVGPODTypeWrapperCreatorForList<FloatPoint>* obj = new JSSVGPODTypeWrapperCreatorForList<FloatPoint>(listItem, imp->associatedAttributeName());
+
+ KJS::JSValue* result = toJS(exec, obj, m_context.get());
+ setDOMException(exec, ec);
+
+ m_context->svgAttributeChanged(imp->associatedAttributeName());
+
+ return result;
+}
+
+JSValue* JSSVGPointList::replaceItem(ExecState* exec, const List& args)
+{
+ ExceptionCode ec = 0;
+ FloatPoint newItem = toSVGPoint(args[0]);
+
+ bool indexOk;
+ unsigned index = args[1]->toInt32(exec, indexOk);
+ if (!indexOk) {
+ setDOMException(exec, TYPE_MISMATCH_ERR);
+ return jsUndefined();
+ }
+
+ SVGPointList* imp = static_cast<SVGPointList*>(impl());
+ SVGList<RefPtr<SVGPODListItem<FloatPoint> > >* listImp = imp;
+
+ SVGPODListItem<FloatPoint>* listItem = listImp->replaceItem(SVGPODListItem<FloatPoint>::copy(newItem), index, ec).get();
+ JSSVGPODTypeWrapperCreatorForList<FloatPoint>* obj = new JSSVGPODTypeWrapperCreatorForList<FloatPoint>(listItem, imp->associatedAttributeName());
+
+ KJS::JSValue* result = toJS(exec, obj, m_context.get());
+ setDOMException(exec, ec);
+
+ m_context->svgAttributeChanged(imp->associatedAttributeName());
+
+ return result;
+}
+
+JSValue* JSSVGPointList::removeItem(ExecState* exec, const List& args)
+{
+ ExceptionCode ec = 0;
+
+ bool indexOk;
+ unsigned index = args[0]->toInt32(exec, indexOk);
+ if (!indexOk) {
+ setDOMException(exec, TYPE_MISMATCH_ERR);
+ return jsUndefined();
+ }
+
+ SVGPointList* imp = static_cast<SVGPointList*>(impl());
+ SVGList<RefPtr<SVGPODListItem<FloatPoint> > >* listImp = imp;
+
+ RefPtr<SVGPODListItem<FloatPoint> > listItem(listImp->removeItem(index, ec));
+ JSSVGPODTypeWrapper<FloatPoint>* obj = new JSSVGPODTypeWrapperCreatorReadOnly<FloatPoint>(*listItem.get());
+
+ KJS::JSValue* result = toJS(exec, obj, m_context.get());
+ setDOMException(exec, ec);
+
+ m_context->svgAttributeChanged(imp->associatedAttributeName());
+
+ return result;
+}
+
+JSValue* JSSVGPointList::appendItem(ExecState* exec, const List& args)
+{
+ ExceptionCode ec = 0;
+ FloatPoint newItem = toSVGPoint(args[0]);
+
+ SVGPointList* imp = static_cast<SVGPointList*>(impl());
+ SVGList<RefPtr<SVGPODListItem<FloatPoint> > >* listImp = imp;
+
+ SVGPODListItem<FloatPoint>* listItem = listImp->appendItem(SVGPODListItem<FloatPoint>::copy(newItem), ec).get();
+ JSSVGPODTypeWrapperCreatorForList<FloatPoint>* obj = new JSSVGPODTypeWrapperCreatorForList<FloatPoint>(listItem, imp->associatedAttributeName());
+
+ KJS::JSValue* result = toJS(exec, obj, m_context.get());
+ setDOMException(exec, ec);
+
+ m_context->svgAttributeChanged(imp->associatedAttributeName());
+
+ return result;
+}
+
+}
+
+#endif // ENABLE(SVG)