Class GraphController
Main MVC controller. The view type is based on an interface in function of platform independence.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.WinControls.RadDiagram.dll
Syntax
public sealed class GraphController : IControllerService, ISerializable
Constructors
GraphController(IGraphInternal, IContainerGeneratorInternal)
Initializes a new instance of the Graph
Declaration
public GraphController(IGraphInternal graph, IContainerGeneratorInternal containerGenerator)
Parameters
IGraph The graph internal. |
IContainer The container generator. |
Properties
ServiceLocator
Gets the service locator.
Declaration
public ServiceLocator ServiceLocator { get; }
Property Value
Methods
ActivateTool(MouseTool)
Activates the tool.
Declaration
public void ActivateTool(MouseTool mouseTool)
Parameters
Mouse The mouse tool. |
AddConnection(IConnection, Boolean)
Adds the connection.
Declaration
public void AddConnection(IConnection connection, bool isUndoable = true)
Parameters
IConnection
connection
The connection. |
System. If set to |
AddShape(Object, Boolean)
Adds the shape.
Declaration
public IShape AddShape(object item, bool isUndoable = true)
Parameters
System. The item. |
System. If set to |
Returns
Exceptions
System. If the item is null. |
AddShape(IShape, Boolean)
Adds the shape.
Declaration
public void AddShape(IShape shape, bool isUndoable = true)
Parameters
IShape
shape
The shape. |
System. If set to |
AlignShapes(Alignment, IEnumerable<IShape>)
Aligns the shapes to the most left/top/right/bottom edge defined by the selection bounds.
Declaration
public void AlignShapes(Alignment alignment, IEnumerable<IShape> shapes)
Parameters
BringForward(IEnumerable<IDiagramItem>, Boolean)
Brings the selected items forward.
Declaration
public void BringForward(IEnumerable<IDiagramItem> items, bool isUndoable = true)
Parameters
System.
|
System.
|
BringToFront(IEnumerable<IDiagramItem>, Boolean)
Brings the selected items to front.
Declaration
public void BringToFront(IEnumerable<IDiagramItem> items, bool isUndoable = true)
Parameters
System.
|
System.
|
ChangeTool(String)
Changes the tool.
Declaration
public void ChangeTool(string toolName)
Parameters
System. Label of the tool. |
Clear(Boolean)
Clears the diagram and resets the document.
Declaration
public void Clear(bool isItemsCollectionChanging = false)
Parameters
System.
|
Remarks
The diagram is not saved prior to this reset. You need to handle in the application the eventual necessity to save (or request the user) the diagram before this.
ClearConnections()
Clears the connections.
Declaration
public void ClearConnections()
ClearShapes()
Clears the shapes.
Declaration
public void ClearShapes()
Copy()
Creates a copy of the diagram in the clipboard.
Declaration
public string Copy()
Returns
System.
|
CreateConnection(IShape, IShape, Boolean)
Creates the connection.
Declaration
public IConnection CreateConnection(IShape source, IShape target, bool isUndoable)
Parameters
IShape
source
The source. |
IShape
target
The target. |
System. If set to |
Returns
CreateConnectionInGraphSource(IShape, IShape)
Creates the connection in graph source.
Declaration
public ILink CreateConnectionInGraphSource(IShape source, IShape target)
Parameters
Returns
CreateShapeInGraphSource(IShape)
Creates the shape in graph source.
Declaration
public object CreateShapeInGraphSource(IShape shape)
Parameters
IShape
shape
The shape. |
Returns
System.
|
CutItems()
Cuts the items.
Declaration
public string CutItems()
Returns
System.
|
DeleteItems(IEnumerable<IDiagramItem>, Boolean)
Deletes the items.
Declaration
public void DeleteItems(IEnumerable<IDiagramItem> itemsToDelete, bool isUndoable)
Parameters
System. The items to delete. |
System. If set to |
DeselectItem(IDiagramItem)
Deselects a specific item.
Declaration
public void DeselectItem(IDiagramItem deselectedItem)
Parameters
IDiagram
|
Deserialize(SerializationInfo)
Deserializes the specified info.
Declaration
public void Deserialize(SerializationInfo info)
Parameters
Serialization The info. |
Implements
ForceRealization()
Forces the realization.
Declaration
public void ForceRealization()
Group(String, Boolean, IGroupable[])
Groups the selected shapes.
Declaration
public IGroup Group(string name = null, bool isUndoable = false, params IGroupable[] items)
Parameters
System. The name. |
System. If set to |
IGroupable[]
items
The items. |
Returns
IsInViewport(IDiagramItem)
Checks if the diagram item is in the viewport.
Declaration
public bool IsInViewport(IDiagramItem item)
Parameters
IDiagram
|
Returns
System.
|
KeyDown(KeyArgs)
Called when key down event is fired.
Declaration
public bool KeyDown(KeyArgs e)
Parameters
Key The key args. |
Returns
System.
|
KeyUp(KeyArgs)
Called when key up event is fired.
Declaration
public bool KeyUp(KeyArgs e)
Parameters
Key The key args. |
Returns
System.
|
Layout(LayoutType, Object)
Organizes the diagram using the specified layout.
Declaration
public void Layout(LayoutType type = LayoutType.Sugiyama, object settings = null)
Parameters
Layout The layout type to apply. |
System. The settings specific to the layout type. |
See Also
Load(String)
Loads the serialized diagram.
Declaration
public void Load(string serializationValue)
Parameters
System. A string supposedly containing some XML representing a serialized diagram. |
MergeItems(IEnumerable<IDiagramItem>, String, Boolean, Point, Size)
Merges the items in the diagram.
Declaration
public IEnumerable<IDiagramItem> MergeItems(IEnumerable<IDiagramItem> items, string originId, bool usePosition = false, Point position = default(Point), Size size = default(Size))
Parameters
System. The items. |
System. The origin id. |
System. If set to |
Point
position
The position. |
Size
size
The size. |
Returns
System.
|
MouseDoubleClick(PointerArgs)
Handles the mouse double click event.
Declaration
public void MouseDoubleClick(PointerArgs e)
Parameters
Pointer The e. |
MouseDown(PointerArgs)
Called when the left mouse button is down.
Declaration
public void MouseDown(PointerArgs e)
Parameters
Pointer The e. |
MouseMove(PointerArgs)
Called when the mouse moves.
Declaration
public void MouseMove(PointerArgs e)
Parameters
Pointer The e. |
MouseUp(PointerArgs)
Called when the mouse left button is up.
Declaration
public bool MouseUp(PointerArgs e)
Parameters
Pointer The e. |
Returns
System.
|
Nudge(Point)
Nudges (i.e. a small amount of translation) the selected items with the specified amount.
Declaration
public void Nudge(Point amount)
Parameters
Point
amount
The amount defined as a point (vector). |
Remarks
This is an undoable action and plugs into the same mechanism as the Dragging
OnGraphSourceChanged(IGraphSource)
Called when graph source changes.
Declaration
public void OnGraphSourceChanged(IGraphSource source)
Parameters
IGraph The source. |
OnItemsChanged(NotifyCollectionChangedEventArgs)
Called when Items collection changes.
Declaration
public void OnItemsChanged(NotifyCollectionChangedEventArgs e)
Parameters
System. The System. |
OnViewportChanged()
Called when the bounds have changed.
Declaration
public void OnViewportChanged()
Paste(String)
Pastes a diagram, serialized in the clipboard.
Declaration
public IEnumerable<IDiagramItem> Paste(string pasteText)
Parameters
System.
|
Returns
System.
|
RemoveConnection(IConnection, Boolean)
Removes the connection.
Declaration
public void RemoveConnection(IConnection connection, bool isUndoable = false)
Parameters
IConnection
connection
The connection. |
System. If set to |
RemoveShape(IShape, Boolean)
Removes the shape from the diagram.
Declaration
public void RemoveShape(IShape shape, bool isUndoable = false)
Parameters
IShape
shape
The shape to be removed. |
System. If set to |
Save()
Returns the serialized diagram as an XML-string.
Declaration
public string Save()
Returns
System.
|
SelectItem(IDiagramItem, Boolean)
Selects a specific item.
Declaration
public void SelectItem(IDiagramItem selectedItem, bool addToExistingSelection = false)
Parameters
IDiagram
|
System.
|
SendBackward(IEnumerable<IDiagramItem>, Boolean)
Sends selected items backward.
Declaration
public void SendBackward(IEnumerable<IDiagramItem> itemsToSend, bool isUndoable = true)
Parameters
System.
|
System.
|
SendToBack(IEnumerable<IDiagramItem>, Boolean)
Sends selected items to back.
Declaration
public void SendToBack(IEnumerable<IDiagramItem> itemsToSend, bool isUndoable = true)
Parameters
System.
|
System.
|
Serialize()
Serializes this instance.
Declaration
public SerializationInfo Serialize()
Returns
Implements
SnapShapes(IEnumerable<IShape>)
Snaps the items based on the snap value. The action is enclosed in a undoable command and supports undo/redo.
Declaration
public void SnapShapes(IEnumerable<IShape> shapes)
Parameters
System.
|
Ungroup(Boolean, IGroup[])
Ungroups the specified items.
Declaration
public void Ungroup(bool isUndoable = false, params IGroup[] groups)
Parameters
System.
|
IGroup[]
groups
|
Explicit Interface Implementations
IControllerService.BeginConnectionCreation(IConnection)
Begins the connection creation.
Declaration
ICommand IControllerService.BeginConnectionCreation(IConnection connection)
Parameters
IConnection
connection
The connection. |
Returns
Implements
IControllerService.BeginShapeCreation(IShape)
Begins the shape creation.
Declaration
ICommand IControllerService.BeginShapeCreation(IShape shape)
Parameters
IShape
shape
The shape. |
Returns
Implements
IControllerService.CompleteConnectionCreation(IConnection)
Completes the connection creation.
Declaration
ICommand IControllerService.CompleteConnectionCreation(IConnection connection)
Parameters
IConnection
connection
The connection. |
Returns
Implements
IControllerService.CompleteShapeCreation(IShape)
Completes the shape creation.
Declaration
ICommand IControllerService.CompleteShapeCreation(IShape shape)
Parameters
IShape
shape
The shape. |
Returns
Implements
IControllerService.CreateConnection(IShape, IShape)
Creates the undoable connection.
Declaration
IConnection IControllerService.CreateConnection(IShape source, IShape target)
Parameters
Returns
Implements
IControllerService.CreateConnection(Point, Point)
Creates the undoable connection.
Declaration
IConnection IControllerService.CreateConnection(Point startPoint, Point endPoint)
Parameters
Returns
Implements
IControllerService.CreateGeometryShape(ref ICommand)
Creates an undoable geometry shape.
Declaration
IGeometryShape IControllerService.CreateGeometryShape(ref ICommand command)
Parameters
ICommand
command
|
Returns
Implements
IControllerService.CreateTextShape()
Creates an undoable geometry shape.
Declaration
ITextShape IControllerService.CreateTextShape()