summaryrefslogtreecommitdiffstats
path: root/ksvg/impl/SVGLengthImpl.cc
blob: 36789ffe0ccaad06e2d3678afdc68459db6cf230 (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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
/*
    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 <kdebug.h>

#include <tqfont.h>
#include <tqregexp.h>
#include <tqwidget.h>
#include <tqpaintdevicemetrics.h>

#include "SVGLength.h"

#include "SVGRectImpl.h"
#include "SVGLengthImpl.h"
#include "SVGMatrixImpl.h"
#include "SVGHelperImpl.h"
#include "SVGDocumentImpl.h"
#include "SVGStringListImpl.h"
#include "SVGSVGElementImpl.h"
#include "SVGAnimatedLengthImpl.h"
#include "SVGAnimatedRectImpl.h"
#include "svgpathparser.h"

#include "KSVGCanvas.h"

using namespace KSVG;

#include "SVGLengthImpl.lut.h"
#include "ksvg_scriptinterpreter.h"
#include "ksvg_bridge.h"
#include "ksvg_cacheimpl.h"

// keep track of textual description of the unit type
TQString UnitText[] =
{
	"", "", "%", "em", "ex", "px", "cm", "mm", "in", "pt", "pc"
};

SVGLengthImpl::SVGLengthImpl(LengthMode mode, SVGElementImpl *context) : DOM::DomShared(), m_mode(mode), m_context(context)
{
	KSVG_EMPTY_FLAGS

	m_unitType = SVG_LENGTHTYPE_UNKNOWN;
	m_value = 0;
	m_valueInSpecifiedUnits = 0;
	m_bboxContext = 0;
}

SVGLengthImpl::SVGLengthImpl(const SVGLengthImpl &other) : DOM::DomShared()
{
	(*this) = other;
}

SVGLengthImpl::~SVGLengthImpl()
{
}

double SVGLengthImpl::dpi()
{
	if(m_context && m_context->ownerDoc())
	{
		if(m_mode == LENGTHMODE_WIDTH)
			return 25.4 * m_context->ownerDoc()->screenPixelsPerMillimeterX();
		else if(m_mode == LENGTHMODE_HEIGHT)
			return 25.4 * m_context->ownerDoc()->screenPixelsPerMillimeterY();
		else if(m_mode == LENGTHMODE_OTHER)
			return 25.4 * m_context->ownerDoc()->screenPixelsPerMillimeterX();
	}
	return 90.0;
}

SVGLengthImpl &SVGLengthImpl::operator=(const SVGLengthImpl &other)
{
	m_unitType = other.m_unitType;
	m_value	= other.m_value;
	m_valueInSpecifiedUnits	= other.m_valueInSpecifiedUnits;
	m_bboxContext = other.m_bboxContext;
	m_mode = other.m_mode;
	m_context = other.m_context;
	
	return *this;
}

unsigned short SVGLengthImpl::unitType() const
{
	return m_unitType;
}

void SVGLengthImpl::setValue(float value)
{
	m_value = value;
	getValFromPx();
}

float SVGLengthImpl::value()
{
	if(m_unitType == SVG_LENGTHTYPE_PERCENTAGE)
	{
		float value = m_valueInSpecifiedUnits / 100.0;
		SVGRectImpl *bbox = 0;
		if(m_bboxContext && (bbox = m_bboxContext->getBBox()))
		{
			float result = 0;
			if(m_mode == LENGTHMODE_WIDTH)
				result = value * bbox->width();
			else if(m_mode == LENGTHMODE_HEIGHT)
				result = value * bbox->height();
			else if(m_mode == LENGTHMODE_OTHER)
				result = value * sqrt(pow(bbox->width(), 2) + pow(bbox->height(), 2)) / sqrt(2.0);

			bbox->deref();
			return result;
		}
		else
			return percentageOfViewport();
	}
	else
		return m_value;
}

void SVGLengthImpl::setValueInSpecifiedUnits(float valueInSpecifiedUnits)
{
	m_valueInSpecifiedUnits = valueInSpecifiedUnits;
	convertNumToPx();
}

float SVGLengthImpl::valueInSpecifiedUnits() const
{
	return m_valueInSpecifiedUnits;
}

void SVGLengthImpl::setValueAsString(const DOM::DOMString &valueAsString)
{
	convertStringToPx(valueAsString.string());
}

DOM::DOMString SVGLengthImpl::valueAsString() const
{
	DOM::DOMString valueAsString = TQString::number(m_valueInSpecifiedUnits);
	valueAsString += UnitText[m_unitType];
	return valueAsString;
}

void SVGLengthImpl::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits)
{
	m_valueInSpecifiedUnits = valueInSpecifiedUnits;
	m_unitType = unitType;
	convertNumToPx();
}

void SVGLengthImpl::convertToSpecifiedUnits(unsigned short unitType)
{
	m_unitType = unitType;
	getValFromPx();
}

SVGLengthImpl::operator float()
{
	return valueInSpecifiedUnits();
}

bool SVGLengthImpl::getValFromPx()
{
	if(m_unitType == SVG_LENGTHTYPE_UNKNOWN)
		return false;

	switch(m_unitType)
	{
	//	case SVG_LENGTHTYPE_PERCENTAGE: TODO
	//	case SVG_LENGTHTYPE_EMS: TODO
	//	case SVG_LENGTHTYPE_EXS: TODO
			//break;
		case SVG_LENGTHTYPE_PX:
			m_valueInSpecifiedUnits = m_value;
			break;
		case SVG_LENGTHTYPE_CM:
			m_valueInSpecifiedUnits = m_value / dpi() * 2.54;
			break;
		case SVG_LENGTHTYPE_MM:
			m_valueInSpecifiedUnits = m_value / dpi() * 25.4;
			break;
		case SVG_LENGTHTYPE_IN:
			m_valueInSpecifiedUnits = m_value / dpi();
			break;
		case SVG_LENGTHTYPE_PT:
			m_valueInSpecifiedUnits = m_value / dpi() * 72.0;
			break;
		case SVG_LENGTHTYPE_PC:
			m_valueInSpecifiedUnits = m_value / dpi() * 6.0;
			break;
	};
	return true;
}

void SVGLengthImpl::convertStringToPx(TQString s)
{
	if(s.isEmpty())
		return;

	double convNum = 0;
	const char *start = s.latin1();
	const char *end = getNumber(start, convNum);
	m_valueInSpecifiedUnits = convNum;

        if(uint(end - start) < s.length())
	{
		if(s.endsWith(UnitText[SVG_LENGTHTYPE_PX]))
			m_unitType = SVG_LENGTHTYPE_PX;
		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_CM]))
			m_unitType = SVG_LENGTHTYPE_CM;
		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_PC]))
			m_unitType = SVG_LENGTHTYPE_PC;
		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_MM]))
			m_unitType = SVG_LENGTHTYPE_MM;
		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_IN]))
			m_unitType = SVG_LENGTHTYPE_IN;
		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_PT]))
			m_unitType = SVG_LENGTHTYPE_PT;
 		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_PERCENTAGE]))
			m_unitType = SVG_LENGTHTYPE_PERCENTAGE;
		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_EMS]))
			m_unitType = SVG_LENGTHTYPE_EMS;
		else if(s.endsWith(UnitText[SVG_LENGTHTYPE_EXS]))
			m_unitType = SVG_LENGTHTYPE_EXS;
		else if(s.isEmpty())
			m_unitType = SVG_LENGTHTYPE_NUMBER;
		else
			m_unitType = SVG_LENGTHTYPE_UNKNOWN;
	}
	else
		m_unitType = SVG_LENGTHTYPE_PX;
	convertNumToPx();
}

void SVGLengthImpl::convertNumToPx()
{
	switch(m_unitType)
	{
		case SVG_LENGTHTYPE_PX:
			m_value = m_valueInSpecifiedUnits;
			break;
		case SVG_LENGTHTYPE_CM:
			m_value = (m_valueInSpecifiedUnits / 2.54) * dpi();
			break;
		case SVG_LENGTHTYPE_MM:
			m_value = (m_valueInSpecifiedUnits / 25.4) * dpi();
			break;
		case SVG_LENGTHTYPE_IN:
			m_value = m_valueInSpecifiedUnits * dpi();
			break;
		case SVG_LENGTHTYPE_PT:
			m_value = (m_valueInSpecifiedUnits / 72.0) * dpi();
			break;
		case SVG_LENGTHTYPE_PC:
			m_value = (m_valueInSpecifiedUnits /  6.0) * dpi();
			break;
		case SVG_LENGTHTYPE_EMS: // Be careful here, always recheck coords-units-BE-01.svg after touching (Niko)
		case SVG_LENGTHTYPE_EXS:
			if(m_context)
			{
				SVGStylableImpl *style = dynamic_cast<SVGStylableImpl *>(m_context);
				if(!style)
					break;

				bool sizeLocal = (style->getFontSize() != -1);
				bool familyLocal = (style->getFontFamily() && style->getFontFamily()->getFirst());
				
				SVGStylableImpl *parentStyle = 0;
				if((!sizeLocal || !familyLocal) && m_context)
						parentStyle = dynamic_cast<SVGStylableImpl *>(m_context->ownerDoc()->getElementFromHandle(m_context->parentNode().handle()));
				
				// Look up font-size in a SAFE way, because at this place
				// processStyle() has NOT yet been called, so we need
				// a different solution (Niko)
				TQString useFont = "Arial";
				double useSize = 12;
				
				if(sizeLocal)
					useSize = style->getFontSize();
				else if(parentStyle && parentStyle->getFontSize() != -1)
					useSize = parentStyle->getFontSize();
			
				if(familyLocal)
					useFont = style->getFontFamily()->getFirst()->string();
				else if(parentStyle && parentStyle->getFontFamily() && parentStyle->getFontFamily()->getFirst())
					useFont = parentStyle->getFontFamily()->getFirst()->string();
				
				if(m_unitType == SVG_LENGTHTYPE_EMS)
					m_value = m_valueInSpecifiedUnits * useSize;
				else
				{
					// Easiest way, use qfont (Niko)
					TQFont font(useFont);
					font.setPixelSize(static_cast<int>(useSize));

					TQFontMetrics fm(font);
					m_value = m_valueInSpecifiedUnits * fm.boundingRect('x').height();
				}
			}
			break;
	};
}

void SVGLengthImpl::convertPercentageToFloat(const TQString &perc, float &result)
{
	// TODO : more error checking ?
	if(perc.endsWith("%"))
		result = perc.left(perc.length() - 1).toFloat() / 100.0;
	else
		result = perc.toFloat();
}

TQString SVGLengthImpl::convertValToPercentage(const TQString &val, float benchmark)
{
	if(val.endsWith("%"))
		return val;

	TQString result;
	float temp = val.toFloat();

	temp = (temp / benchmark) * 100.0;
	result.setNum(temp);
	result.append("%");

	return result;
}

SVGElementImpl *SVGLengthImpl::context() const
{
	return m_context;
}

void SVGLengthImpl::setContext(SVGElementImpl *context)
{
	m_context = context;
}

void SVGLengthImpl::setBBoxContext(SVGShapeImpl *bbox)
{
	m_bboxContext = bbox;
	convertNumToPx();
}

float SVGLengthImpl::percentageOfViewport()
{
	float width = 0, height = 0;
	float value = m_valueInSpecifiedUnits / 100.0;
	if(m_context->viewportElement())
	{
		SVGSVGElementImpl *svg = dynamic_cast<SVGSVGElementImpl *>(m_context->viewportElement());
		if(svg)
		{
			// Calculate against viewBox, otherwise svg width/height
			width = svg->viewBox()->baseVal()->width();
			if(width == 0)
				width = svg->width()->baseVal()->value();
			height = svg->viewBox()->baseVal()->height();
			if(height == 0)
				height = svg->height()->baseVal()->value();
		}

		if(m_mode == LENGTHMODE_WIDTH)
			return value * width;
		else if(m_mode == LENGTHMODE_HEIGHT)
			return value * height;
		else if(m_mode == LENGTHMODE_OTHER)
			return value * sqrt(pow(width, 2) + pow(height, 2)) / sqrt(2.0);
	}
	else if(m_context == m_context->ownerDoc()->rootElement())
	{
		if(!m_context->ownerDoc()->canvas()) // Happens when parsing <svg width="100%"> with printnodetest
			return 0.0;
				
		TQPaintDeviceMetrics metrics(m_context->ownerDoc()->canvas()->drawWindow());

		if(m_mode == LENGTHMODE_WIDTH)
			return value * metrics.width();
		else if(m_mode == LENGTHMODE_HEIGHT)
			return value * metrics.height();
		else if(m_mode == LENGTHMODE_OTHER)
			return value * sqrt(pow(metrics.width(), 2) + pow(metrics.height(), 2)) / sqrt(2.0);
	}

	return 0;
}

// Ecma stuff
//
/*
@namespace KSVG
@begin SVGLengthImpl::s_hashTable 5
 unitType					SVGLengthImpl::UnitType					DontDelete|ReadOnly
 value						SVGLengthImpl::Value					DontDelete
 valueAsString				SVGLengthImpl::ValueAsString			DontDelete
 valueInSpecifiedUnits		SVGLengthImpl::ValueInSpecifiedUnits	DontDelete
@end
@namespace KSVG
@begin SVGLengthImplProto::s_hashTable 3
 newValueSpecifiedUnits		SVGLengthImpl::NewValueSpecifiedUnits	DontDelete|Function 2
 convertToSpecifiedUnits	SVGLengthImpl::ConvertToSpecifiedUnits	DontDelete|Function 1
@end
*/

KSVG_IMPLEMENT_PROTOTYPE("SVGLength", SVGLengthImplProto, SVGLengthImplProtoFunc)

Value SVGLengthImpl::getValueProperty(ExecState *, int token) const
{
	switch(token)
	{
		case UnitType:
			return Number(unitType());
		case Value:
			return Number(m_value);
		case ValueAsString:
			return String(valueAsString().string());
		case ValueInSpecifiedUnits:
			return Number(valueInSpecifiedUnits());
		default:
			kdWarning() << "Unhandled token in " << k_funcinfo << " : " << token << endl;
			return KJS::Undefined();
	}
}

void SVGLengthImpl::putValueProperty(KJS::ExecState *exec, int token, const KJS::Value &value, int)
{
	switch(token)
	{
		case Value:
			setValue(value.toNumber(exec));
			SVGHelperImpl::updateItem(exec, *m_context);
			break;
		case ValueAsString:
			setValueAsString(value.toString(exec).string());
			SVGHelperImpl::updateItem(exec, *m_context);
			break;
		case ValueInSpecifiedUnits:
			setValueInSpecifiedUnits(value.toNumber(exec));
			SVGHelperImpl::updateItem(exec, *m_context);
			break;
		default:
			kdWarning() << "Unhandled token in " << k_funcinfo << " : " << token << endl;
	}
}

Value SVGLengthImplProtoFunc::call(ExecState *exec, Object &thisObj, const List &args)
{
	KSVG_CHECK_THIS(SVGLengthImpl)

	switch(id)
	{
		case SVGLengthImpl::NewValueSpecifiedUnits:
			obj->newValueSpecifiedUnits(static_cast<unsigned short>(args[0].toNumber(exec)), args[1].toNumber(exec));
			SVGHelperImpl::updateItem(exec, *obj->context());
			return Undefined();
		case SVGLengthImpl::ConvertToSpecifiedUnits:
			obj->convertToSpecifiedUnits(static_cast<unsigned short>(args[0].toNumber(exec)));
			SVGHelperImpl::updateItem(exec, *obj->context());
			return Undefined();
		default:
			kdWarning() << "Unhandled function id in " << k_funcinfo << " : " << id << endl;
			break;
	}

	return Undefined();
}

/*
@namespace KSVG
@begin SVGLengthImplConstructor::s_hashTable 11
 SVG_LENGTHTYPE_UNKNOWN      KSVG::SVG_LENGTHTYPE_UNKNOWN     DontDelete|ReadOnly
 SVG_LENGTHTYPE_NUMBER       KSVG::SVG_LENGTHTYPE_NUMBER      DontDelete|ReadOnly
 SVG_LENGTHTYPE_PERCENTAGE   KSVG::SVG_LENGTHTYPE_PERCENTAGE  DontDelete|ReadOnly
 SVG_LENGTHTYPE_EMS          KSVG::SVG_LENGTHTYPE_EMS         DontDelete|ReadOnly
 SVG_LENGTHTYPE_EXS          KSVG::SVG_LENGTHTYPE_EXS         DontDelete|ReadOnly
 SVG_LENGTHTYPE_PX           KSVG::SVG_LENGTHTYPE_PX          DontDelete|ReadOnly
 SVG_LENGTHTYPE_CM           KSVG::SVG_LENGTHTYPE_CM          DontDelete|ReadOnly
 SVG_LENGTHTYPE_MM           KSVG::SVG_LENGTHTYPE_MM          DontDelete|ReadOnly
 SVG_LENGTHTYPE_PT           KSVG::SVG_LENGTHTYPE_PT          DontDelete|ReadOnly
 SVG_LENGTHTYPE_PC           KSVG::SVG_LENGTHTYPE_PC          DontDelete|ReadOnly
@end
*/

Value SVGLengthImplConstructor::getValueProperty(ExecState *, int token) const
{
	return Number(token);
}

Value KSVG::getSVGLengthImplConstructor(ExecState *exec)
{
	return cacheGlobalBridge<SVGLengthImplConstructor>(exec, "[[svglength.constructor]]");
}