SvgElement.cs 19.2 KB
Newer Older
davescriven's avatar
davescriven committed
1
2
3
4
5
6
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Xml;
7
using System.Linq;
davescriven's avatar
davescriven committed
8
using Svg.Transforms;
9
using System.Reflection;
davescriven's avatar
davescriven committed
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

namespace Svg
{
    /// <summary>
    /// The base class of which all SVG elements are derived from.
    /// </summary>
    public abstract class SvgElement : ISvgElement, ISvgTransformable, ICloneable
    {
        internal SvgElement _parent;
        private string _elementName;
        private SvgAttributeCollection _attributes;
        private EventHandlerList _eventHandlers;
        private SvgElementCollection _children;
        private static readonly object _loadEventKey = new object();
        private Matrix _graphicsMatrix;
25
        private Dictionary<string, string> _customAttributes;
davescriven's avatar
davescriven committed
26
27
28
29

        /// <summary>
        /// Gets the name of the element.
        /// </summary>
30
        protected internal string ElementName
davescriven's avatar
davescriven committed
31
        {
32
33
34
35
36
37
38
39
40
41
42
43
44
45
            get
            {
                if (string.IsNullOrEmpty(this._elementName))
                {
                    var attr = TypeDescriptor.GetAttributes(this).OfType<SvgElementAttribute>().SingleOrDefault();

                    if (attr != null)
                    {
                        this._elementName = attr.ElementName;
                    }
                }

                return this._elementName;
            }
46
            internal set { this._elementName = value; }
davescriven's avatar
davescriven committed
47
48
49
50
51
52
53
        }

        /// <summary>
        /// Gets or sets the content of the element.
        /// </summary>
        public virtual string Content
        {
54
55
            get;
            set;
davescriven's avatar
davescriven committed
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
        }

        /// <summary>
        /// Gets an <see cref="EventHandlerList"/> of all events belonging to the element.
        /// </summary>
        protected virtual EventHandlerList Events
        {
            get { return this._eventHandlers; }
        }

        /// <summary>
        /// Occurs when the element is loaded.
        /// </summary>
        public event EventHandler Load
        {
            add { this.Events.AddHandler(_loadEventKey, value); }
            remove { this.Events.RemoveHandler(_loadEventKey, value); }
        }

        /// <summary>
        /// Gets a collection of all child <see cref="SvgElements"/>.
        /// </summary>
        public virtual SvgElementCollection Children
        {
            get { return this._children; }
        }

        /// <summary>
        /// Gets a value to determine whether the element has children.
        /// </summary>
        public virtual bool HasChildren()
        {
            return (this.Children.Count > 0);
        }

        /// <summary>
        /// Gets the parent <see cref="SvgElement"/>.
        /// </summary>
        /// <value>An <see cref="SvgElement"/> if one exists; otherwise null.</value>
        public virtual SvgElement Parent
        {
            get { return this._parent; }
        }

        /// <summary>
        /// Gets the owner <see cref="SvgDocument"/>.
        /// </summary>
        public virtual SvgDocument OwnerDocument
        {
            get
            {
                if (Parent == null)
                {
                    if (this is SvgDocument)
110
                    {
davescriven's avatar
davescriven committed
111
                        return (SvgDocument)this;
112
                    }
davescriven's avatar
davescriven committed
113
                    else
114
                    {
davescriven's avatar
davescriven committed
115
                        return null;
116
                    }
davescriven's avatar
davescriven committed
117
118
                }
                else
119
                {
davescriven's avatar
davescriven committed
120
                    return Parent.OwnerDocument;
121
                }
davescriven's avatar
davescriven committed
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
            }
        }

