summaryrefslogtreecommitdiffstats
path: root/ksvg/dom/SVGWindow.cpp
blob: 22a8dcc048f918859b99caa334a96b29307a198f (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
    Copyright (C) 2001-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.
*/

#include "SVGWindow.h"
#include "SVGWindowImpl.h"
#include "SVGDocument.h"

using namespace KSVG;

SVGWindow::SVGWindow()
{
	impl = new SVGWindowImpl();
	impl->ref();
}

SVGWindow::SVGWindow(const SVGWindow &other) : impl(0)
{
	(*this) = other;
}

SVGWindow &SVGWindow::operator =(const SVGWindow &other)
{
	if(impl == other.impl)
		return *this;

	if(impl)
		impl->deref();

	impl = other.impl;

	if(impl)
		impl->ref();

	return *this;
}

SVGWindow::SVGWindow(SVGWindowImpl *other)
{
	impl = other;
	if(impl)
		impl->ref();
}

SVGWindow::~SVGWindow()
{
	if(impl)
		impl->deref();
}

/*StyleSheet SVGWindow::defaultStyleSheet() const
{
	if(!impl) return ; // FIXME
	return impl->defaultStyleSheet();
}*/

SVGDocument SVGWindow::document() const
{
	if(!impl) return SVGDocument(0); // FIXME
	return impl->document();
}

DOM::Event SVGWindow::evt() const
{
	if(!impl) return DOM::Event(); // FIXME
	return impl->evt();
}

long SVGWindow::innerHeight() const
{
	if(!impl) return 0; // FIXME
	return impl->innerHeight();
}

long SVGWindow::innerWidth() const
{
	if(!impl) return 0; // FIXME
	return impl->innerWidth();
}

void SVGWindow::setSrc(const DOM::DOMString &src)
{
	if(impl)
		impl->setSrc(src);
}

DOM::DOMString SVGWindow::src() const
{
	if(!impl) return DOM::DOMString(); // FIXME
	return impl->src();
}

void SVGWindow::clearInterval(long interval)
{
	if(impl)
		impl->clearInterval(interval);
}

void SVGWindow::clearTimeout(long timeout)
{
	if(impl)
		impl->clearTimeout(timeout);
}

void SVGWindow::getURL(const DOM::DOMString &uri, const DOM::EventListener &callback)
{
	if(impl)
		impl->getURL(uri, callback);
}

/*DocumentFragment SVGWindow::parseXML(const DOM::DOMString &source, const Document &document)
{
	if(!impl) return ; // FIXME
	return impl->parseXML(source, document);
}*/

void SVGWindow::postURL(const DOM::DOMString &uri, const DOM::DOMString &data, const DOM::EventListener &callback, const DOM::DOMString &mimeType, const DOM::DOMString &contentEncoding)
{
	if(impl)
		impl->postURL(uri, data, callback, mimeType, contentEncoding);
}

DOM::DOMString SVGWindow::printNode(const DOM::Node &node)
{
	if(!impl) return DOM::DOMString(); // FIXME
	return impl->printNode(node);
}

long SVGWindow::setInterval(const DOM::DOMString &code, const long &delay)
{
	if(!impl) return 0; // FIXME
	return impl->setInterval(code, delay);
}

long SVGWindow::setTimeout(const DOM::DOMString &code, const long &delay)
{
	if(!impl) return 0; // FIXME
	return impl->setTimeout(code, delay);
}

void SVGWindow::alert(const DOM::DOMString &message)
{
	if(impl)
		impl->alert(message);
}

bool SVGWindow::confirm(const DOM::DOMString &message)
{
	if(!impl) return false; // FIXME
	return impl->confirm(message);
}

DOM::DOMString SVGWindow::prompt(const DOM::DOMString &message, const DOM::DOMString &_default)
{
	if(!impl) return DOM::DOMString(); // FIXME
	return impl->prompt(message, _default);
}