[2233] | 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.Data;
|
---|
| 26 | using System.Drawing;
|
---|
| 27 | using System.Linq;
|
---|
| 28 | using System.Text;
|
---|
| 29 | using System.Windows.Forms;
|
---|
| 30 |
|
---|
[2243] | 31 | using HeuristicLab.PluginInfrastructure;
|
---|
| 32 |
|
---|
[2233] | 33 | namespace HeuristicLab.MainForm {
|
---|
[2243] | 34 | public abstract partial class MainFormBase : Form, IMainForm {
|
---|
| 35 | protected MainFormBase(Type userInterfaceItemType)
|
---|
[2233] | 36 | : base() {
|
---|
| 37 | InitializeComponent();
|
---|
| 38 | openViews = new List<IView>();
|
---|
| 39 | this.userInterfaceItemType = userInterfaceItemType;
|
---|
[2243] | 40 | CreateGUI();
|
---|
[2233] | 41 | }
|
---|
| 42 |
|
---|
| 43 | #region IMainForm Members
|
---|
| 44 | public string Title {
|
---|
[2243] | 45 | get { return this.Text; }
|
---|
| 46 | set { this.Text = value; }
|
---|
[2233] | 47 | }
|
---|
| 48 |
|
---|
| 49 | public string StatusStripText {
|
---|
| 50 | get { return this.statusStripLabel.Text; }
|
---|
| 51 | set { this.statusStripLabel.Text = value; }
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | protected Type userInterfaceItemType;
|
---|
| 55 | public Type UserInterfaceItemType {
|
---|
| 56 | get { return this.userInterfaceItemType; }
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | protected IView activeView;
|
---|
| 60 | public IView ActiveView {
|
---|
| 61 | get { return this.activeView; }
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | protected List<IView> openViews;
|
---|
| 65 | public IEnumerable<IView> OpenViews {
|
---|
| 66 | get { return openViews; }
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | public virtual void ShowView(IView view) {
|
---|
| 70 | view.MainForm = this;
|
---|
| 71 | activeView = view;
|
---|
| 72 | openViews.Add(view);
|
---|
| 73 | }
|
---|
[2243] | 74 | #endregion
|
---|
[2233] | 75 |
|
---|
[2243] | 76 | #region create menu and toolbar
|
---|
| 77 | private void CreateGUI() {
|
---|
| 78 | DiscoveryService ds = new DiscoveryService();
|
---|
| 79 |
|
---|
[2247] | 80 | object[] items = ds.GetInstances(userInterfaceItemType);
|
---|
| 81 | IEnumerable<IToolStripItem> toolStripItems = items.Where(mi => mi as IToolStripMenuItem != null).Cast<IToolStripItem>();
|
---|
| 82 | toolStripItems = toolStripItems.OrderBy(x => x.Position);
|
---|
| 83 | foreach (IToolStripMenuItem menuItem in toolStripItems) {
|
---|
| 84 | AddToolStripMenuItem(menuItem);
|
---|
[2243] | 85 | }
|
---|
| 86 |
|
---|
[2247] | 87 | items = ds.GetInstances(userInterfaceItemType);
|
---|
| 88 | toolStripItems = items.Where(mi => mi as IToolStripButtonItem != null).Cast<IToolStripItem>();
|
---|
| 89 | toolStripItems = toolStripItems.OrderBy(x => x.Position);
|
---|
| 90 | foreach (IToolStripButtonItem toolStripButtonItem in toolStripItems) {
|
---|
| 91 | AddToolStripButtonItem(toolStripButtonItem);
|
---|
[2243] | 92 | }
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | private void AddToolStripMenuItem(IToolStripMenuItem menuItem) {
|
---|
| 96 | ToolStripMenuItem item = new ToolStripMenuItem();
|
---|
[2249] | 97 | SetToolStripItemProperties(item, menuItem);
|
---|
[2243] | 98 | item.ShortcutKeys = menuItem.ShortCutKeys;
|
---|
| 99 |
|
---|
[2249] | 100 | ToolStripDropDownItem parent = FindParent(menuItem, menuStrip.Items);
|
---|
[2243] | 101 | if (parent == null)
|
---|
| 102 | menuStrip.Items.Add(item);
|
---|
| 103 | else
|
---|
| 104 | parent.DropDownItems.Add(item);
|
---|
| 105 | }
|
---|
| 106 |
|
---|
| 107 | private void AddToolStripButtonItem(IToolStripButtonItem buttonItem) {
|
---|
[2249] | 108 | ToolStripItem item;
|
---|
| 109 | if (buttonItem.IsDropDownButton)
|
---|
| 110 | item = new ToolStripDropDownButton();
|
---|
| 111 | else
|
---|
| 112 | item = new ToolStripButton();
|
---|
| 113 |
|
---|
[2243] | 114 | SetToolStripItemProperties(item, buttonItem);
|
---|
[2249] | 115 | ToolStripDropDownItem parent = FindParent(buttonItem,toolStrip.Items);
|
---|
| 116 | if (parent == null)
|
---|
| 117 | toolStrip.Items.Add(item);
|
---|
| 118 | else
|
---|
| 119 | parent.DropDownItems.Add(item);
|
---|
[2243] | 120 | }
|
---|
| 121 |
|
---|
[2249] | 122 | private ToolStripDropDownItem FindParent(IToolStripItem item, ToolStripItemCollection parentItems) {
|
---|
| 123 | ToolStripDropDownItem parent = null;
|
---|
| 124 | foreach (string structure in item.Structure.Split(item.StructureSeparator)) {
|
---|
| 125 | if (parentItems.ContainsKey(structure))
|
---|
| 126 | parent = (ToolStripDropDownItem)parentItems[structure];
|
---|
| 127 | else
|
---|
| 128 | break;
|
---|
| 129 | parentItems = parent.DropDownItems;
|
---|
| 130 | }
|
---|
| 131 | return parent;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
[2243] | 134 | private void SetToolStripItemProperties(ToolStripItem toolStripItem, IToolStripItem iToolStripItem) {
|
---|
| 135 | toolStripItem.Text = iToolStripItem.Name;
|
---|
| 136 | toolStripItem.Name = iToolStripItem.Name;
|
---|
| 137 | toolStripItem.Tag = iToolStripItem;
|
---|
| 138 | toolStripItem.Image = iToolStripItem.Image;
|
---|
| 139 | toolStripItem.DisplayStyle = iToolStripItem.DisplayStyle;
|
---|
| 140 | toolStripItem.Click += new EventHandler(ToolStripItemClicked);
|
---|
| 141 | iToolStripItem.ToolStripItem = toolStripItem;
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | private void ToolStripItemClicked(object sender, EventArgs e) {
|
---|
| 145 | System.Windows.Forms.ToolStripItem item = (System.Windows.Forms.ToolStripItem)sender;
|
---|
| 146 | ((IAction)item.Tag).Execute(this);
|
---|
| 147 | }
|
---|
[2233] | 148 | #endregion
|
---|
| 149 | }
|
---|
| 150 | }
|
---|