        /// <summary>
        /// Gets a collection of element attributes.
        /// </summary>
        protected internal virtual SvgAttributeCollection Attributes
        {
            get
            {
                if (this._attributes == null)
                {
                    this._attributes = new SvgAttributeCollection(this);
                }

                return this._attributes;
            }
        }

141
142
143
144
145
        public Dictionary<string, string> CustomAttributes
        {
            get { return this._customAttributes; }
        }

146
147
148
149
150
        /// <summary>
        /// Applies the required transforms to <see cref="SvgRenderer"/>.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> to be transformed.</param>
        protected internal virtual void PushTransforms(SvgRenderer renderer)
davescriven's avatar
davescriven committed
151
        {
152
            _graphicsMatrix = renderer.Transform;
153

davescriven's avatar
davescriven committed
154
155
156
157
158
159
            // Return if there are no transforms
            if (this.Transforms == null || this.Transforms.Count == 0)
            {
                return;
            }

160
            Matrix transformMatrix = renderer.Transform;
davescriven's avatar
davescriven committed
161
162
163

            foreach (SvgTransform transformation in this.Transforms)
            {
Matt Bowers's avatar
Matt Bowers committed
164
                transformMatrix.Multiply(transformation.Matrix, MatrixOrder.Append);
davescriven's avatar
davescriven committed
165
166
            }

167
            renderer.Transform = transformMatrix;
davescriven's avatar
davescriven committed
168
169
        }

170
171
172
173
174
        /// <summary>
        /// Removes any previously applied transforms from the specified <see cref="SvgRenderer"/>.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> that should have transforms removed.</param>
        protected internal virtual void PopTransforms(SvgRenderer renderer)
davescriven's avatar
davescriven committed
175
        {
176
            renderer.Transform = _graphicsMatrix;
davescriven's avatar
davescriven committed
177
178
179
            _graphicsMatrix = null;
        }

180
181
182
183
184
        /// <summary>
        /// Applies the required transforms to <see cref="SvgRenderer"/>.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> to be transformed.</param>
        void ISvgTransformable.PushTransforms(SvgRenderer renderer)
davescriven's avatar
davescriven committed
185
        {
186
            this.PushTransforms(renderer);
davescriven's avatar
davescriven committed
187
188
        }

189
190
191
192
193
        /// <summary>
        /// Removes any previously applied transforms from the specified <see cref="SvgRenderer"/>.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> that should have transforms removed.</param>
        void ISvgTransformable.PopTransforms(SvgRenderer renderer)
davescriven's avatar
davescriven committed
194
        {
195
            this.PopTransforms(renderer);
davescriven's avatar
davescriven committed
196
197
198
199
200
201
202
203
204
        }

        /// <summary>
        /// Gets or sets the element transforms.
        /// </summary>
        /// <value>The transforms.</value>
        [SvgAttribute("transform")]
        public SvgTransformCollection Transforms
        {
205
            get { return (this.Attributes.GetAttribute<SvgTransformCollection>("Transforms") ?? new SvgTransformCollection()); }
davescriven's avatar
davescriven committed
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
            set { this.Attributes["Transforms"] = value; }
        }

