[11397] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11397] | 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 |
|
---|
[11885] | 22 | using System;
|
---|
| 23 | using System.Drawing;
|
---|
[16582] | 24 | using System.Windows.Forms;
|
---|
| 25 | using HeuristicLab.ExactOptimization.LinearProgramming;
|
---|
[11397] | 26 | using HeuristicLab.MainForm;
|
---|
[16582] | 27 | using HeuristicLab.Problems.Programmable;
|
---|
[11397] | 28 | using HeuristicLab.Scripting.Views;
|
---|
| 29 |
|
---|
[16582] | 30 | namespace HeuristicLab.ExactOptimization.Views {
|
---|
[11397] | 31 |
|
---|
[16582] | 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;
|
---|
[11397] | 39 | }
|
---|
| 40 |
|
---|
[16582] | 41 | public ProgrammableLinearProblemDefinitionView() {
|
---|
[11397] | 42 | InitializeComponent();
|
---|
[16582] | 43 | splitContainer2.Panel2MinSize = 25;
|
---|
[11397] | 44 | }
|
---|
| 45 |
|
---|
| 46 | protected override void OnContentChanged() {
|
---|
| 47 | base.OnContentChanged();
|
---|
[16582] | 48 | variableStoreView.Content = Content?.VariableStore;
|
---|
[11397] | 49 | }
|
---|
| 50 |
|
---|
| 51 | protected override void SetEnabledStateOfControls() {
|
---|
| 52 | base.SetEnabledStateOfControls();
|
---|
| 53 | variableStoreView.Enabled = Content != null && !Locked && !ReadOnly;
|
---|
| 54 | }
|
---|
[11885] | 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 | }
|
---|
[11944] | 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 | }
|
---|
[11397] | 70 | }
|
---|
| 71 | }
|
---|