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
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" />
<xsl:template match="/doxygen/compounddef">
<xsl:variable name="clazz" select="compoundname" />
<xsl:variable name="consmeth" select="sectiondef/memberdef[@kind='function' and @prot='public']" />
#ifndef KJSEMBED_<xsl:value-of select="$clazz" />_H
#define KJSEMBED_<xsl:value-of select="$clazz" />_H
#include <kjs/interpreter.h>
#include <kjs/object.h>
#include <kjsembed/jsobjectproxy_imp.h>
class <xsl:value-of select="$clazz" />;
/**
* Namespace containing the KJSEmbed library.
*/
namespace KJSEmbed {
/**
* Wrapper class for <xsl:value-of select="$clazz" /> methods.
*
* @author Richard Moore, rich@kde.org
*/
class <xsl:value-of select="$clazz" />Imp : public JSProxyImp
{
public:
/** Enumerates the methods supported by this class. */
enum Methods {
<xsl:for-each select="$consmeth">
<xsl:variable name="method_name"><xsl:value-of select="name" />_<xsl:value-of select="position()" /></xsl:variable>
<xsl:choose>
<xsl:when test="not(starts-with( name, 'operator' ) or starts-with( name, '~' ) or starts-with( name, $clazz ))">
Method_<xsl:value-of select="$method_name" />,</xsl:when>
</xsl:choose>
</xsl:for-each>
Method_Last = -1
};
<xsl:value-of select="$clazz" />Imp( KJS::ExecState *exec, int id );
~<xsl:value-of select="$clazz" />Imp();
static void addBindings( KJS::ExecState *exec, KJS::Object &object );
static <xsl:value-of select="$clazz" /> *to<xsl:value-of select="$clazz" />( KJS::Object &object );
//
// Methods implemented by this class.
//
<xsl:for-each select="$consmeth">
<xsl:variable name="method_name"><xsl:value-of select="name" />_<xsl:value-of select="position()" /></xsl:variable>
<xsl:choose>
<xsl:when test="not(starts-with( name, 'operator' ) or starts-with( name, '~' ) or starts-with( name, $clazz ))">
KJS::Value <xsl:value-of select="$method_name" />( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args );</xsl:when>
</xsl:choose>
</xsl:for-each>
//
// JS binding code.
//
/** Returns true iff this object implements the call function. */
virtual bool implementsCall() const { return true; }
/** Invokes the call function. */
virtual KJS::Value call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args );
private:
<xsl:value-of select="$clazz" /> *instance; // Temp
int mid;
};
} // namespace KJSEmbed
#endif // KJSEMBED_<xsl:value-of select="compoundname" />_H
// Local Variables:
// c-basic-offset: 4
// End:
</xsl:template>
</xsl:stylesheet>
|