        /// <summary>
        /// Gets or sets the ID of the element.
        /// </summary>
        /// <exception cref="SvgException">The ID is already used within the <see cref="SvgDocument"/>.</exception>
        [SvgAttribute("id")]
        public string ID
        {
            get { return this.Attributes.GetAttribute<string>("ID"); }
            set
            {
                // Don't do anything if it hasn't changed
                if (string.Compare(this.ID, value) == 0)
221
                {
davescriven's avatar
davescriven committed
222
                    return;
223
                }
davescriven's avatar
davescriven committed
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238

                if (this.OwnerDocument != null)
                {
                    this.OwnerDocument.IdManager.Remove(this);
                }

                this.Attributes["ID"] = value;

                if (this.OwnerDocument != null)
                {
                    this.OwnerDocument.IdManager.Add(this);
                }
            }
        }

239
240
241
242
243
244
        /// <summary>
        /// Called by the underlying <see cref="SvgElement"/> when an element has been added to the
        /// <see cref="Children"/> collection.
        /// </summary>
        /// <param name="child">The <see cref="SvgElement"/> that has been added.</param>
        /// <param name="index">An <see cref="int"/> representing the index where the element was added to the collection.</param>
245
        protected virtual void AddElement(SvgElement child, int index)
davescriven's avatar
davescriven committed
246
247
248
        {
        }

249
250
251
252
253
        /// <summary>
        /// Calls the <see cref="AddElement"/> method with the specified parameters.
        /// </summary>
        /// <param name="child">The <see cref="SvgElement"/> that has been added.</param>
        /// <param name="index">An <see cref="int"/> representing the index where the element was added to the collection.</param>
davescriven's avatar
davescriven committed
254
255
        internal void OnElementAdded(SvgElement child, int index)
        {
256
            this.AddElement(child, index);
davescriven's avatar
davescriven committed
257
258
        }

259
260
261
262
263
        /// <summary>
        /// Called by the underlying <see cref="SvgElement"/> when an element has been removed from the
        /// <see cref="Children"/> collection.
        /// </summary>
        /// <param name="child">The <see cref="SvgElement"/> that has been removed.</param>
264
        protected virtual void RemoveElement(SvgElement child)
davescriven's avatar
davescriven committed
265
266
267
        {
        }

268
269
270
271
        /// <summary>
        /// Calls the <see cref="RemoveElement"/> method with the specified <see cref="SvgElement"/> as the parameter.
        /// </summary>
        /// <param name="child">The <see cref="SvgElement"/> that has been removed.</param>
davescriven's avatar
davescriven committed
272
273
        internal void OnElementRemoved(SvgElement child)
        {
274
            this.RemoveElement(child);
davescriven's avatar
davescriven committed
275
276
277
278
279
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="SvgElement"/> class.
        /// </summary>
280
        public SvgElement()
davescriven's avatar
davescriven committed
281
282
283
284
        {
            this._children = new SvgElementCollection(this);
            this._eventHandlers = new EventHandlerList();
            this._elementName = string.Empty;
285
            this._customAttributes = new Dictionary<string, string>();
davescriven's avatar
davescriven committed
286
287
        }

288
289
290

		public virtual void InitialiseFromXML(XmlTextReader reader, SvgDocument document)
		{
291
            throw new NotImplementedException();
292
293
294
		}


295
296
297
298
299
        /// <summary>
        /// Renders this element to the <see cref="SvgRenderer"/>.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> that the element should use to render itself.</param>
        public void RenderElement(SvgRenderer renderer)
davescriven's avatar
davescriven committed
300
        {
301
            this.Render(renderer);
davescriven's avatar
davescriven committed
302
303
304
305
306
307
308
309
310
311
312
313
        }

        public void WriteElement(XmlTextWriter writer)
        {
            this.Write(writer);
        }

        protected virtual void WriteStartElement(XmlTextWriter writer)
        {
            if (this.ElementName != String.Empty)
            {
                writer.WriteStartElement(this.ElementName);
Tebjan Halm's avatar
Tebjan Halm committed
314
315
                if (this.ElementName == "svg")
                {
316
317
318
319
320
321
322
323
324
					foreach (var ns in SvgAttributeAttribute.Namespaces)
					{
						if (string.IsNullOrEmpty(ns.Key))
							writer.WriteAttributeString("xmlns", ns.Value);
						else
							writer.WriteAttributeString("xmlns:" + ns.Key, ns.Value);
					}
					writer.WriteAttributeString("version", "1.1");
				}
davescriven's avatar
davescriven committed
325
326
327
328
329
330
331
332
333
334
335
336
337
338
            }
            this.WriteAttributes(writer);
        }

        protected virtual void WriteEndElement(XmlTextWriter writer)
        {
            if (this.ElementName != String.Empty)
            {
                writer.WriteEndElement();
            }
        }

        protected virtual void WriteAttributes(XmlTextWriter writer)
        {
339
340
341
342
343
344
345
346
347
348
349
            var attributes = from PropertyDescriptor a in TypeDescriptor.GetProperties(this)
                             let attribute = a.Attributes[typeof(SvgAttributeAttribute)] as SvgAttributeAttribute
                             where attribute != null
                             select new { Property = a, Attribute = attribute };

            foreach (var attr in attributes)
            {
                if (attr.Property.Converter.CanConvertTo(typeof(string)))
                {
                    object propertyValue = attr.Property.GetValue(this);

350
351
352
353
354
355
356
357
358
359
360
361
362
                    var forceWrite = false;
                    if ((attr.Attribute.Name == "fill") && (Parent != null))
                    {
                        var parentValue = ResolveParentAttributeValue(attr.Attribute.Name);
                        if (parentValue != null)
                        {
                            if (parentValue.Equals(propertyValue))
                                continue;

                            forceWrite = true;
                        }
                    }

363
364
                    if (propertyValue != null)
                    {
Tebjan Halm's avatar
Tebjan Halm committed
365
                        var type = propertyValue.GetType();
366
                        string value = (string)attr.Property.Converter.ConvertTo(propertyValue, typeof(string));
Tebjan Halm's avatar
Tebjan Halm committed
367

368
                        if (!SvgDefaults.IsDefault(attr.Attribute.Name, value) || forceWrite)
Tebjan Halm's avatar
Tebjan Halm committed
369
                        {
370
                            writer.WriteAttributeString(attr.Attribute.NamespaceAndName, value);
Tebjan Halm's avatar
Tebjan Halm committed
371
372
                        }
                    }
373
                    else if (attr.Attribute.Name == "fill") //if fill equals null, write 'none'
Tebjan Halm's avatar
Tebjan Halm committed
374
                    {
375
376
                        string value = (string)attr.Property.Converter.ConvertTo(propertyValue, typeof(string));
                        writer.WriteAttributeString(attr.Attribute.NamespaceAndName, value);
377
378
379
                    }
                }
            }
380
381
382
383
384
385

            //add the custom attributes
            foreach (var item in this._customAttributes)
            {
                writer.WriteAttributeString(item.Key, item.Value);
            }
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
        }

        private object ResolveParentAttributeValue(string attributeKey)
        {
            attributeKey = char.ToUpper(attributeKey[0]) + attributeKey.Substring(1);

            object parentValue = null;

            var currentParent = Parent;
            while (currentParent != null)
            {
                if (currentParent.Attributes.ContainsKey(attributeKey))
                {
                    parentValue = currentParent.Attributes[attributeKey];
                    if (parentValue != null)
                        break;
                }
                currentParent = currentParent.Parent;
            }
405

406
            return parentValue;
davescriven's avatar
davescriven committed
407
408
409
410
411
412
413
414
415
416
417
418
419
420
        }

        protected virtual void Write(XmlTextWriter writer)
        {
            if (this.ElementName != String.Empty)
            {
                this.WriteStartElement(writer);
                this.WriteChildren(writer);
                this.WriteEndElement(writer);
            }
        }

        protected virtual void WriteChildren(XmlTextWriter writer)
        {
Tebjan Halm's avatar
Tebjan Halm committed
421
422
423
424
425
            //write the content
            if(!String.IsNullOrEmpty(this.Content))
                writer.WriteString(this.Content);

            //write all children
davescriven's avatar
davescriven committed
426
427
428
429
430
431
432
            foreach (SvgElement child in this.Children)
            {
                child.Write(writer);
            }
        }

        /// <summary>
433
        /// Renders the <see cref="SvgElement"/> and contents to the specified <see cref="SvgRenderer"/> object.
davescriven's avatar
davescriven committed
434
        /// </summary>
435
436
        /// <param name="renderer">The <see cref="SvgRenderer"/> object to render to.</param>
        protected virtual void Render(SvgRenderer renderer)
davescriven's avatar
davescriven committed
437
        {
438
439
440
            this.PushTransforms(renderer);
            this.RenderChildren(renderer);
            this.PopTransforms(renderer);
davescriven's avatar
davescriven committed
441
442
        }

443
444
445
446
447
        /// <summary>
        /// Renders the children of this <see cref="SvgElement"/>.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> to render the child <see cref="SvgElement"/>s to.</param>
        protected virtual void RenderChildren(SvgRenderer renderer)
davescriven's avatar
davescriven committed
448
449
450
        {
            foreach (SvgElement element in this.Children)
            {
451
                element.Render(renderer);
davescriven's avatar
davescriven committed
452
453
454
            }
        }

455
456
457
458
459
        /// <summary>
        /// Renders the <see cref="SvgElement"/> and contents to the specified <see cref="SvgRenderer"/> object.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> object to render to.</param>
        void ISvgElement.Render(SvgRenderer renderer)
davescriven's avatar
davescriven committed
460
        {
461
            this.Render(renderer);
davescriven's avatar
davescriven committed
462
        }
Tebjan Halm's avatar
Tebjan Halm committed
463
464
465
466
467
468
469
470
        
        /// <summary>
        /// Recursive method to add up the paths of all children
        /// </summary>
        /// <param name="elem"></param>
        /// <param name="path"></param>
        protected void AddPaths(SvgElement elem, GraphicsPath path)
        {
Tebjan Halm's avatar
Tebjan Halm committed
471
        	foreach(var child in elem.Children)
Tebjan Halm's avatar
Tebjan Halm committed
472
        	{
Tebjan Halm's avatar
Tebjan Halm committed
473
        		if (child is SvgVisualElement)
Tebjan Halm's avatar
Tebjan Halm committed
474
        		{
Tebjan Halm's avatar
Tebjan Halm committed
475
        			if(!(child is SvgGroup))
476
        			{
Tebjan Halm's avatar
Tebjan Halm committed
477
        				var childPath = ((SvgVisualElement)child).Path;
478
        				
Tebjan Halm's avatar
Tebjan Halm committed
479
480
481
482
483
484
485
486
        				if (childPath != null)
        				{
        					childPath = (GraphicsPath)childPath.Clone();
        					if(child.Transforms != null)
        						childPath.Transform(child.Transforms.GetMatrix());
        					
        					path.AddPath(childPath, false);
        				}
487
        			}
Tebjan Halm's avatar
Tebjan Halm committed
488
        		}
Tebjan Halm's avatar
Tebjan Halm committed
489
        			
Tebjan Halm's avatar
Tebjan Halm committed
490
        		AddPaths(child, path);
Tebjan Halm's avatar
Tebjan Halm committed
491
        	}
Tebjan Halm's avatar
Tebjan Halm committed
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
        }
        
        /// <summary>
        /// Recursive method to add up the paths of all children
        /// </summary>
        /// <param name="elem"></param>
        /// <param name="path"></param>
        protected GraphicsPath GetPaths(SvgElement elem)
        {
        	var ret = new GraphicsPath();
        	
        	foreach(var child in elem.Children)
        	{
        		if (child is SvgVisualElement)
        		{
        			if(!(child is SvgGroup))
        			{
        				var childPath = ((SvgVisualElement)child).Path;
        				
        				if (childPath != null)
        				{
        					childPath = (GraphicsPath)childPath.Clone();
        					if(child.Transforms != null)
        						childPath.Transform(child.Transforms.GetMatrix());
        					
        					ret.AddPath(childPath, false);
        				}
        			}
        			else
        			{
        				var childPath = GetPaths(child);
        				if(child.Transforms != null)
        					childPath.Transform(child.Transforms.GetMatrix());
        			}
        		}
        			
        	}
Tebjan Halm's avatar
Tebjan Halm committed
529
        	
Tebjan Halm's avatar
Tebjan Halm committed
530
        	return ret;
Tebjan Halm's avatar
Tebjan Halm committed
531
        }
davescriven's avatar
davescriven committed
532

533
534
535
536
537
538
        /// <summary>
        /// Creates a new object that is a copy of the current instance.
        /// </summary>
        /// <returns>
        /// A new object that is a copy of this instance.
        /// </returns>
davescriven's avatar
davescriven committed
539
540
541
542
        public virtual object Clone()
        {
            return this.MemberwiseClone();
        }
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568

    	public abstract SvgElement DeepCopy();

		public virtual SvgElement DeepCopy<T>() where T : SvgElement, new()
		{
			var newObj = new T();
			newObj.Content = this.Content;
			newObj.ElementName = this.ElementName;
//			if (this.Parent != null)
	//			this.Parent.Children.Add(newObj);

			if (this.Transforms != null)
			{
				newObj.Transforms = new SvgTransformCollection();
				foreach (var transform in this.Transforms)
					newObj.Transforms.Add(transform.Clone() as SvgTransform);
			}

			foreach (var child in this.Children)
			{
				newObj.Children.Add(child.DeepCopy());
			}
				

			return newObj;
		}
davescriven's avatar
davescriven committed
569
570
571
572
    }

    internal interface ISvgElement
    {
573
574
575
		SvgElement Parent {get;}
		SvgElementCollection Children { get; }

576
        void Render(SvgRenderer renderer);
davescriven's avatar
davescriven committed
577
578
    }
}