SvgElement.cs 23.7 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

namespace Svg
{
    /// <summary>
    /// The base class of which all SVG elements are derived from.
    /// </summary>
    public abstract class SvgElement : ISvgElement, ISvgTransformable, ICloneable
    {
18
        //optimization
19
        protected class PropertyAttributeTuple
20
        {
21
            public PropertyDescriptor Property;
22
23
            public SvgAttributeAttribute Attribute;
        }
24
25
26
27
28
29
30
31
32

        protected class EventAttributeTuple
        {
            public FieldInfo Event;
            public SvgAttributeAttribute Attribute;
        }

        protected IEnumerable<PropertyAttributeTuple> _svgPropertyAttributes;
        protected IEnumerable<EventAttributeTuple> _svgEventAttributes;
33
34


davescriven's avatar
davescriven committed
35
36
37
38
39
40
41
        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;
42
        private Dictionary<string, string> _customAttributes;
davescriven's avatar
davescriven committed
43
44
45
46

        /// <summary>
        /// Gets the name of the element.
        /// </summary>
47
        protected internal string ElementName
davescriven's avatar
davescriven committed
48
        {
49
50
51
52
53
54
55
56
57
58
59
60
61
62
            get
            {
                if (string.IsNullOrEmpty(this._elementName))
                {
                    var attr = TypeDescriptor.GetAttributes(this).OfType<SvgElementAttribute>().SingleOrDefault();

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

                return this._elementName;
            }
63
            internal set { this._elementName = value; }
davescriven's avatar
davescriven committed
64
65
66
67
68
69
70
        }

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

        /// <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)
127
                    {
davescriven's avatar
davescriven committed
128
                        return (SvgDocument)this;
129
                    }
davescriven's avatar
davescriven committed
130
                    else
131
                    {
davescriven's avatar
davescriven committed
132
                        return null;
133
                    }
davescriven's avatar
davescriven committed
134
135
                }
                else
136
                {
davescriven's avatar
davescriven committed
137
                    return Parent.OwnerDocument;
138
                }
davescriven's avatar
davescriven committed
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
            }
        }

        /// <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;
            }
        }

158
159
160
161
162
        public Dictionary<string, string> CustomAttributes
        {
            get { return this._customAttributes; }
        }

163
164
165
166
167
        /// <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
168
        {
169
            _graphicsMatrix = renderer.Transform;
170

davescriven's avatar
davescriven committed
171
172
173
174
175
176
            // Return if there are no transforms
            if (this.Transforms == null || this.Transforms.Count == 0)
            {
                return;
            }

177
            Matrix transformMatrix = renderer.Transform;
davescriven's avatar
davescriven committed
178
179
180

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

184
            renderer.Transform = transformMatrix;
davescriven's avatar
davescriven committed
185
186
        }

187
188
189
190
191
        /// <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
192
        {
193
            renderer.Transform = _graphicsMatrix;
davescriven's avatar
davescriven committed
194
195
196
            _graphicsMatrix = null;
        }

197
198
199
200
201
        /// <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
202
        {
203
            this.PushTransforms(renderer);
davescriven's avatar
davescriven committed
204
205
        }

206
207
208
209
210
        /// <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
211
        {
212
            this.PopTransforms(renderer);
davescriven's avatar
davescriven committed
213
214
215
216
217
218
219
220
221
        }

        /// <summary>
        /// Gets or sets the element transforms.
        /// </summary>
        /// <value>The transforms.</value>
        [SvgAttribute("transform")]
        public SvgTransformCollection Transforms
        {
222
            get { return (this.Attributes.GetAttribute<SvgTransformCollection>("Transforms") ?? new SvgTransformCollection()); }
davescriven's avatar
davescriven committed
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
            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)
238
                {
davescriven's avatar
davescriven committed
239
                    return;
240
                }
davescriven's avatar
davescriven committed
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255

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

                this.Attributes["ID"] = value;

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

256
257
258
259
260
261
        /// <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>
262
        protected virtual void AddElement(SvgElement child, int index)
davescriven's avatar
davescriven committed
263
264
265
        {
        }

266
267
268
269
270
        /// <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
