[3244] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12009] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3244] | 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.Collections.Generic;
|
---|
| 24 | using System.Drawing;
|
---|
[4651] | 25 | using System.Drawing.Imaging;
|
---|
[11120] | 26 | using System.IO;
|
---|
| 27 | using System.Linq;
|
---|
[3244] | 28 | using System.Windows.Forms;
|
---|
| 29 |
|
---|
[11120] | 30 |
|
---|
[3244] | 31 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
|
---|
[8942] | 32 | public partial class SymbolicExpressionTreeChart : UserControl {
|
---|
[3470] | 33 | private Image image;
|
---|
[11120] | 34 | private readonly StringFormat stringFormat;
|
---|
| 35 | private Dictionary<ISymbolicExpressionTreeNode, VisualTreeNode<ISymbolicExpressionTreeNode>> visualTreeNodes;
|
---|
| 36 | private Dictionary<Tuple<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>, VisualTreeNodeConnection> visualLines;
|
---|
| 37 | private ILayoutEngine<ISymbolicExpressionTreeNode> layoutEngine;
|
---|
[3244] | 38 |
|
---|
[11120] | 39 | private const int preferredNodeWidth = 70;
|
---|
| 40 | private const int preferredNodeHeight = 46;
|
---|
| 41 | private int minHorizontalDistance = 30;
|
---|
| 42 | private int minVerticalDistance = 30;
|
---|
| 43 |
|
---|
[3244] | 44 | public SymbolicExpressionTreeChart() {
|
---|
| 45 | InitializeComponent();
|
---|
[3470] | 46 | this.image = new Bitmap(Width, Height);
|
---|
[8942] | 47 | this.stringFormat = new StringFormat { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center };
|
---|
[3244] | 48 | this.spacing = 5;
|
---|
| 49 | this.lineColor = Color.Black;
|
---|
| 50 | this.backgroundColor = Color.White;
|
---|
[11120] | 51 | this.textFont = new Font(FontFamily.GenericSansSerif, 12);
|
---|
| 52 |
|
---|
| 53 | visualTreeNodes = new Dictionary<ISymbolicExpressionTreeNode, VisualTreeNode<ISymbolicExpressionTreeNode>>();
|
---|
| 54 | visualLines = new Dictionary<Tuple<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>, VisualTreeNodeConnection>();
|
---|
| 55 |
|
---|
| 56 | layoutEngine = new ReingoldTilfordLayoutEngine<ISymbolicExpressionTreeNode>(n => n.Subtrees) {
|
---|
| 57 | NodeWidth = preferredNodeWidth,
|
---|
| 58 | NodeHeight = preferredNodeHeight,
|
---|
| 59 | HorizontalSpacing = minHorizontalDistance,
|
---|
| 60 | VerticalSpacing = minVerticalDistance
|
---|
| 61 | };
|
---|
| 62 | reingoldTilfordToolStripMenuItem.Checked = true;
|
---|
[3244] | 63 | }
|
---|
| 64 |
|
---|
[5513] | 65 | public SymbolicExpressionTreeChart(ISymbolicExpressionTree tree)
|
---|
[3244] | 66 | : this() {
|
---|
| 67 | this.Tree = tree;
|
---|
| 68 | }
|
---|
| 69 |
|
---|
[11120] | 70 | #region Public properties
|
---|
[3244] | 71 | private int spacing;
|
---|
| 72 | public int Spacing {
|
---|
| 73 | get { return this.spacing; }
|
---|
| 74 | set {
|
---|
| 75 | this.spacing = value;
|
---|
| 76 | this.Repaint();
|
---|
| 77 | }
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | private Color lineColor;
|
---|
| 81 | public Color LineColor {
|
---|
| 82 | get { return this.lineColor; }
|
---|
| 83 | set {
|
---|
| 84 | this.lineColor = value;
|
---|
| 85 | this.Repaint();
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | private Color backgroundColor;
|
---|
| 90 | public Color BackgroundColor {
|
---|
| 91 | get { return this.backgroundColor; }
|
---|
| 92 | set {
|
---|
| 93 | this.backgroundColor = value;
|
---|
| 94 | this.Repaint();
|
---|
| 95 | }
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | private Font textFont;
|
---|
| 99 | public Font TextFont {
|
---|
| 100 | get { return this.textFont; }
|
---|
| 101 | set {
|
---|
| 102 | this.textFont = value;
|
---|
| 103 | this.Repaint();
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[5513] | 107 | private ISymbolicExpressionTree tree;
|
---|
| 108 | public ISymbolicExpressionTree Tree {
|
---|
[3244] | 109 | get { return this.tree; }
|
---|
| 110 | set {
|
---|
| 111 | tree = value;
|
---|
| 112 | Repaint();
|
---|
| 113 | }
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[6803] | 116 | private bool suspendRepaint;
|
---|
| 117 | public bool SuspendRepaint {
|
---|
| 118 | get { return suspendRepaint; }
|
---|
| 119 | set { suspendRepaint = value; }
|
---|
| 120 | }
|
---|
[11120] | 121 | #endregion
|
---|
[6803] | 122 |
|
---|
[3470] | 123 | protected override void OnPaint(PaintEventArgs e) {
|
---|
[6803] | 124 | e.Graphics.DrawImage(image, 0, 0);
|
---|
[3470] | 125 | base.OnPaint(e);
|
---|
| 126 | }
|
---|
| 127 | protected override void OnResize(EventArgs e) {
|
---|
| 128 | base.OnResize(e);
|
---|
[5956] | 129 | if (this.Width <= 1 || this.Height <= 1)
|
---|
[3470] | 130 | this.image = new Bitmap(1, 1);
|
---|
[11120] | 131 | else {
|
---|
[3470] | 132 | this.image = new Bitmap(Width, Height);
|
---|
[11120] | 133 | }
|
---|
[3470] | 134 | this.Repaint();
|
---|
| 135 | }
|
---|
[3244] | 136 |
|
---|
[11120] | 137 | public event EventHandler Repainted;//expose this event to notify the parent control that the tree was repainted
|
---|
| 138 | protected virtual void OnRepaint(object sender, EventArgs e) {
|
---|
| 139 | var repainted = Repainted;
|
---|
| 140 | if (repainted != null) {
|
---|
| 141 | repainted(sender, e);
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 |
|
---|
[3244] | 145 | public void Repaint() {
|
---|
[6803] | 146 | if (!suspendRepaint) {
|
---|
| 147 | this.GenerateImage();
|
---|
| 148 | this.Refresh();
|
---|
[11120] | 149 | OnRepaint(this, EventArgs.Empty);
|
---|
[6803] | 150 | }
|
---|
[3470] | 151 | }
|
---|
| 152 |
|
---|
[8980] | 153 | public void RepaintNodes() {
|
---|
| 154 | if (!suspendRepaint) {
|
---|
[8986] | 155 | using (var graphics = Graphics.FromImage(image)) {
|
---|
| 156 | graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
|
---|
| 157 | graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
|
---|
| 158 | foreach (var visualNode in visualTreeNodes.Values) {
|
---|
| 159 | DrawTreeNode(graphics, visualNode);
|
---|
[11120] | 160 | if (visualNode.Content.SubtreeCount > 0) {
|
---|
| 161 | foreach (var visualSubtree in visualNode.Content.Subtrees.Select(s => visualTreeNodes[s])) {
|
---|
| 162 | DrawLine(graphics, visualNode, visualSubtree);
|
---|
| 163 | }
|
---|
| 164 | }
|
---|
[8986] | 165 | }
|
---|
[8980] | 166 | }
|
---|
| 167 | this.Refresh();
|
---|
| 168 | }
|
---|
| 169 | }
|
---|
| 170 |
|
---|
[11120] | 171 | public void RepaintNode(VisualTreeNode<ISymbolicExpressionTreeNode> visualNode) {
|
---|
[8980] | 172 | if (!suspendRepaint) {
|
---|
[8986] | 173 | using (var graphics = Graphics.FromImage(image)) {
|
---|
| 174 | graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
|
---|
| 175 | graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
|
---|
| 176 | DrawTreeNode(graphics, visualNode);
|
---|
| 177 | }
|
---|
[8980] | 178 | this.Refresh();
|
---|
| 179 | }
|
---|
| 180 | }
|
---|
| 181 |
|
---|
[3470] | 182 | private void GenerateImage() {
|
---|
| 183 | using (Graphics graphics = Graphics.FromImage(image)) {
|
---|
[3244] | 184 | graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
|
---|
| 185 | graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
|
---|
| 186 | graphics.Clear(backgroundColor);
|
---|
| 187 | if (tree != null) {
|
---|
[11120] | 188 | DrawFunctionTree(graphics, preferredNodeWidth, preferredNodeHeight, minHorizontalDistance, minVerticalDistance);
|
---|
[3244] | 189 | }
|
---|
| 190 | }
|
---|
| 191 | }
|
---|
| 192 |
|
---|
[11120] | 193 | public VisualTreeNode<ISymbolicExpressionTreeNode> GetVisualSymbolicExpressionTreeNode(ISymbolicExpressionTreeNode symbolicExpressionTreeNode) {
|
---|
[3915] | 194 | if (visualTreeNodes.ContainsKey(symbolicExpressionTreeNode))
|
---|
| 195 | return visualTreeNodes[symbolicExpressionTreeNode];
|
---|
| 196 | return null;
|
---|
| 197 | }
|
---|
| 198 |
|
---|
[11120] | 199 | public VisualTreeNodeConnection GetVisualSymbolicExpressionTreeNodeConnection(ISymbolicExpressionTreeNode parent, ISymbolicExpressionTreeNode child) {
|
---|
[6803] | 200 | if (child.Parent != parent) throw new ArgumentException();
|
---|
| 201 | var key = Tuple.Create(parent, child);
|
---|
[11120] | 202 | VisualTreeNodeConnection connection = null;
|
---|
[6803] | 203 | visualLines.TryGetValue(key, out connection);
|
---|
| 204 | return connection;
|
---|
| 205 | }
|
---|
| 206 |
|
---|
[3244] | 207 | #region events
|
---|
| 208 | public event MouseEventHandler SymbolicExpressionTreeNodeClicked;
|
---|
[8942] | 209 | protected virtual void OnSymbolicExpressionTreeNodeClicked(object sender, MouseEventArgs e) {
|
---|
[3244] | 210 | var clicked = SymbolicExpressionTreeNodeClicked;
|
---|
| 211 | if (clicked != null)
|
---|
| 212 | clicked(sender, e);
|
---|
| 213 | }
|
---|
| 214 |
|
---|
[9043] | 215 | protected virtual void SymbolicExpressionTreeChart_MouseClick(object sender, MouseEventArgs e) {
|
---|
[11120] | 216 | var visualTreeNode = FindVisualSymbolicExpressionTreeNodeAt(e.X, e.Y);
|
---|
[8942] | 217 | if (visualTreeNode != null) {
|
---|
[3244] | 218 | OnSymbolicExpressionTreeNodeClicked(visualTreeNode, e);
|
---|
[8942] | 219 | }
|
---|
[3244] | 220 | }
|
---|
| 221 |
|
---|
| 222 | public event MouseEventHandler SymbolicExpressionTreeNodeDoubleClicked;
|
---|
[8942] | 223 | protected virtual void OnSymbolicExpressionTreeNodeDoubleClicked(object sender, MouseEventArgs e) {
|
---|
[3244] | 224 | var doubleClicked = SymbolicExpressionTreeNodeDoubleClicked;
|
---|
| 225 | if (doubleClicked != null)
|
---|
| 226 | doubleClicked(sender, e);
|
---|
| 227 | }
|
---|
| 228 |
|
---|
[9043] | 229 | protected virtual void SymbolicExpressionTreeChart_MouseDoubleClick(object sender, MouseEventArgs e) {
|
---|
[11120] | 230 | VisualTreeNode<ISymbolicExpressionTreeNode> visualTreeNode = FindVisualSymbolicExpressionTreeNodeAt(e.X, e.Y);
|
---|
[3244] | 231 | if (visualTreeNode != null)
|
---|
| 232 | OnSymbolicExpressionTreeNodeDoubleClicked(visualTreeNode, e);
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | public event ItemDragEventHandler SymbolicExpressionTreeNodeDrag;
|
---|
[8942] | 236 | protected virtual void OnSymbolicExpressionTreeNodeDragDrag(object sender, ItemDragEventArgs e) {
|
---|
[3244] | 237 | var dragged = SymbolicExpressionTreeNodeDrag;
|
---|
| 238 | if (dragged != null)
|
---|
| 239 | dragged(sender, e);
|
---|
| 240 | }
|
---|
| 241 |
|
---|
[11120] | 242 | private VisualTreeNode<ISymbolicExpressionTreeNode> draggedSymbolicExpressionTree;
|
---|
[3244] | 243 | private MouseButtons dragButtons;
|
---|
| 244 | private void SymbolicExpressionTreeChart_MouseDown(object sender, MouseEventArgs e) {
|
---|
| 245 | this.dragButtons = e.Button;
|
---|
| 246 | this.draggedSymbolicExpressionTree = FindVisualSymbolicExpressionTreeNodeAt(e.X, e.Y);
|
---|
| 247 | }
|
---|
| 248 | private void SymbolicExpressionTreeChart_MouseUp(object sender, MouseEventArgs e) {
|
---|
| 249 | this.draggedSymbolicExpressionTree = null;
|
---|
| 250 | this.dragButtons = MouseButtons.None;
|
---|
| 251 | }
|
---|
| 252 |
|
---|
| 253 | private void SymbolicExpressionTreeChart_MouseMove(object sender, MouseEventArgs e) {
|
---|
[11120] | 254 | VisualTreeNode<ISymbolicExpressionTreeNode> visualTreeNode = FindVisualSymbolicExpressionTreeNodeAt(e.X, e.Y);
|
---|
[3244] | 255 | if (draggedSymbolicExpressionTree != null &&
|
---|
| 256 | draggedSymbolicExpressionTree != visualTreeNode) {
|
---|
| 257 | OnSymbolicExpressionTreeNodeDragDrag(draggedSymbolicExpressionTree, new ItemDragEventArgs(dragButtons, draggedSymbolicExpressionTree));
|
---|
| 258 | draggedSymbolicExpressionTree = null;
|
---|
| 259 | } else if (draggedSymbolicExpressionTree == null &&
|
---|
| 260 | visualTreeNode != null) {
|
---|
| 261 | string tooltipText = visualTreeNode.ToolTip;
|
---|
| 262 | if (this.toolTip.GetToolTip(this) != tooltipText)
|
---|
| 263 | this.toolTip.SetToolTip(this, tooltipText);
|
---|
| 264 |
|
---|
| 265 | } else if (visualTreeNode == null)
|
---|
| 266 | this.toolTip.SetToolTip(this, "");
|
---|
| 267 | }
|
---|
| 268 |
|
---|
[11120] | 269 | public VisualTreeNode<ISymbolicExpressionTreeNode> FindVisualSymbolicExpressionTreeNodeAt(int x, int y) {
|
---|
[3244] | 270 | foreach (var visualTreeNode in visualTreeNodes.Values) {
|
---|
| 271 | if (x >= visualTreeNode.X && x <= visualTreeNode.X + visualTreeNode.Width &&
|
---|
| 272 | y >= visualTreeNode.Y && y <= visualTreeNode.Y + visualTreeNode.Height)
|
---|
| 273 | return visualTreeNode;
|
---|
| 274 | }
|
---|
| 275 | return null;
|
---|
| 276 | }
|
---|
| 277 | #endregion
|
---|
| 278 |
|
---|
[11120] | 279 | private void CalculateLayout(int preferredWidth, int preferredHeight, int minHDistance, int minVDistance) {
|
---|
| 280 | layoutEngine.NodeWidth = preferredWidth;
|
---|
| 281 | layoutEngine.NodeHeight = preferredHeight;
|
---|
| 282 | layoutEngine.HorizontalSpacing = minHDistance;
|
---|
| 283 | layoutEngine.VerticalSpacing = minVDistance;
|
---|
[3244] | 284 |
|
---|
[11120] | 285 | var actualRoot = tree.Root;
|
---|
| 286 | if (actualRoot.Symbol is ProgramRootSymbol && actualRoot.SubtreeCount == 1) {
|
---|
| 287 | actualRoot = tree.Root.GetSubtree(0);
|
---|
| 288 | }
|
---|
[3244] | 289 |
|
---|
[11120] | 290 | var visualNodes = layoutEngine.CalculateLayout(actualRoot, Width, Height).ToList();
|
---|
| 291 | visualTreeNodes = visualNodes.ToDictionary(x => x.Content, x => x);
|
---|
| 292 | visualLines = new Dictionary<Tuple<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>, VisualTreeNodeConnection>();
|
---|
| 293 | foreach (var node in visualNodes.Select(n => n.Content)) {
|
---|
| 294 | foreach (var subtree in node.Subtrees) {
|
---|
| 295 | visualLines.Add(new Tuple<ISymbolicExpressionTreeNode, ISymbolicExpressionTreeNode>(node, subtree), new VisualTreeNodeConnection());
|
---|
[8986] | 296 | }
|
---|
[11120] | 297 | }
|
---|
| 298 | }
|
---|
[3244] | 299 |
|
---|
[11120] | 300 | #region methods for painting the symbolic expression tree
|
---|
| 301 | private void DrawFunctionTree(Graphics graphics, int preferredWidth, int preferredHeight, int minHDistance, int minVDistance) {
|
---|
| 302 | CalculateLayout(preferredWidth, preferredHeight, minHDistance, minVDistance);
|
---|
| 303 | var visualNodes = visualTreeNodes.Values;
|
---|
| 304 | //draw nodes and connections
|
---|
| 305 | foreach (var visualNode in visualNodes) {
|
---|
| 306 | DrawTreeNode(graphics, visualNode);
|
---|
| 307 | var node = visualNode.Content;
|
---|
| 308 | foreach (var subtree in node.Subtrees) {
|
---|
| 309 | var visualLine = GetVisualSymbolicExpressionTreeNodeConnection(node, subtree);
|
---|
| 310 | var visualSubtree = visualTreeNodes[subtree];
|
---|
| 311 | var origin = new Point(visualNode.X + visualNode.Width / 2, visualNode.Y + visualNode.Height);
|
---|
| 312 | var target = new Point(visualSubtree.X + visualSubtree.Width / 2, visualSubtree.Y);
|
---|
| 313 | graphics.Clip = new Region(new Rectangle(Math.Min(origin.X, target.X), origin.Y, Math.Max(origin.X, target.X), target.Y));
|
---|
| 314 | using (var linePen = new Pen(visualLine.LineColor)) {
|
---|
[8986] | 315 | linePen.DashStyle = visualLine.DashStyle;
|
---|
[11120] | 316 | graphics.DrawLine(linePen, origin, target);
|
---|
[8986] | 317 | }
|
---|
[6803] | 318 | }
|
---|
[3244] | 319 | }
|
---|
| 320 | }
|
---|
[8980] | 321 |
|
---|
[11120] | 322 | protected void DrawTreeNode(Graphics graphics, VisualTreeNode<ISymbolicExpressionTreeNode> visualTreeNode) {
|
---|
[8980] | 323 | graphics.Clip = new Region(new Rectangle(visualTreeNode.X, visualTreeNode.Y, visualTreeNode.Width + 1, visualTreeNode.Height + 1));
|
---|
| 324 | graphics.Clear(backgroundColor);
|
---|
[11120] | 325 | var node = visualTreeNode.Content;
|
---|
[8986] | 326 | using (var textBrush = new SolidBrush(visualTreeNode.TextColor))
|
---|
| 327 | using (var nodeLinePen = new Pen(visualTreeNode.LineColor))
|
---|
| 328 | using (var nodeFillBrush = new SolidBrush(visualTreeNode.FillColor)) {
|
---|
| 329 | //draw terminal node
|
---|
| 330 | if (node.SubtreeCount == 0) {
|
---|
| 331 | graphics.FillRectangle(nodeFillBrush, visualTreeNode.X, visualTreeNode.Y, visualTreeNode.Width, visualTreeNode.Height);
|
---|
| 332 | graphics.DrawRectangle(nodeLinePen, visualTreeNode.X, visualTreeNode.Y, visualTreeNode.Width, visualTreeNode.Height);
|
---|
| 333 | } else {
|
---|
| 334 | graphics.FillEllipse(nodeFillBrush, visualTreeNode.X, visualTreeNode.Y, visualTreeNode.Width, visualTreeNode.Height);
|
---|
| 335 | graphics.DrawEllipse(nodeLinePen, visualTreeNode.X, visualTreeNode.Y, visualTreeNode.Width, visualTreeNode.Height);
|
---|
| 336 | }
|
---|
| 337 | //draw name of symbol
|
---|
| 338 | var text = node.ToString();
|
---|
| 339 | graphics.DrawString(text, textFont, textBrush, new RectangleF(visualTreeNode.X, visualTreeNode.Y, visualTreeNode.Width, visualTreeNode.Height), stringFormat);
|
---|
[8980] | 340 | }
|
---|
| 341 | }
|
---|
[11120] | 342 |
|
---|
| 343 | protected void DrawLine(Graphics graphics, VisualTreeNode<ISymbolicExpressionTreeNode> startNode, VisualTreeNode<ISymbolicExpressionTreeNode> endNode) {
|
---|
| 344 | var origin = new Point(startNode.X + startNode.Width / 2, startNode.Y + startNode.Height);
|
---|
| 345 | var target = new Point(endNode.X + endNode.Width / 2, endNode.Y);
|
---|
| 346 | graphics.Clip = new Region(new Rectangle(Math.Min(origin.X, target.X), origin.Y, Math.Max(origin.X, target.X), target.Y));
|
---|
| 347 | var visualLine = GetVisualSymbolicExpressionTreeNodeConnection(startNode.Content, endNode.Content);
|
---|
| 348 | using (var linePen = new Pen(visualLine.LineColor)) {
|
---|
| 349 | linePen.DashStyle = visualLine.DashStyle;
|
---|
| 350 | graphics.DrawLine(linePen, origin, target);
|
---|
| 351 | }
|
---|
| 352 | }
|
---|
[3244] | 353 | #endregion
|
---|
[4651] | 354 | #region save image
|
---|
| 355 | private void saveImageToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
| 356 | if (saveFileDialog.ShowDialog() == DialogResult.OK) {
|
---|
| 357 | string filename = saveFileDialog.FileName.ToLower();
|
---|
| 358 | if (filename.EndsWith("bmp")) SaveImageAsBitmap(filename);
|
---|
| 359 | else if (filename.EndsWith("emf")) SaveImageAsEmf(filename);
|
---|
| 360 | else SaveImageAsBitmap(filename);
|
---|
| 361 | }
|
---|
| 362 | }
|
---|
| 363 |
|
---|
[9931] | 364 | public void SaveImageAsBitmap(string filename) {
|
---|
[4651] | 365 | if (tree == null) return;
|
---|
| 366 | Image image = new Bitmap(Width, Height);
|
---|
| 367 | using (Graphics g = Graphics.FromImage(image)) {
|
---|
[11120] | 368 | DrawFunctionTree(g, preferredNodeWidth, preferredNodeHeight, minHorizontalDistance, minVerticalDistance);
|
---|
[4651] | 369 | }
|
---|
| 370 | image.Save(filename);
|
---|
| 371 | }
|
---|
| 372 |
|
---|
[9931] | 373 | public void SaveImageAsEmf(string filename) {
|
---|
[4651] | 374 | if (tree == null) return;
|
---|
| 375 | using (Graphics g = CreateGraphics()) {
|
---|
| 376 | using (Metafile file = new Metafile(filename, g.GetHdc())) {
|
---|
| 377 | using (Graphics emfFile = Graphics.FromImage(file)) {
|
---|
[11120] | 378 | DrawFunctionTree(emfFile, preferredNodeWidth, preferredNodeHeight, minHorizontalDistance, minVerticalDistance);
|
---|
[4651] | 379 | }
|
---|
| 380 | }
|
---|
| 381 | g.ReleaseHdc();
|
---|
| 382 | }
|
---|
| 383 | }
|
---|
| 384 | #endregion
|
---|
[11120] | 385 | #region export pgf/tikz
|
---|
| 386 | private void exportLatexToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
| 387 | var t = Tree;
|
---|
| 388 | if (t == null) return;
|
---|
| 389 | using (var dialog = new SaveFileDialog { Filter = "Tex (*.tex)|*.tex" }) {
|
---|
| 390 | if (dialog.ShowDialog() != DialogResult.OK) return;
|
---|
| 391 | string filename = dialog.FileName.ToLower();
|
---|
| 392 | var formatter = new SymbolicExpressionTreeLatexFormatter();
|
---|
| 393 | File.WriteAllText(filename, formatter.Format(t));
|
---|
| 394 | }
|
---|
| 395 | }
|
---|
| 396 | #endregion
|
---|
| 397 |
|
---|
| 398 | private void reingoldTilfordToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
| 399 | minHorizontalDistance = 30;
|
---|
| 400 | minVerticalDistance = 30;
|
---|
| 401 | layoutEngine = new ReingoldTilfordLayoutEngine<ISymbolicExpressionTreeNode>(n => n.Subtrees) {
|
---|
| 402 | NodeWidth = preferredNodeWidth,
|
---|
| 403 | NodeHeight = preferredNodeHeight,
|
---|
| 404 | HorizontalSpacing = minHorizontalDistance,
|
---|
| 405 | VerticalSpacing = minVerticalDistance
|
---|
| 406 | };
|
---|
| 407 | reingoldTilfordToolStripMenuItem.Checked = true;
|
---|
| 408 | boxesToolStripMenuItem.Checked = false;
|
---|
| 409 | Repaint();
|
---|
| 410 | }
|
---|
| 411 |
|
---|
| 412 | private void boxesToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
| 413 | minHorizontalDistance = 5;
|
---|
| 414 | minVerticalDistance = 5;
|
---|
| 415 | layoutEngine = new BoxesLayoutEngine<ISymbolicExpressionTreeNode>(n => n.Subtrees, n => n.GetLength(), n => n.GetDepth()) {
|
---|
| 416 | NodeWidth = preferredNodeWidth,
|
---|
| 417 | NodeHeight = preferredNodeHeight,
|
---|
| 418 | HorizontalSpacing = minHorizontalDistance,
|
---|
| 419 | VerticalSpacing = minVerticalDistance
|
---|
| 420 | };
|
---|
| 421 | reingoldTilfordToolStripMenuItem.Checked = false;
|
---|
| 422 | boxesToolStripMenuItem.Checked = true;
|
---|
| 423 | Repaint();
|
---|
| 424 | }
|
---|
[3244] | 425 | }
|
---|
| 426 | }
|
---|