Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.Scheduling.Views/3.3/JobShopSchedulingProblemView.cs @ 11170

Last change on this file since 11170 was 11170, checked in by ascheibe, 10 years ago

#2115 updated copyright year in stable branch

File size: 4.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Windows.Forms;
24using HeuristicLab.Collections;
25using HeuristicLab.Encodings.ScheduleEncoding;
26using HeuristicLab.MainForm;
27using HeuristicLab.Optimization.Views;
28
29namespace HeuristicLab.Problems.Scheduling.Views {
30  [View("JobShop Scheduling Problem View")]
31  [Content(typeof(JobShopSchedulingProblem), true)]
32  public partial class JobShopSchedulingProblemView : ProblemView {
33
34    public new JobShopSchedulingProblem Content {
35      get { return (JobShopSchedulingProblem)base.Content; }
36      set { base.Content = value; }
37    }
38
39    public JobShopSchedulingProblemView() {
40      InitializeComponent();
41      Controls.Remove(parameterCollectionView);
42      parameterCollectionView.Dock = DockStyle.Fill;
43      problemTabPage.Controls.Add(parameterCollectionView);
44    }
45
46    protected override void OnContentChanged() {
47      base.OnContentChanged();
48      FillGanttChart();
49    }
50
51    protected override void DeregisterContentEvents() {
52      Content.JobDataParameter.ValueChanged -= JobDataParameterOnValueChanged;
53      Content.JobData.ItemsAdded -= JobsOnChanged;
54      Content.JobData.ItemsRemoved -= JobsOnChanged;
55      Content.JobData.ItemsReplaced -= JobsOnChanged;
56      Content.JobData.CollectionReset -= JobsOnChanged;
57      foreach (var job in Content.JobData) {
58        job.TasksChanged -= JobOnTasksChanged;
59      }
60      base.DeregisterContentEvents();
61    }
62    protected override void RegisterContentEvents() {
63      base.RegisterContentEvents();
64      Content.JobDataParameter.ValueChanged += JobDataParameterOnValueChanged;
65      Content.JobData.ItemsAdded += JobsOnChanged;
66      Content.JobData.ItemsRemoved += JobsOnChanged;
67      Content.JobData.ItemsReplaced += JobsOnChanged;
68      Content.JobData.CollectionReset += JobsOnChanged;
69      foreach (var job in Content.JobData) {
70        job.TasksChanged += JobOnTasksChanged;
71      }
72    }
73
74    private void JobsOnChanged(object sender, CollectionItemsChangedEventArgs<IndexedItem<Job>> e) {
75      foreach (var job in e.OldItems)
76        job.Value.TasksChanged -= JobOnTasksChanged;
77      foreach (var job in e.Items)
78        job.Value.TasksChanged += JobOnTasksChanged;
79      FillGanttChart();
80    }
81
82    private void JobDataParameterOnValueChanged(object sender, EventArgs e) {
83      Content.JobData.ItemsAdded += JobsOnChanged;
84      Content.JobData.ItemsRemoved += JobsOnChanged;
85      Content.JobData.ItemsReplaced += JobsOnChanged;
86      Content.JobData.CollectionReset += JobsOnChanged;
87      foreach (var job in Content.JobData) {
88        job.TasksChanged += JobOnTasksChanged;
89      }
90      FillGanttChart();
91    }
92
93    private void JobOnTasksChanged(object sender, EventArgs e) {
94      FillGanttChart();
95    }
96
97    private void FillGanttChart() {
98      ganttChart.Reset();
99      if (Content == null) return;
100      int jobCount = 0;
101      foreach (var j in Content.JobData) {
102        double lastEndTime = 0;
103        foreach (var t in Content.JobData[jobCount].Tasks) {
104          int categoryNr = t.JobNr;
105          string categoryName = "Job" + categoryNr;
106          ganttChart.AddData(categoryName,
107            categoryNr,
108            t.TaskNr,
109            lastEndTime + 1,
110            lastEndTime + t.Duration,
111            "Job" + t.JobNr + " - " + "Task#" + t.TaskNr);
112          lastEndTime += t.Duration;
113        }
114        jobCount++;
115      }
116    }
117  }
118}
Note: See TracBrowser for help on using the repository browser.