271
272
        internal void OnElementAdded(SvgElement child, int index)
        {
273
            this.AddElement(child, index);
davescriven's avatar
davescriven committed
274
275
        }

276
277
278
279
280
        /// <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>
281
        protected virtual void RemoveElement(SvgElement child)
davescriven's avatar
davescriven committed
282
283
284
        {
        }

285
286
287
288
        /// <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
289
290
        internal void OnElementRemoved(SvgElement child)
        {
291
            this.RemoveElement(child);
davescriven's avatar
davescriven committed
292
293
294
295
296
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="SvgElement"/> class.
        /// </summary>
297
        public SvgElement()
davescriven's avatar
davescriven committed
298
299
300
301
        {
            this._children = new SvgElementCollection(this);
            this._eventHandlers = new EventHandlerList();
            this._elementName = string.Empty;
302
            this._customAttributes = new Dictionary<string, string>();
303

304
305
306
307
308
            //find svg attribute descriptions
            _svgPropertyAttributes = from PropertyDescriptor a in TypeDescriptor.GetProperties(this)
                            let attribute = a.Attributes[typeof(SvgAttributeAttribute)] as SvgAttributeAttribute
                            where attribute != null
                            select new PropertyAttributeTuple { Property = a, Attribute = attribute };
Tebjan Halm's avatar
Tebjan Halm committed
309

310
            _svgEventAttributes = from EventDescriptor a in TypeDescriptor.GetEvents(this)
311
312
                            let attribute = a.Attributes[typeof(SvgAttributeAttribute)] as SvgAttributeAttribute
                            where attribute != null
313
                            select new EventAttributeTuple { Event = a.ComponentType.GetField(a.Name, BindingFlags.Instance | BindingFlags.NonPublic), Attribute = attribute };
davescriven's avatar
davescriven committed
314

315
        }
316
317
318

		public virtual void InitialiseFromXML(XmlTextReader reader, SvgDocument document)
		{
319
            throw new NotImplementedException();
320
321
322
		}


323
324
325
326
327
        /// <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
328
        {
329
            this.Render(renderer);
davescriven's avatar
davescriven committed
330
331
332
333
334
335
336
337
338
339
340
341
        }

        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
342
343
                if (this.ElementName == "svg")
                {
344
345
346
347
348
349
350
351
352
					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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
            }
            this.WriteAttributes(writer);
        }

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

        protected virtual void WriteAttributes(XmlTextWriter writer)
        {
367
368
            //properties
            foreach (var attr in _svgPropertyAttributes)
369
370
371
372
373
            {
                if (attr.Property.Converter.CanConvertTo(typeof(string)))
                {
                    object propertyValue = attr.Property.GetValue(this);

374
375
376
                    var forceWrite = false;
                    if ((attr.Attribute.Name == "fill") && (Parent != null))
                    {
377
378
                        object parentValue;
                        if (TryResolveParentAttributeValue(attr.Attribute.Name, out parentValue))
379
                        {
380
381
                            if ((parentValue == propertyValue) 
                                || ((parentValue != null) &&  parentValue.Equals(propertyValue)))
382
                                continue;
383
                            
384
385
386
387
                            forceWrite = true;
                        }
                    }

388
389
                    if (propertyValue != null)
                    {
Tebjan Halm's avatar
Tebjan Halm committed
390
                        var type = propertyValue.GetType();
391
                        string value = (string)attr.Property.Converter.ConvertTo(propertyValue, typeof(string));
Tebjan Halm's avatar
Tebjan Halm committed
392

393
                        if (!SvgDefaults.IsDefault(attr.Attribute.Name, value) || forceWrite)
Tebjan Halm's avatar
Tebjan Halm committed
394
                        {
395
                            writer.WriteAttributeString(attr.Attribute.NamespaceAndName, value);
Tebjan Halm's avatar
Tebjan Halm committed
396
397
398
399
                        }
                    }
                    else if(attr.Attribute.Name == "fill") //if fill equals null, write 'none'
                    {
400
401
                        string value = (string)attr.Property.Converter.ConvertTo(propertyValue, typeof(string));
                        writer.WriteAttributeString(attr.Attribute.NamespaceAndName, value);
402
403
404
                    }
                }
            }
405

406
407
408
409
410
411
412
413
414
415
416
            //events
            foreach (var attr in _svgEventAttributes)
            {
                var evt = attr.Event.GetValue(this);
                
                if (evt != null && !string.IsNullOrWhiteSpace(this.ID))
                {
                    writer.WriteAttributeString(attr.Attribute.Name, this.ID + "/" + attr.Attribute.Name);
                }
            }

417
418
419
420
421
            //add the custom attributes
            foreach (var item in this._customAttributes)
            {
                writer.WriteAttributeString(item.Key, item.Value);
            }
422
423
        }

