Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/ContentView.cs @ 3437

Last change on this file since 3437 was 3437, checked in by mkommend, 14 years ago

incremented plugin version HeuristicLab.MainForm and HeuristicLab.MainForm.WindowsForms to 3.3 (ticket #983)

File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Collections.Generic;
24using System.ComponentModel;
25using System.Drawing;
26using System.Data;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using HeuristicLab.Common;
31using System.Reflection;
32
33namespace HeuristicLab.MainForm.WindowsForms {
34  public partial class ContentView : View, IContentView {
35    private IContent content;
36    public IContent Content {
37      get { return content; }
38      set {
39        if ((value != null) && (!MainFormManager.ViewCanViewObject(this, value)))
40          throw new ArgumentException(string.Format("View \"{0}\" cannot view object \"{1}\".", this.GetType().Name, value.GetType().Name));
41        if (InvokeRequired) {
42          Invoke(new Action<IContent>(delegate(IContent o) { this.Content = o; }), value);
43        } else {
44          if (this.content != value) {
45            if (this.content != null) this.DeregisterContentEvents();
46            this.content = value;
47            if (this.content != null) this.RegisterContentEvents();
48            this.OnContentChanged();
49          }
50        }
51      }
52    }
53
54    public ContentView()
55      : base() {
56      InitializeComponent();
57      this.locked = false;
58    }
59    public ContentView(IContent content)
60      : this() {
61      this.content = content;
62    }
63
64    private bool locked;
65    public virtual bool Locked {
66      get { return this.locked; }
67      set {
68        if (InvokeRequired) {
69          Action<bool> action = delegate(bool b) { this.Locked = b; };
70          Invoke(action, value);
71        } else {
72          if (value != locked) {
73            locked = value;
74            PropertyInfo prop = typeof(IContentView).GetProperty("Locked");
75            PropagateStateChanges(this, typeof(IContentView), prop);
76            OnLockedChanged();
77            OnChanged();
78          }
79        }
80      }
81    }
82    public event EventHandler LockedChanged;
83    protected virtual void OnLockedChanged() {
84      if (InvokeRequired)
85        Invoke((MethodInvoker)OnLockedChanged);
86      else {
87        EventHandler handler = LockedChanged;
88        if (handler != null)
89          handler(this, EventArgs.Empty);
90      }
91    }
92
93    /// <summary>
94    /// Adds eventhandlers to the current instance.
95    /// </summary>
96    protected virtual void RegisterContentEvents() {
97    }
98
99    /// <summary>
100    /// Removes the eventhandlers from the current instance.
101    /// </summary>
102    protected virtual void DeregisterContentEvents() {
103    }
104
105    /// <summary>
106    /// Is called when the content property changes.
107    /// </summary>
108    protected virtual void OnContentChanged() {
109    }
110  }
111}
Note: See TracBrowser for help on using the repository browser.