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
RevLine 
[6121]1#region License Information
2/* HeuristicLab
[11170]3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6121]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
[11073]22using System;
[6121]23using System.Windows.Forms;
[11073]24using HeuristicLab.Collections;
25using HeuristicLab.Encodings.ScheduleEncoding;
[6121]26using HeuristicLab.MainForm;
[8882]27using HeuristicLab.Optimization.Views;
[6121]28
29namespace HeuristicLab.Problems.Scheduling.Views {
30  [View("JobShop Scheduling Problem View")]
31  [Content(typeof(JobShopSchedulingProblem), true)]
[8882]32  public partial class JobShopSchedulingProblemView : ProblemView {
[6121]33
34    public new JobShopSchedulingProblem Content {
35      get { return (JobShopSchedulingProblem)base.Content; }
36      set { base.Content = value; }
37    }
38
[8882]39    public JobShopSchedulingProblemView() {
40      InitializeComponent();
41      Controls.Remove(parameterCollectionView);
42      parameterCollectionView.Dock = DockStyle.Fill;
43      problemTabPage.Controls.Add(parameterCollectionView);
44    }
45
[6121]46    protected override void OnContentChanged() {
47      base.OnContentChanged();
[11073]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;
[6121]59      }
[11073]60      base.DeregisterContentEvents();
[6121]61    }
[11073]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    }
[6121]73
[11073]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() {
[6260]98      ganttChart.Reset();
[11073]99      if (Content == null) return;
[6177]100      int jobCount = 0;
[11073]101      foreach (var j in Content.JobData) {
[6294]102        double lastEndTime = 0;
[11073]103        foreach (var t in Content.JobData[jobCount].Tasks) {
[6412]104          int categoryNr = t.JobNr;
[6260]105          string categoryName = "Job" + categoryNr;
[6177]106          ganttChart.AddData(categoryName,
[6260]107            categoryNr,
[6482]108            t.TaskNr,
[6294]109            lastEndTime + 1,
[6412]110            lastEndTime + t.Duration,
[11073]111            "Job" + t.JobNr + " - " + "Task#" + t.TaskNr);
[6412]112          lastEndTime += t.Duration;
[6177]113        }
114        jobCount++;
115      }
116    }
[6121]117  }
118}
Note: See TracBrowser for help on using the repository browser.