424
        private bool TryResolveParentAttributeValue(string attributeKey, out object parentAttributeValue)
425
        {
426
            parentAttributeValue = null;
427

428
            attributeKey = char.ToUpper(attributeKey[0]) + attributeKey.Substring(1);
429
430

            var currentParent = Parent;
431
            var resolved = false;
432
433
434
435
            while (currentParent != null)
            {
                if (currentParent.Attributes.ContainsKey(attributeKey))
                {
436
437
438
                    resolved = true;
                    parentAttributeValue = currentParent.Attributes[attributeKey];
                    if (parentAttributeValue != null)
439
440
441
442
                        break;
                }
                currentParent = currentParent.Parent;
            }
443

444
            return resolved;
davescriven's avatar
davescriven committed
445
446
447
448
449
450
451
452
453
454
455
456
457
458
        }

        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
459
460
461
462
463
            //write the content
            if(!String.IsNullOrEmpty(this.Content))
                writer.WriteString(this.Content);

            //write all children
davescriven's avatar
davescriven committed
464
465
466
467
468
469
470
            foreach (SvgElement child in this.Children)
            {
                child.Write(writer);
            }
        }

        /// <summary>
471
        /// Renders the <see cref="SvgElement"/> and contents to the specified <see cref="SvgRenderer"/> object.
davescriven's avatar
davescriven committed
472
        /// </summary>
473
474
        /// <param name="renderer">The <see cref="SvgRenderer"/> object to render to.</param>
        protected virtual void Render(SvgRenderer renderer)
davescriven's avatar
davescriven committed
475
        {
476
477
478
            this.PushTransforms(renderer);
            this.RenderChildren(renderer);
            this.PopTransforms(renderer);
davescriven's avatar
davescriven committed
479
480
        }

481
482
483
484
485
        /// <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
486
487
488
        {
            foreach (SvgElement element in this.Children)
            {
489
                element.Render(renderer);
davescriven's avatar
davescriven committed
490
491
492
            }
        }

493
494
495
496
497
        /// <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
498
        {
499
            this.Render(renderer);
davescriven's avatar
davescriven committed
500
        }
Tebjan Halm's avatar
Tebjan Halm committed
501
502
503
504
505
506
507
508
        
        /// <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
509
        	foreach(var child in elem.Children)
Tebjan Halm's avatar
Tebjan Halm committed
510
        	{
Tebjan Halm's avatar
Tebjan Halm committed
511
        		if (child is SvgVisualElement)
Tebjan Halm's avatar
Tebjan Halm committed
512
        		{
Tebjan Halm's avatar
Tebjan Halm committed
513
        			if(!(child is SvgGroup))
514
        			{
Tebjan Halm's avatar
Tebjan Halm committed
515
        				var childPath = ((SvgVisualElement)child).Path;
516
        				
Tebjan Halm's avatar
Tebjan Halm committed
517
518
519
520
521
522
523
524
        				if (childPath != null)
        				{
        					childPath = (GraphicsPath)childPath.Clone();
        					if(child.Transforms != null)
        						childPath.Transform(child.Transforms.GetMatrix());
        					
        					path.AddPath(childPath, false);
        				}
525
        			}
Tebjan Halm's avatar
Tebjan Halm committed
526
        		}
Tebjan Halm's avatar
Tebjan Halm committed
527
        			
Tebjan Halm's avatar
Tebjan Halm committed
528
        		AddPaths(child, path);
Tebjan Halm's avatar
Tebjan Halm committed
529
        	}
