Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.ExactOptimization.Views/3.3/ProgrammableLinearProblemDefinitionView.cs @ 17180

Last change on this file since 17180 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.Drawing;
24using System.Windows.Forms;
25using HeuristicLab.ExactOptimization.LinearProgramming;
26using HeuristicLab.MainForm;
27using HeuristicLab.Problems.Programmable;
28using HeuristicLab.Scripting.Views;
29
30namespace HeuristicLab.ExactOptimization.Views {
31
32  [View(nameof(ProgrammableLinearProblemDefinitionView))]
33  [Content(typeof(ProgrammableLinearProblemDefinition), IsDefaultView = true)]
34  public partial class ProgrammableLinearProblemDefinitionView : ScriptView {
35
36    public new ProgrammableLinearProblemDefinition Content {
37      get => (ProgrammableLinearProblemDefinition)base.Content;
38      set => base.Content = value;
39    }
40
41    public ProgrammableLinearProblemDefinitionView() {
42      InitializeComponent();
43      splitContainer2.Panel2MinSize = 25;
44    }
45
46    protected override void OnContentChanged() {
47      base.OnContentChanged();
48      variableStoreView.Content = Content?.VariableStore;
49    }
50
51    protected override void SetEnabledStateOfControls() {
52      base.SetEnabledStateOfControls();
53      variableStoreView.Enabled = Content != null && !Locked && !ReadOnly;
54    }
55
56    public override bool Compile() {
57      try {
58        base.Compile();
59      } catch (ProblemDefinitionScriptException e) {
60        PluginInfrastructure.ErrorHandling.ShowErrorDialog(e);
61        return false;
62      }
63      return true;
64    }
65
66    protected override void Content_CodeChanged(object sender, EventArgs e) {
67      base.Content_CodeChanged(sender, e);
68      UpdateInfoTextLabel("Code changed, compilation necessary!", Color.Red);
69    }
70  }
71}
Note: See TracBrowser for help on using the repository browser.