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 |
|
---|
22 | using HeuristicLab.Core;
|
---|
23 | using HeuristicLab.Core.Views;
|
---|
24 | using HeuristicLab.MainForm;
|
---|
25 | using System;
|
---|
26 | using System.Windows.Forms;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Optimization.Networks.Views {
|
---|
29 | [View("Port View")]
|
---|
30 | [Content(typeof(Port<>), true)]
|
---|
31 | [Content(typeof(IPort<>), false)]
|
---|
32 | public partial class PortView<T> : NamedItemView where T : class, IItem {
|
---|
33 | public new IPort<T> Content {
|
---|
34 | get { return (IPort<T>)base.Content; }
|
---|
35 | set { base.Content = value; }
|
---|
36 | }
|
---|
37 |
|
---|
38 | public PortView() {
|
---|
39 | InitializeComponent();
|
---|
40 | }
|
---|
41 |
|
---|
42 | protected override void DeregisterContentEvents() {
|
---|
43 | Content.ValueChanged -= Content_ValueChanged;
|
---|
44 | base.DeregisterContentEvents();
|
---|
45 | }
|
---|
46 |
|
---|
47 | protected override void RegisterContentEvents() {
|
---|
48 | base.RegisterContentEvents();
|
---|
49 | Content.ValueChanged += Content_ValueChanged;
|
---|
50 | }
|
---|
51 |
|
---|
52 | protected override void OnContentChanged() {
|
---|
53 | base.OnContentChanged();
|
---|
54 | if (Content == null) {
|
---|
55 | valueViewHost.Content = null;
|
---|
56 | } else {
|
---|
57 | valueViewHost.ViewType = null;
|
---|
58 | valueViewHost.Content = Content.Value;
|
---|
59 | }
|
---|
60 | }
|
---|
61 |
|
---|
62 | protected override void SetEnabledStateOfControls() {
|
---|
63 | base.SetEnabledStateOfControls();
|
---|
64 | valueGroupBox.Enabled = Content != null;
|
---|
65 | }
|
---|
66 | protected virtual void Content_ValueChanged(object sender, System.EventArgs e) {
|
---|
67 | if (InvokeRequired)
|
---|
68 | Invoke(new EventHandler(Content_ValueChanged), sender, e);
|
---|
69 | else {
|
---|
70 | valueViewHost.ViewType = null;
|
---|
71 | valueViewHost.Content = Content.Value;
|
---|
72 |
|
---|
73 | }
|
---|
74 | }
|
---|
75 | }
|
---|
76 | }
|
---|