Tebjan Halm's avatar
Tebjan Halm committed
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
        }
        
        /// <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
567
        	
Tebjan Halm's avatar
Tebjan Halm committed
568
        	return ret;
Tebjan Halm's avatar
Tebjan Halm committed
569
        }
davescriven's avatar
davescriven committed
570

571
572
573
574
575
576
        /// <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
577
578
579
580
        public virtual object Clone()
        {
            return this.MemberwiseClone();
        }
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605

    	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;
Tebjan Halm's avatar
Tebjan Halm committed
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
        }

        #region graphical EVENTS

        /*  
            onfocusin = "<anything>"
            onfocusout = "<anything>"
            onactivate = "<anything>"
            onclick = "<anything>"
            onmousedown = "<anything>"
            onmouseup = "<anything>"
            onmouseover = "<anything>"
            onmousemove = "<anything>"
            onmouseout = "<anything>" 
         */

622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
        /// <summary>
        /// Use this method to provide your implementation ISvgEventCaller which can register Actions 
        /// and call them if one of the events occurs. Make sure, that your SvgElement has a unique ID.
        /// </summary>
        /// <param name="caller"></param>
        public void RegisterEvents(ISvgEventCaller caller)
        {
            if (caller != null && !string.IsNullOrWhiteSpace(this.ID))
            {
                var rpcID = this.ID + "/";

                caller.RegisterAction<float, float, int>(rpcID + "onclick", OnClick);
                caller.RegisterAction<float, float>(rpcID + "onmousemove", OnMouseMove);
            }
        }

Tebjan Halm's avatar
Tebjan Halm committed
638
639
640
        [SvgAttribute("onclick")]
        public event EventHandler<MouseArg> Click;

641
642
643
        [SvgAttribute("onmousemove")]
        public event EventHandler<PointArg> MouseMove;

Tebjan Halm's avatar
Tebjan Halm committed
644
645
646
647
648
        protected void OnClick(float x, float y, int button)
        {
            var handler = Click;
            if(handler != null)
            {
649
                handler(this, new MouseArg { x = x, y = y, button = button});
Tebjan Halm's avatar
Tebjan Halm committed
650
651
652
            }
        }

653
654
655
656
657
658
659
660
        protected void OnMouseMove(float x, float y)
        {
            var handler = MouseMove;
            if (handler != null)
            {
                handler(this, new PointArg { x = x, y = y});
            }
        }
Tebjan Halm's avatar
Tebjan Halm committed
661
662
663
664
665

        #endregion graphical EVENTS

    }

666
667
668
669
670
671
672
673
674
    //deriving class registers event actions and calls the actions if the event occurs
    public interface ISvgEventCaller
    {
        void RegisterAction<T1>(string rpcID, Action<T1> action);
        void RegisterAction<T1, T2>(string rpcID, Action<T1, T2> action);
        void RegisterAction<T1, T2, T3>(string rpcID, Action<T1, T2, T3> action);
        void RegisterAction<T1, T2, T3, T4>(string rpcID, Action<T1, T2, T3, T4> action);
    }

Tebjan Halm's avatar
Tebjan Halm committed
675
676
677
678
679
680
681
682
683
684
685
686
    /// <summary>
    /// Represents the state of the mouse at the moment the event occured.
    /// </summary>
    public class MouseArg : EventArgs
    {
        public float x;
        public float y;

        /// <summary>
        /// 0 = left, 1 = middle, 2 = right
        /// </summary>
        public int button;
davescriven's avatar
davescriven committed
687
688
    }

689
690
691
692
693
694
695
696
697
    /// <summary>
    /// Represents the mouse position at the moment the event occured.
    /// </summary>
    public class PointArg : EventArgs
    {
        public float x;
        public float y;
    }

davescriven's avatar
davescriven committed
698
699
    internal interface ISvgElement
    {
700
701
702
		SvgElement Parent {get;}
		SvgElementCollection Children { get; }

703
        void Render(SvgRenderer renderer);
davescriven's avatar
davescriven committed
704
705
    }
}