summaryrefslogtreecommitdiffstats
path: root/ksvg/ecma/ksvg_bridge.h
blob: 784dea1592cc9435459d822552563a08cfde9753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
    Copyright (C) 2002-2003 KSVG Team
	This file is part of the KDE project

    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.
*/

#ifndef KSVGBridge_H
#define KSVGBridge_H

#include <kdebug.h>

#include <kjs/object.h>
#include <kjs/lookup.h>
#include <kjs/interpreter.h> // for ExecState

namespace KJS
{
	class Value;
	class UString;
	class ExecState;
}

// Base class for all bridges
// The T class must provide prototype(exec), get and hasProperty
// and have a static s_classInfo object
template<class T>
class KSVGBridge : public KJS::ObjectImp
{
public:
	KSVGBridge(KJS::ExecState *exec, T *impl) : KJS::ObjectImp(impl->prototype(exec)), m_impl(impl) { }

	T *impl() const { return m_impl; }

	virtual KJS::Value get(KJS::ExecState *exec, const KJS::Identifier &propertyName) const
	{
		kdDebug(26004) << "KSVGBridge::get(), " << propertyName.qstring() << " Name: " << classInfo()->className << " Object: " << m_impl << endl;

		// Look for standard properties (e.g. those in the hashtables)
		KJS::Value val = m_impl->get(exec, propertyName, this);

		if(val.type() != KJS::UndefinedType)
			return val;

		// Not found -> forward to ObjectImp.
		val = KJS::ObjectImp::get(exec, propertyName);
		if(val.type() == KJS::UndefinedType)
			kdDebug(26004) << "WARNING: " << propertyName.qstring() << " not found in... Name: " << classInfo()->className << " Object: " << m_impl << " on line : " << exec->context().curStmtFirstLine() << endl;
		return val;
	}

	virtual bool hasProperty(KJS::ExecState *exec, const KJS::Identifier &propertyName) const
	{
		kdDebug(26004) << "KSVGBridge::hasProperty(), " << propertyName.qstring() << " Name: " << classInfo()->className << " Object: " << m_impl << endl;

		if(m_impl->hasProperty(exec, propertyName))
			return true;

		return KJS::ObjectImp::hasProperty(exec, propertyName);
	}

	virtual const KJS::ClassInfo *classInfo() const { return &T::s_classInfo; }

protected:
	T *m_impl;
};

// Base class for readwrite bridges
// T must also implement put (use KSVG_PUT in the header file)
template<class T>
class KSVGRWBridge : public KSVGBridge<T>
{
public:
	KSVGRWBridge(KJS::ExecState *exec, T *impl) : KSVGBridge<T>(exec, impl) { }

	virtual void put(KJS::ExecState *exec, const KJS::Identifier &propertyName, const KJS::Value &value, int attr)
	{
//		if(!(attr & KJS::Internal))
//			kdDebug(26004) << "KSVGBridge::put(), " << propertyName.qstring() << " Name: " << classInfo()->className << " Object: " << m_impl << endl;

		// Try to see if we know this property (and need to take special action)
      if(this->m_impl->put(exec, propertyName, value, attr))
			return;

		// We don't -> set property in ObjectImp.
		KJS::ObjectImp::put(exec, propertyName, value, attr);
	}
};

#endif