Inheritance: NodeElement, IControllable, ILabelElement
Beispiel #1
0
        private void EndAddElement(Rectangle selectionRectangle)
        {
            BaseElement el;

            switch (document.ElementType)
            {
            case ElementType.Rectangle:
                el = new RectangleElement(selectionRectangle);
                break;

            case ElementType.RectangleNode:
                el = new RectangleNode(selectionRectangle);
                break;

            case ElementType.Elipse:
                el = new ElipseElement(selectionRectangle);
                break;

            case ElementType.ElipseNode:
                el = new ElipseNode(selectionRectangle);
                break;

            case ElementType.CommentBox:
                el = new CommentBoxElement(selectionRectangle);
                break;

            default:
                el = new RectangleNode(selectionRectangle);
                break;
            }

            document.AddElement(el);

            document.Action = DesignerAction.Select;
        }
Beispiel #2
0
        protected virtual BaseElement CreateElementInstance(Rectangle rectangle)
        {
            BaseElement el;

            switch (Document.ElementType)
            {
            case ElementType.Rectangle:
                el = new RectangleElement(rectangle);
                break;

            case ElementType.RectangleNode:
                el = new RectangleNode(rectangle);
                break;

            case ElementType.Elipse:
                el = new ElipseElement(rectangle);
                break;

            case ElementType.ElipseNode:
                el = new ElipseNode(rectangle);
                break;

            case ElementType.CommentBox:
                el = new CommentBoxElement(rectangle);
                break;

            case ElementType.CommentBoxNode:
                el = new CommentBoxNode(rectangle);
                break;

            default:
                el = new RectangleNode(rectangle);
                break;
            }
            return(el);
        }
Beispiel #3
0
		private void EndAddElement(Rectangle selectionRectangle)
		{
			BaseElement el;
			switch (document.ElementType)
			{
				case ElementType.Rectangle:
					el = new RectangleElement(selectionRectangle);
					break;
				case ElementType.RectangleNode:
					el = new RectangleNode(selectionRectangle);
					break;
				case ElementType.Elipse:
					el = new ElipseElement(selectionRectangle);
					break;
				case ElementType.ElipseNode:
					el = new ElipseNode(selectionRectangle);
					break;
				case ElementType.CommentBox:
					el = new CommentBoxElement(selectionRectangle);
					break;
				default:
					el = new RectangleNode(selectionRectangle);
					break;
			}
			
			document.AddElement(el);
			
			document.Action = DesignerAction.Select;	
		}