Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.SolutionCaching.Views/3.3/SolutionCacheView.cs @ 10026

Last change on this file since 10026 was 10026, checked in by ascheibe, 11 years ago

#1886

  • removed old caching code
  • adapted convex hull view and some other minor improvements
File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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
22using System;
23using System.Linq;
24using System.Windows.Forms;
25using HeuristicLab.Core;
26using HeuristicLab.Core.Views;
27using HeuristicLab.MainForm;
28using HeuristicLab.MainForm.WindowsForms;
29
30namespace HeuristicLab.Analysis.SolutionCaching.Views {
31  [View("SolutionCache View")]
32  [Content(typeof(SolutionCache<,>), true)]
33  public abstract partial class SolutionCacheView<TKey, TValue> : ItemView
34    where TKey : Item
35    where TValue : SolutionInformation<TKey> {
36    public SolutionCacheView() {
37      InitializeComponent();
38    }
39
40    public new SolutionCache<TKey, TValue> Content {
41      get { return (SolutionCache<TKey, TValue>)base.Content; }
42      set { base.Content = value; }
43    }
44
45    protected override void OnContentChanged() {
46      base.OnContentChanged();
47      cacheSizeTextBox.Clear();
48
49      if (Content != null) {
50        cacheSizeTextBox.Text = Content.Size().ToString();
51        InitializeMenu();
52      }
53    }
54
55    protected virtual void InitializeMenu() {
56      var viewTypes = MainFormManager.GetViewTypes(this.Content.GetType(), false);
57      foreach (Type viewType in viewTypes.OrderBy(x => ViewAttribute.GetViewName(x))) {
58        if (viewType != typeof(ViewHost)) {
59          ToolStripMenuItem menuItem = new ToolStripMenuItem();
60          menuItem.Text = ViewAttribute.GetViewName(viewType);
61          menuItem.Tag = viewType;
62          menuItem.Click += new EventHandler(menuItem_Click);
63          analyzeToolStripButton.DropDownItems.Add(menuItem);
64        }
65      }
66    }
67
68    protected void menuItem_Click(object sender, EventArgs e) {
69      ToolStripMenuItem menuItem = (ToolStripMenuItem)sender;
70      Type viewType = (Type)menuItem.Tag;
71      IContentView view = MainFormManager.MainForm.ShowContent(Content, viewType);
72      if (view != null) {
73        view.Locked = Locked;
74        view.ReadOnly = ReadOnly;
75      }
76    }
77  }
78}
Note: See TracBrowser for help on using the repository browser.