[645] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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.ComponentModel;
|
---|
| 25 | using System.Drawing;
|
---|
| 26 | using System.Data;
|
---|
| 27 | using System.Linq;
|
---|
| 28 | using System.Text;
|
---|
| 29 | using System.Windows.Forms;
|
---|
| 30 | using HeuristicLab.Core;
|
---|
| 31 | using HeuristicLab.PluginInfrastructure;
|
---|
| 32 | using HeuristicLab.Data;
|
---|
| 33 |
|
---|
| 34 | namespace HeuristicLab.GP {
|
---|
| 35 | public partial class FunctionTreeView : ViewBase {
|
---|
| 36 | private IFunctionTree functionTree;
|
---|
| 37 |
|
---|
| 38 | private IFunctionTree selectedBranch;
|
---|
| 39 | private IVariable selectedVariable;
|
---|
[654] | 40 | private IFunctionTreeNameGenerator nameGenerator;
|
---|
| 41 | private IFunctionTreeNameGenerator[] allNameGenerators;
|
---|
[655] | 42 | private MenuItem representationsMenu;
|
---|
[645] | 43 |
|
---|
| 44 | public FunctionTreeView() {
|
---|
[654] | 45 | nameGenerator = new DefaultFunctionTreeNameGenerator();
|
---|
[645] | 46 | InitializeComponent();
|
---|
[654] | 47 |
|
---|
| 48 | DiscoveryService discoveryService = new DiscoveryService();
|
---|
| 49 | allNameGenerators = discoveryService.GetInstances<IFunctionTreeNameGenerator>();
|
---|
[655] | 50 | representationsMenu = new MenuItem();
|
---|
| 51 | representationsMenu.Text = "Tree representation";
|
---|
| 52 | representationsMenu.Name = "Tree representation";
|
---|
[654] | 53 | foreach(IFunctionTreeNameGenerator generator in allNameGenerators) {
|
---|
[655] | 54 | MenuItem mi = new MenuItem(generator.Name,
|
---|
[654] | 55 | delegate(object source, EventArgs args) {
|
---|
[655] | 56 | IFunctionTreeNameGenerator g = (IFunctionTreeNameGenerator)((MenuItem)source).Tag;
|
---|
| 57 | this.nameGenerator = g;
|
---|
| 58 | foreach(MenuItem otherMenuItem in representationsMenu.MenuItems) otherMenuItem.Checked = false;
|
---|
| 59 | ((MenuItem)source).Checked = true;
|
---|
[654] | 60 | UpdateControls();
|
---|
[655] | 61 | }, Shortcut.None);
|
---|
| 62 | if(generator is DefaultFunctionTreeNameGenerator) mi.Checked = true;
|
---|
| 63 | else mi.Checked = false;
|
---|
| 64 | mi.Tag = generator;
|
---|
| 65 | representationsMenu.MenuItems.Add(mi);
|
---|
[654] | 66 | }
|
---|
[645] | 67 | }
|
---|
| 68 |
|
---|
| 69 | public FunctionTreeView(IFunctionTree functionTree)
|
---|
| 70 | : this() {
|
---|
| 71 | this.functionTree = functionTree;
|
---|
| 72 | Refresh();
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | protected override void UpdateControls() {
|
---|
| 76 | funTreeView.Nodes.Clear();
|
---|
| 77 | TreeNode rootNode = new TreeNode();
|
---|
| 78 | rootNode.Name = functionTree.Function.Name;
|
---|
[654] | 79 | rootNode.Text = nameGenerator.GetName(functionTree);
|
---|
[645] | 80 | rootNode.Tag = functionTree;
|
---|
[655] | 81 | treeNodeContextMenu.MenuItems.Clear();
|
---|
| 82 | treeNodeContextMenu.MenuItems.Add(representationsMenu);
|
---|
[654] | 83 | DiscoveryService discoveryService = new DiscoveryService();
|
---|
| 84 | IFunctionTreeExporter[] exporters = discoveryService.GetInstances<IFunctionTreeExporter>();
|
---|
| 85 | foreach(IFunctionTreeExporter exporter in exporters) {
|
---|
| 86 | string result;
|
---|
| 87 | // register a menu item for the exporter
|
---|
[655] | 88 | MenuItem item = new MenuItem("Copy to clip-board (" + exporter.Name + ")",
|
---|
[654] | 89 | delegate(object source, EventArgs args) {
|
---|
| 90 | TreeNode node = funTreeView.SelectedNode;
|
---|
| 91 | if(node == null || node.Tag == null) return;
|
---|
| 92 | Clipboard.SetText(exporter.Export((IFunctionTree)node.Tag));
|
---|
[655] | 93 | }, Shortcut.None);
|
---|
[654] | 94 | // try to export the whole tree
|
---|
| 95 | if(exporter.TryExport(functionTree, out result)) {
|
---|
| 96 | // if it worked enable the context-menu item
|
---|
| 97 | item.Enabled = true;
|
---|
| 98 | } else {
|
---|
| 99 | item.Enabled = false;
|
---|
| 100 | }
|
---|
[655] | 101 | treeNodeContextMenu.MenuItems.Add(item);
|
---|
[654] | 102 | }
|
---|
[655] | 103 | rootNode.ContextMenu = treeNodeContextMenu;
|
---|
[645] | 104 | funTreeView.Nodes.Add(rootNode);
|
---|
| 105 |
|
---|
| 106 | foreach(IFunctionTree subTree in functionTree.SubTrees) {
|
---|
| 107 | CreateTree(rootNode, subTree);
|
---|
| 108 | }
|
---|
| 109 | funTreeView.ExpandAll();
|
---|
| 110 | }
|
---|
| 111 |
|
---|
| 112 | private void CreateTree(TreeNode rootNode, IFunctionTree functionTree) {
|
---|
| 113 | TreeNode node = new TreeNode();
|
---|
| 114 | node.Name = functionTree.Function.Name;
|
---|
[654] | 115 | node.Text = nameGenerator.GetName(functionTree);
|
---|
[645] | 116 | node.Tag = functionTree;
|
---|
[655] | 117 | node.ContextMenu = treeNodeContextMenu;
|
---|
[645] | 118 | rootNode.Nodes.Add(node);
|
---|
| 119 | foreach(IFunctionTree subTree in functionTree.SubTrees) {
|
---|
| 120 | CreateTree(node, subTree);
|
---|
| 121 | }
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | private void functionTreeView_AfterSelect(object sender, TreeViewEventArgs e) {
|
---|
| 125 | variablesListBox.Items.Clear();
|
---|
| 126 | variablesSplitContainer.Panel2.Controls.Clear();
|
---|
| 127 | templateTextBox.Clear();
|
---|
| 128 | editButton.Enabled = false;
|
---|
| 129 | if(funTreeView.SelectedNode != null && funTreeView.SelectedNode.Tag != null) {
|
---|
| 130 | IFunctionTree selectedBranch = (IFunctionTree)funTreeView.SelectedNode.Tag;
|
---|
| 131 | UpdateVariablesList(selectedBranch);
|
---|
[654] | 132 | templateTextBox.Text = nameGenerator.GetName(selectedBranch);
|
---|
[645] | 133 | this.selectedBranch = selectedBranch;
|
---|
| 134 | editButton.Enabled = true;
|
---|
| 135 | }
|
---|
| 136 | }
|
---|
| 137 |
|
---|
| 138 | private void UpdateVariablesList(IFunctionTree functionTree) {
|
---|
| 139 | foreach(IVariable variable in functionTree.LocalVariables) {
|
---|
| 140 | variablesListBox.Items.Add(variable.Name);
|
---|
| 141 | }
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | private void variablesListBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 145 | // in case we had an event-handler registered for a different variable => unregister the event-handler
|
---|
| 146 | if(selectedVariable != null) {
|
---|
| 147 | selectedVariable.Value.Changed -= new EventHandler(selectedVariable_ValueChanged);
|
---|
| 148 | }
|
---|
| 149 | if(variablesListBox.SelectedItem != null) {
|
---|
| 150 | string selectedVariableName = (string)variablesListBox.SelectedItem;
|
---|
| 151 | selectedVariable = selectedBranch.GetLocalVariable(selectedVariableName);
|
---|
| 152 | variablesSplitContainer.Panel2.Controls.Clear();
|
---|
| 153 | Control editor = (Control)selectedVariable.CreateView();
|
---|
| 154 | variablesSplitContainer.Panel2.Controls.Add(editor);
|
---|
| 155 | editor.Dock = DockStyle.Fill;
|
---|
| 156 | // register an event handler that updates the treenode when the value of the variable is changed by the user
|
---|
| 157 | selectedVariable.Value.Changed += new EventHandler(selectedVariable_ValueChanged);
|
---|
| 158 | } else {
|
---|
| 159 | variablesSplitContainer.Panel2.Controls.Clear();
|
---|
| 160 | }
|
---|
| 161 | }
|
---|
| 162 |
|
---|
| 163 | void selectedVariable_ValueChanged(object sender, EventArgs e) {
|
---|
| 164 | if(funTreeView.SelectedNode != null && funTreeView.SelectedNode.Tag != null) {
|
---|
| 165 | TreeNode node = funTreeView.SelectedNode;
|
---|
[654] | 166 | node.Text = nameGenerator.GetName(functionTree);
|
---|
[645] | 167 | }
|
---|
| 168 | }
|
---|
| 169 |
|
---|
| 170 | protected virtual void editButton_Click(object sender, EventArgs e) {
|
---|
| 171 | PluginManager.ControlManager.ShowControl(selectedBranch.Function.CreateView());
|
---|
| 172 | }
|
---|
| 173 |
|
---|
| 174 | private void funTreeView_MouseUp(object sender, MouseEventArgs e) {
|
---|
| 175 | if(e.Button == MouseButtons.Right) {
|
---|
| 176 | // Select the clicked node
|
---|
| 177 | funTreeView.SelectedNode = funTreeView.GetNodeAt(e.X, e.Y);
|
---|
| 178 | }
|
---|
| 179 | }
|
---|
| 180 | }
|
---|
| 181 | }
|
---|