[2] | 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.Text;
|
---|
| 28 | using System.Windows.Forms;
|
---|
| 29 | using HeuristicLab.Core;
|
---|
| 30 | using HeuristicLab.Data;
|
---|
| 31 | using HeuristicLab.Operators;
|
---|
| 32 |
|
---|
| 33 | namespace HeuristicLab.Scheduling.JSSP {
|
---|
| 34 | public partial class JSSPInjectorView : ViewBase {
|
---|
| 35 |
|
---|
| 36 | public JSSPInjector JSSPInjector {
|
---|
| 37 | get { return (JSSPInjector)Item; }
|
---|
| 38 | set { base.Item = value; }
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | public JSSPInjectorView() {
|
---|
| 42 | InitializeComponent();
|
---|
| 43 | }
|
---|
| 44 | public JSSPInjectorView(JSSPInjector jsspInjector)
|
---|
| 45 | : this() {
|
---|
| 46 | JSSPInjector = jsspInjector;
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | protected override void RemoveItemEvents() {
|
---|
| 50 | JSSPInjector.Operations.Changed -= new EventHandler(JSSP_Changed);
|
---|
| 51 | operatorBaseDescriptionView.Operator = null;
|
---|
| 52 | base.RemoveItemEvents();
|
---|
| 53 | }
|
---|
| 54 | protected override void AddItemEvents() {
|
---|
| 55 | base.AddItemEvents();
|
---|
| 56 | JSSPInjector.Operations.Changed += new EventHandler(JSSP_Changed);
|
---|
| 57 | operatorBaseDescriptionView.Operator = JSSPInjector;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | protected override void UpdateControls() {
|
---|
| 61 | base.UpdateControls();
|
---|
| 62 | OperatorBaseView view = new OperatorBaseView(JSSPInjector);
|
---|
| 63 | tabvariables.Controls.Clear();
|
---|
| 64 | tabvariables.Controls.Add(view);
|
---|
| 65 | view.Dock = DockStyle.Fill;
|
---|
| 66 | if (JSSPInjector != null) {
|
---|
| 67 | tb_jobs.Text = JSSPInjector.NrOfJobs.ToString();
|
---|
| 68 | tb_machines.Text = JSSPInjector.NrOfMachines.ToString();
|
---|
| 69 | }
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | private void button1_Click(object sender, EventArgs e) {
|
---|
| 73 | if (openFileDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 74 | JSSPParser parser = null;
|
---|
| 75 | bool success = false;
|
---|
| 76 | try {
|
---|
| 77 | parser = new JSSPParser(openFileDialog.FileName);
|
---|
| 78 | parser.Parse();
|
---|
| 79 | success = true;
|
---|
| 80 | }
|
---|
| 81 | catch (Exception ex) {
|
---|
| 82 | MessageBox.Show(this, ex.Message, ex.GetType().Name, MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 83 | }
|
---|
| 84 | if (success) {
|
---|
| 85 | JSSPInjector.Operations = (ItemList)parser.Operations.Clone();
|
---|
| 86 | JSSPInjector.NrOfJobs = parser.NrOfJobs;
|
---|
| 87 | JSSPInjector.NrOfMachines = parser.NrOfMachines;
|
---|
| 88 | Refresh();
|
---|
| 89 | }
|
---|
| 90 | }
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | private void JSSP_Changed(object sender, EventArgs e) {
|
---|
| 94 | Refresh();
|
---|
| 95 | }
|
---|
| 96 | }
|
---|
| 97 | }
|
---|