A control that manages a set of Shape objects and manages a mouse-based user interface for drawing things.
This class has the following responsibilities: TODO
Inheritance: Util.WinForms.LLShapeWidgetControl
Exemplo n.º 1
0
 public DragState(DiagramGestureAnalyzer ga, MouseEventArgs down)
     : base(ga, down)
 {
     Control           = ga.Control;
     _inputTransform   = Control.InputTransform;
     _points           = ToShapeSpace(MousePoints);
     _unfilteredPoints = ToShapeSpace(UnfilteredMousePoints);
 }
Exemplo n.º 2
0
			public DragState(DiagramGestureAnalyzer ga, MouseEventArgs down)
				: base(ga, down)
			{
				Control = ga.Control;
				_inputTransform = Control.InputTransform;
				_points = ToShapeSpace(MousePoints);
				_unfilteredPoints = ToShapeSpace(UnfilteredMousePoints);
			}
Exemplo n.º 3
0
 public DiagramGestureAnalyzer(DiagramControl control) : base(control)
 {
     _control = control;
 }
Exemplo n.º 4
0
		public DiagramGestureAnalyzer(DiagramControl control) : base(control)
		{
			_control = control;
		}