[2801] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2801] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Drawing;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Windows.Forms;
|
---|
[4068] | 26 | using HeuristicLab.Core;
|
---|
[2801] | 27 | using HeuristicLab.MainForm;
|
---|
[4068] | 28 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[8000] | 29 | using HeuristicLab.Netron.CustomTools;
|
---|
[2801] | 30 | using Netron.Diagramming.Core;
|
---|
| 31 |
|
---|
[6036] | 32 | namespace HeuristicLab.Operators.Views.GraphVisualization.Views {
|
---|
[2917] | 33 | [View("OperatorGraph View (Chart)")]
|
---|
[3361] | 34 | [Content(typeof(OperatorGraph), true)]
|
---|
[3514] | 35 | public partial class OperatorGraphView : AsynchronousContentView {
|
---|
[8000] | 36 | private ITool lastActiveTool;
|
---|
| 37 |
|
---|
[2853] | 38 | public OperatorGraphView() {
|
---|
[2801] | 39 | InitializeComponent();
|
---|
[4011] | 40 |
|
---|
[2893] | 41 | this.graphVisualizationInfoView.Controller.OnShowContextMenu += new EventHandler<EntityMenuEventArgs>(Controller_OnShowContextMenu);
|
---|
[2898] | 42 | this.graphVisualizationInfoView.Controller.Model.Selection.OnNewSelection += new EventHandler(Controller_SelectionChanged);
|
---|
[3176] | 43 | this.graphVisualizationInfoView.Controller.OnMouseDown += new EventHandler<MouseEventArgs>(Controller_OnMouseDown);
|
---|
[8000] | 44 | this.graphVisualizationInfoView.Controller.ParentControl.MouseDown += new MouseEventHandler(ParentControl_MouseDown);
|
---|
| 45 | this.graphVisualizationInfoView.Controller.ParentControl.MouseUp += new MouseEventHandler(ParentControl_MouseUp);
|
---|
[2901] | 46 | foreach (ITool tool in this.graphVisualizationInfoView.Controller.Tools) {
|
---|
| 47 | tool.OnToolActivate += new EventHandler<ToolEventArgs>(tool_OnToolActivate);
|
---|
| 48 | tool.OnToolDeactivate += new EventHandler<ToolEventArgs>(tool_OnToolDeactivate);
|
---|
| 49 | }
|
---|
[2801] | 50 | }
|
---|
| 51 |
|
---|
[2853] | 52 | public new OperatorGraph Content {
|
---|
| 53 | get { return (OperatorGraph)base.Content; }
|
---|
[2801] | 54 | set { base.Content = value; }
|
---|
| 55 | }
|
---|
| 56 |
|
---|
[2853] | 57 | protected override void OnContentChanged() {
|
---|
[4011] | 58 | if (Content != null) {
|
---|
| 59 | bool createdVisualizationInfo = false;
|
---|
| 60 | if (this.VisualizationInfo == null) {
|
---|
| 61 | this.VisualizationInfo = new OperatorGraphVisualizationInfo(this.Content);
|
---|
| 62 | createdVisualizationInfo = true;
|
---|
| 63 | }
|
---|
| 64 | this.graphVisualizationInfoView.Content = this.VisualizationInfo;
|
---|
| 65 | if (createdVisualizationInfo)
|
---|
| 66 | this.graphVisualizationInfoView.RelayoutGraph();
|
---|
| 67 | } else {
|
---|
| 68 | this.graphVisualizationInfoView.Content = null;
|
---|
[2898] | 69 | }
|
---|
[2801] | 70 | }
|
---|
| 71 |
|
---|
[3904] | 72 | protected override void SetEnabledStateOfControls() {
|
---|
| 73 | base.SetEnabledStateOfControls();
|
---|
[3355] | 74 | if (Content == null) {
|
---|
| 75 | selectButton.Enabled = false;
|
---|
| 76 | relayoutButton.Enabled = false;
|
---|
[3523] | 77 | zoomToFitButton.Enabled = false;
|
---|
[3355] | 78 | zoomInButton.Enabled = false;
|
---|
| 79 | zoomOutButton.Enabled = false;
|
---|
| 80 | screenshotButton.Enabled = false;
|
---|
| 81 | detailsViewHost.Enabled = false;
|
---|
| 82 | connectButton.Enabled = false;
|
---|
| 83 | } else {
|
---|
| 84 | selectButton.Enabled = true;
|
---|
| 85 | relayoutButton.Enabled = true;
|
---|
[3523] | 86 | zoomToFitButton.Enabled = true;
|
---|
[3355] | 87 | zoomInButton.Enabled = true;
|
---|
| 88 | zoomOutButton.Enabled = true;
|
---|
| 89 | screenshotButton.Enabled = true;
|
---|
| 90 | detailsViewHost.Enabled = true;
|
---|
[4435] | 91 | connectButton.Enabled = !ReadOnly;
|
---|
[3355] | 92 | }
|
---|
[3514] | 93 | }
|
---|
[3355] | 94 |
|
---|
[3386] | 95 | private OperatorGraphVisualizationInfo VisualizationInfo {
|
---|
| 96 | get { return Content.VisualizationInfo as OperatorGraphVisualizationInfo; }
|
---|
[2853] | 97 | set { this.Content.VisualizationInfo = value; }
|
---|
| 98 | }
|
---|
[2819] | 99 |
|
---|
[2898] | 100 | private void Controller_SelectionChanged(object sender, EventArgs e) {
|
---|
[3514] | 101 | this.detailsViewHost.ViewType = null;
|
---|
| 102 | this.detailsViewHost.Content = null;
|
---|
| 103 |
|
---|
[2895] | 104 | CollectionBase<IDiagramEntity> selectedObjects = this.graphVisualizationInfoView.Controller.Model.Selection.SelectedItems;
|
---|
| 105 | if (selectedObjects.Count == 1) {
|
---|
| 106 | IShape shape = selectedObjects[0] as IShape;
|
---|
| 107 | if (shape != null) {
|
---|
[2934] | 108 | IOperatorShapeInfo shapeInfo = shape.Tag as IOperatorShapeInfo;
|
---|
[2898] | 109 | IOperator op = this.VisualizationInfo.GetOperatorForShapeInfo(shapeInfo);
|
---|
| 110 | this.detailsViewHost.Content = op;
|
---|
[2895] | 111 | }
|
---|
| 112 | }
|
---|
[3514] | 113 |
|
---|
[2898] | 114 | IConnector connector = this.graphVisualizationInfoView.Controller.Model.Selection.Connector;
|
---|
| 115 | if (connector != null) {
|
---|
| 116 | IShape shape = connector.Parent as IShape;
|
---|
| 117 | string connectorName = connector.Name;
|
---|
| 118 | if (shape == null) {
|
---|
| 119 | shape = connector.AttachedTo.Parent as IShape; //connection connector selected
|
---|
| 120 | connectorName = connector.AttachedTo.Name;
|
---|
| 121 | }
|
---|
| 122 | if (shape != null) {
|
---|
[2934] | 123 | IOperatorShapeInfo shapeInfo = shape.Tag as IOperatorShapeInfo;
|
---|
[2898] | 124 | IOperator op = this.VisualizationInfo.GetOperatorForShapeInfo(shapeInfo);
|
---|
| 125 | if (connectorName != "Predecessor") {
|
---|
| 126 | IParameter parameter = op.Parameters.Where(p => p.Name == connectorName).First();
|
---|
[2949] | 127 | this.detailsViewHost.ViewType = null;
|
---|
[2898] | 128 | this.detailsViewHost.Content = parameter;
|
---|
| 129 | }
|
---|
| 130 | }
|
---|
| 131 | }
|
---|
[3514] | 132 |
|
---|
[2895] | 133 | }
|
---|
| 134 |
|
---|
[3176] | 135 | private void Controller_OnMouseDown(object sender, MouseEventArgs e) {
|
---|
| 136 | if (e.Clicks >= 2) {
|
---|
| 137 | IShape shape = this.graphVisualizationInfoView.Controller.Model.GetShapeAt(e.Location);
|
---|
| 138 | if (shape != null) {
|
---|
| 139 | IOperatorShapeInfo shapeInfo = shape.Tag as IOperatorShapeInfo;
|
---|
| 140 | if (shapeInfo != null) {
|
---|
| 141 | IOperator op = this.VisualizationInfo.GetOperatorForShapeInfo(shapeInfo);
|
---|
[3557] | 142 | IContentView view = MainFormManager.MainForm.ShowContent(op);
|
---|
[3423] | 143 | if (view != null) {
|
---|
| 144 | view.ReadOnly = this.ReadOnly;
|
---|
| 145 | view.Locked = this.Locked;
|
---|
| 146 | }
|
---|
[3176] | 147 | HandledMouseEventArgs eventArgs = e as HandledMouseEventArgs;
|
---|
| 148 | if (eventArgs != null)
|
---|
| 149 | eventArgs.Handled = true;
|
---|
| 150 | }
|
---|
| 151 | }
|
---|
| 152 | }
|
---|
| 153 | }
|
---|
| 154 |
|
---|
[8000] | 155 | void ParentControl_MouseDown(object sender, MouseEventArgs e) {
|
---|
| 156 | if (e.Button == MouseButtons.Middle) {
|
---|
[8860] | 157 | lastActiveTool = graphVisualizationInfoView.Controller.ActiveTool;
|
---|
| 158 | graphVisualizationInfoView.Controller.ActivateTool(CustomPanTool.ToolName);
|
---|
[8000] | 159 | }
|
---|
| 160 | }
|
---|
| 161 |
|
---|
| 162 | void ParentControl_MouseUp(object sender, MouseEventArgs e) {
|
---|
| 163 | if (e.Button == MouseButtons.Middle) {
|
---|
[8860] | 164 | var activeTool = graphVisualizationInfoView.Controller.ActiveTool;
|
---|
| 165 | graphVisualizationInfoView.Controller.DeactivateTool(activeTool);
|
---|
| 166 | if (lastActiveTool != null && !(lastActiveTool is ZoomToolBase))
|
---|
| 167 | graphVisualizationInfoView.Controller.ActivateTool(lastActiveTool.Name);
|
---|
[8000] | 168 | }
|
---|
| 169 | }
|
---|
| 170 |
|
---|
[2893] | 171 | #region context menu
|
---|
| 172 | private void Controller_OnShowContextMenu(object sender, EntityMenuEventArgs e) {
|
---|
| 173 | IShape shape = this.graphVisualizationInfoView.Controller.Model.GetShapeAt(e.MouseEventArgs.Location);
|
---|
| 174 | if (shape != null) {
|
---|
| 175 | IShapeInfo shapeInfo = shape.Tag as IShapeInfo;
|
---|
| 176 | this.shapeContextMenu.Tag = shapeInfo;
|
---|
| 177 | PointF worldPoint = this.graphVisualizationInfoView.Controller.View.WorldToView(e.MouseEventArgs.Location);
|
---|
| 178 | this.shapeContextMenu.Show(this, Point.Round(worldPoint));
|
---|
[2861] | 179 | }
|
---|
[2801] | 180 | }
|
---|
| 181 |
|
---|
[2893] | 182 | private void shapeContextMenu_Opening(object sender, System.ComponentModel.CancelEventArgs e) {
|
---|
[2934] | 183 | IOperatorShapeInfo shapeInfo = this.shapeContextMenu.Tag as IOperatorShapeInfo;
|
---|
[2893] | 184 | if (shapeInfo != null) {
|
---|
| 185 | IOperator op = this.VisualizationInfo.GetOperatorForShapeInfo(shapeInfo);
|
---|
| 186 | this.initialToolStripMenuItem.Checked = this.Content.InitialOperator == op;
|
---|
[3514] | 187 | this.initialToolStripMenuItem.Enabled = !ReadOnly && !Locked;
|
---|
[2893] | 188 | this.breakPointToolStripMenuItem.Checked = op.Breakpoint;
|
---|
[5224] | 189 | this.breakPointToolStripMenuItem.Enabled = !Locked;
|
---|
[2853] | 190 | }
|
---|
[2801] | 191 | }
|
---|
| 192 |
|
---|
[2893] | 193 | private void openViewToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[2934] | 194 | IOperatorShapeInfo shapeInfo = this.shapeContextMenu.Tag as IOperatorShapeInfo;
|
---|
[2893] | 195 | if (shapeInfo != null) {
|
---|
| 196 | IOperator op = this.VisualizationInfo.GetOperatorForShapeInfo(shapeInfo);
|
---|
[3557] | 197 | IContentView view = MainFormManager.MainForm.ShowContent(op);
|
---|
| 198 | if (view != null) {
|
---|
| 199 | view.ReadOnly = this.ReadOnly;
|
---|
| 200 | view.Locked = this.Locked;
|
---|
| 201 | }
|
---|
[2853] | 202 | }
|
---|
[2801] | 203 | }
|
---|
[2819] | 204 |
|
---|
[2893] | 205 | private void initialOperatorToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[4011] | 206 | IOperatorShapeInfo shapeInfo = this.shapeContextMenu.Tag as IOperatorShapeInfo;
|
---|
| 207 | if (this.VisualizationInfo.InitialShape == shapeInfo)
|
---|
| 208 | this.VisualizationInfo.InitialShape = null;
|
---|
| 209 | else
|
---|
| 210 | this.VisualizationInfo.InitialShape = shapeInfo;
|
---|
[2861] | 211 | }
|
---|
[2819] | 212 |
|
---|
[2893] | 213 | private void breakPointToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[4011] | 214 | IOperatorShapeInfo shapeInfo = this.shapeContextMenu.Tag as IOperatorShapeInfo;
|
---|
| 215 | if (shapeInfo != null) {
|
---|
| 216 | IOperator op = this.VisualizationInfo.GetOperatorForShapeInfo(shapeInfo);
|
---|
| 217 | op.Breakpoint = !op.Breakpoint;
|
---|
| 218 | }
|
---|
[2861] | 219 | }
|
---|
[2893] | 220 | #endregion
|
---|
[2819] | 221 |
|
---|
[2853] | 222 | #region drag and drop
|
---|
[3556] | 223 | private void OperatorGraphView_DragEnterOver(object sender, DragEventArgs e) {
|
---|
[2853] | 224 | e.Effect = DragDropEffects.None;
|
---|
[5837] | 225 | if (!ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) is IOperator)) {
|
---|
[3694] | 226 | if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link; // ALT key
|
---|
[3556] | 227 | else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move; // SHIFT key
|
---|
[5744] | 228 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
|
---|
| 229 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Move)) e.Effect = DragDropEffects.Move;
|
---|
| 230 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Link)) e.Effect = DragDropEffects.Link;
|
---|
[2853] | 231 | }
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | private void OperatorGraphView_DragDrop(object sender, DragEventArgs e) {
|
---|
| 235 | if (e.Effect != DragDropEffects.None) {
|
---|
[5837] | 236 | IOperator op = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) as IOperator;
|
---|
[5744] | 237 | if (e.Effect.HasFlag(DragDropEffects.Copy)) op = (IOperator)op.Clone();
|
---|
[3386] | 238 | IOperatorShapeInfo shapeInfo = OperatorShapeInfoFactory.CreateOperatorShapeInfo(op);
|
---|
[2893] | 239 | Point mouse = new Point(MousePosition.X, MousePosition.Y);
|
---|
[2934] | 240 | Point screen = this.graphVisualizationInfoView.PointToScreen(new Point(0, 0));
|
---|
| 241 | Point control = new Point(mouse.X - screen.X, mouse.Y - screen.Y);
|
---|
| 242 | PointF worldPoint = this.graphVisualizationInfoView.Controller.View.ViewToWorld(control);
|
---|
[2893] | 243 |
|
---|
[2934] | 244 | if (worldPoint.X < 0)
|
---|
| 245 | worldPoint.X = 0;
|
---|
| 246 | if (worldPoint.Y < 0)
|
---|
| 247 | worldPoint.Y = 0;
|
---|
| 248 |
|
---|
[2893] | 249 | shapeInfo.Location = Point.Round(worldPoint);
|
---|
[2853] | 250 | this.VisualizationInfo.AddShapeInfo(op, shapeInfo);
|
---|
| 251 | }
|
---|
| 252 | }
|
---|
| 253 | #endregion
|
---|
[2899] | 254 |
|
---|
[2901] | 255 | private void tool_OnToolActivate(object sender, ToolEventArgs e) {
|
---|
| 256 | Button button = GetButtonForTool(e.Properties.Name);
|
---|
| 257 | if (button != null)
|
---|
| 258 | button.Enabled = false;
|
---|
| 259 | }
|
---|
| 260 |
|
---|
| 261 | private void tool_OnToolDeactivate(object sender, ToolEventArgs e) {
|
---|
| 262 | Button button = GetButtonForTool(e.Properties.Name);
|
---|
| 263 | if (button != null)
|
---|
| 264 | button.Enabled = true;
|
---|
| 265 | }
|
---|
| 266 |
|
---|
| 267 | private Button GetButtonForTool(string toolName) {
|
---|
| 268 | Button button = null;
|
---|
| 269 | switch (toolName) {
|
---|
| 270 | case ControllerBase.SelectionToolName:
|
---|
| 271 | button = this.selectButton;
|
---|
| 272 | break;
|
---|
| 273 | case ControllerBase.ConnectionToolName:
|
---|
| 274 | button = this.connectButton;
|
---|
| 275 | break;
|
---|
| 276 | case ControllerBase.ZoomAreaToolName:
|
---|
[3523] | 277 | button = this.zoomToFitButton;
|
---|
[2901] | 278 | break;
|
---|
| 279 | }
|
---|
| 280 | return button;
|
---|
| 281 | }
|
---|
| 282 |
|
---|
[2899] | 283 | private void selectButton_Click(object sender, EventArgs e) {
|
---|
| 284 | ITool tool = this.graphVisualizationInfoView.Controller.Tools.Where(t => t.Name == ControllerBase.SelectionToolName).First();
|
---|
[2901] | 285 | this.graphVisualizationInfoView.Controller.DeactivateAllTools();
|
---|
[2899] | 286 | }
|
---|
| 287 |
|
---|
| 288 | private void connectButton_Click(object sender, EventArgs e) {
|
---|
| 289 | this.graphVisualizationInfoView.Controller.ActivateTool(ControllerBase.ConnectionToolName);
|
---|
| 290 | }
|
---|
| 291 |
|
---|
| 292 | private void relayoutButton_Click(object sender, EventArgs e) {
|
---|
| 293 | this.graphVisualizationInfoView.RelayoutGraph();
|
---|
| 294 | }
|
---|
| 295 |
|
---|
| 296 | private void zoomAreaButton_Click(object sender, EventArgs e) {
|
---|
[2934] | 297 | this.graphVisualizationInfoView.Controller.View.ZoomFit();
|
---|
[2899] | 298 | }
|
---|
| 299 |
|
---|
| 300 | private void zoomInButton_Click(object sender, EventArgs e) {
|
---|
| 301 | this.graphVisualizationInfoView.Controller.ActivateTool(ControllerBase.ZoomInToolName);
|
---|
| 302 | }
|
---|
| 303 |
|
---|
| 304 | private void zoomOutButton_Click(object sender, EventArgs e) {
|
---|
| 305 | this.graphVisualizationInfoView.Controller.ActivateTool(ControllerBase.ZoomOutToolName);
|
---|
| 306 | }
|
---|
[2934] | 307 |
|
---|
| 308 | private void screenshotButton_Click(object sender, EventArgs e) {
|
---|
[3176] | 309 | Bitmap bitmap = ImageExporter.FromBundle(new Bundle(this.graphVisualizationInfoView.Controller.Model.Paintables), this.graphVisualizationInfoView.Controller.View.Graphics);
|
---|
[2934] | 310 | SaveFileDialog saveFileDialog = new SaveFileDialog();
|
---|
| 311 | saveFileDialog.Title = "Save Screenshot";
|
---|
[3753] | 312 | saveFileDialog.DefaultExt = "png";
|
---|
| 313 | saveFileDialog.Filter = "Portable Network Graphics|*.png|All Files|*.*";
|
---|
[2934] | 314 | saveFileDialog.FilterIndex = 1;
|
---|
[3514] | 315 | saveFileDialog.AddExtension = true;
|
---|
[2934] | 316 |
|
---|
| 317 | if (saveFileDialog.ShowDialog() == DialogResult.OK) {
|
---|
| 318 | bitmap.Save(saveFileDialog.FileName);
|
---|
| 319 | }
|
---|
| 320 | }
|
---|
[2801] | 321 | }
|
---|
| 322 | }
|
---|