SvgElement.cs 34.4 KB
Newer Older
joreg's avatar
joreg committed
1001
    }
1002
1003
1004
1005
    
    public class MouseScrollArg : SVGArg
    {
    	public int Scroll;
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
    	
    	/// <summary>
        /// Alt modifier key pressed
        /// </summary>
        public bool AltKey;
        
        /// <summary>
        /// Shift modifier key pressed
        /// </summary>
        public bool ShiftKey;
        
        /// <summary>
        /// Control modifier key pressed
        /// </summary>
        public bool CtrlKey;
1021
    }
1022

davescriven's avatar
davescriven committed
1023
1024
    internal interface ISvgElement
    {
1025
1026
1027
		SvgElement Parent {get;}
		SvgElementCollection Children { get; }

1028
        void Render(SvgRenderer renderer);
davescriven's avatar
davescriven committed
1029
1030
    }
}