[3437] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3437] | 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;
|
---|
[4510] | 24 | using System.Drawing;
|
---|
[3437] | 25 | using System.Linq;
|
---|
| 26 | using System.Windows.Forms;
|
---|
| 27 | using HeuristicLab.Common;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.MainForm.WindowsForms {
|
---|
[3557] | 30 | [Content(typeof(IContent))]
|
---|
[3437] | 31 | public sealed partial class ViewHost : AsynchronousContentView {
|
---|
| 32 | public ViewHost() {
|
---|
| 33 | InitializeComponent();
|
---|
| 34 | startDragAndDrop = false;
|
---|
| 35 | viewContextMenuStrip.IgnoredViewTypes = new List<Type>() { typeof(ViewHost) };
|
---|
[4011] | 36 |
|
---|
| 37 | viewType = null;
|
---|
[3437] | 38 | activeView = null;
|
---|
[3497] | 39 | Content = null;
|
---|
[4011] | 40 | messageLabel.Visible = false;
|
---|
| 41 | viewsLabel.Visible = false;
|
---|
[5012] | 42 | viewsLabelVisible = true;
|
---|
[3437] | 43 | }
|
---|
| 44 |
|
---|
[5012] | 45 | private bool viewsLabelVisible;
|
---|
| 46 | public bool ViewsLabelVisible {
|
---|
| 47 | get { return viewsLabelVisible; }
|
---|
| 48 | set {
|
---|
| 49 | if (viewsLabelVisible != value) {
|
---|
| 50 | viewsLabelVisible = value;
|
---|
| 51 | viewsLabel.Visible = value;
|
---|
| 52 | View view = activeView as View;
|
---|
| 53 | if (view != null) view.Dock = viewsLabelVisible ? DockStyle.None : DockStyle.Fill;
|
---|
| 54 | }
|
---|
| 55 | }
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[4510] | 58 | private IContentView cachedView;
|
---|
[3437] | 59 | private IContentView activeView;
|
---|
| 60 | public IContentView ActiveView {
|
---|
[4510] | 61 | get { return activeView; }
|
---|
[3437] | 62 | private set {
|
---|
| 63 | if (activeView != value) {
|
---|
| 64 | if (activeView != null) {
|
---|
[4510] | 65 | cachedView = activeView;
|
---|
[3437] | 66 | DeregisterActiveViewEvents();
|
---|
[4510] | 67 | View cached = cachedView as View;
|
---|
| 68 | if (cached != null) {
|
---|
| 69 | cached.OnHidden(EventArgs.Empty);
|
---|
| 70 | cached.Visible = false;
|
---|
[4299] | 71 | }
|
---|
[3437] | 72 | }
|
---|
[4521] | 73 |
|
---|
[3437] | 74 | activeView = value;
|
---|
[4521] | 75 |
|
---|
[3437] | 76 | if (activeView != null) {
|
---|
[5956] | 77 | #region dispose cachedView
|
---|
[4521] | 78 | if (activeView != cachedView) {
|
---|
| 79 | if (cachedView != null) cachedView.Content = null; //needed to deregister events
|
---|
| 80 | View cached = cachedView as View;
|
---|
| 81 | if (cached != null) {
|
---|
| 82 | Controls.Remove(cached);
|
---|
| 83 | }
|
---|
| 84 | cachedView = null;
|
---|
[4510] | 85 | }
|
---|
[4521] | 86 | #endregion
|
---|
[4510] | 87 |
|
---|
[4465] | 88 | this.Caption = activeView.Caption;
|
---|
[4011] | 89 | viewType = activeView.GetType();
|
---|
[3437] | 90 | RegisterActiveViewEvents();
|
---|
| 91 | View view = activeView as View;
|
---|
[4299] | 92 | if (view != null) {
|
---|
[4510] | 93 | view.Visible = true;
|
---|
[5956] | 94 | if (ViewsLabelVisible) {
|
---|
| 95 | view.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
|
---|
| 96 | view.Size = new Size(Width - this.viewsLabel.Width - this.viewsLabel.Margin.Left - this.viewsLabel.Margin.Right, this.Height);
|
---|
| 97 | } else view.Dock = DockStyle.Fill;
|
---|
| 98 | if (!Controls.Contains((view))) Controls.Add(view);
|
---|
[3437] | 99 | view.OnShown(new ViewShownEventArgs(view, false));
|
---|
[4011] | 100 | }
|
---|
[4103] | 101 | } else viewType = null;
|
---|
[6760] | 102 | configurationLabel.Visible = activeView is IConfigureableView;
|
---|
| 103 | configurationLabel.Enabled = activeView != null && !activeView.Locked;
|
---|
[3437] | 104 | }
|
---|
| 105 | }
|
---|
| 106 | }
|
---|
[4011] | 107 |
|
---|
[3437] | 108 | private Type viewType;
|
---|
| 109 | public Type ViewType {
|
---|
[4510] | 110 | get { return viewType; }
|
---|
[3437] | 111 | set {
|
---|
[5278] | 112 | if (viewType != value) {
|
---|
[5318] | 113 | if (value == typeof(ViewHost))
|
---|
| 114 | throw new ArgumentException("Directly nested ViewHosts are not allowed.");
|
---|
[4011] | 115 | if (value != null && Content != null && !ViewCanShowContent(value, Content))
|
---|
[5318] | 116 | throw new ArgumentException(string.Format("View \"{0}\" cannot display content \"{1}\".", value, Content.GetType()));
|
---|
[5278] | 117 |
|
---|
[3437] | 118 | viewType = value;
|
---|
| 119 | OnViewTypeChanged();
|
---|
| 120 | }
|
---|
| 121 | }
|
---|
| 122 | }
|
---|
[3466] | 123 |
|
---|
[4510] | 124 | protected override void SetEnabledStateOfControls() {
|
---|
| 125 | Enabled = Content != null;
|
---|
| 126 | }
|
---|
| 127 |
|
---|
[3437] | 128 | protected override void OnContentChanged() {
|
---|
[3466] | 129 | viewContextMenuStrip.Item = Content;
|
---|
[4299] | 130 | //change ViewType if view of ViewType can not show content or is null
|
---|
| 131 | if (Content != null) {
|
---|
| 132 | if (!ViewCanShowContent(viewType, Content)) {
|
---|
| 133 | Type defaultViewType = MainFormManager.GetDefaultViewType(Content.GetType());
|
---|
[4510] | 134 | if (cachedView != null && cachedView.GetType() == defaultViewType)
|
---|
| 135 | ActiveView = cachedView;
|
---|
| 136 | else if (defaultViewType != null)
|
---|
[4299] | 137 | ViewType = defaultViewType;
|
---|
| 138 | else if (viewContextMenuStrip.Items.Count > 0) // create first available view if no default view is available
|
---|
| 139 | ViewType = (Type)viewContextMenuStrip.Items[0].Tag;
|
---|
[4314] | 140 | else {
|
---|
[4299] | 141 | ViewType = null;
|
---|
[4314] | 142 | ActiveView = null;
|
---|
| 143 | }
|
---|
[3466] | 144 | }
|
---|
[4344] | 145 | if (ActiveView != null) ActiveView.Content = Content;
|
---|
| 146 | } else ActiveView = null;
|
---|
[4299] | 147 | UpdateLabels();
|
---|
[4418] | 148 | UpdateActiveMenuItem();
|
---|
[4299] | 149 | }
|
---|
[4011] | 150 |
|
---|
[4299] | 151 | private void UpdateLabels() {
|
---|
[4011] | 152 | if (Content != null && viewContextMenuStrip.Items.Count > 0) {
|
---|
| 153 | messageLabel.Visible = false;
|
---|
[5012] | 154 | viewsLabel.Visible = viewsLabelVisible;
|
---|
[4011] | 155 | } else if (Content != null) {
|
---|
| 156 | messageLabel.Visible = true;
|
---|
| 157 | viewsLabel.Visible = false;
|
---|
[3437] | 158 | } else {
|
---|
[3664] | 159 | messageLabel.Visible = false;
|
---|
[3924] | 160 | viewsLabel.Visible = false;
|
---|
[3437] | 161 | }
|
---|
| 162 | }
|
---|
| 163 |
|
---|
| 164 | private void OnViewTypeChanged() {
|
---|
[4011] | 165 | if (viewType != null) {
|
---|
| 166 | if (!ViewCanShowContent(viewType, Content))
|
---|
| 167 | throw new InvalidOperationException(string.Format("View \"{0}\" cannot display content \"{1}\".",
|
---|
| 168 | viewType, Content.GetType()));
|
---|
[4510] | 169 | IContentView view = MainFormManager.CreateView(viewType);
|
---|
| 170 | view.Locked = Locked;
|
---|
| 171 | view.ReadOnly = ReadOnly;
|
---|
[4299] | 172 | ActiveView = view; //necessary to allow the views to change the status of the viewhost
|
---|
| 173 | view.Content = Content;
|
---|
| 174 |
|
---|
[4011] | 175 | UpdateActiveMenuItem();
|
---|
[3655] | 176 | }
|
---|
[4011] | 177 | }
|
---|
[3437] | 178 |
|
---|
| 179 | private void RegisterActiveViewEvents() {
|
---|
| 180 | activeView.CaptionChanged += new EventHandler(activeView_CaptionChanged);
|
---|
[4435] | 181 | activeView.LockedChanged += new EventHandler(activeView_LockedChanged);
|
---|
[3437] | 182 | }
|
---|
| 183 | private void DeregisterActiveViewEvents() {
|
---|
[4511] | 184 | activeView.CaptionChanged -= new EventHandler(activeView_CaptionChanged);
|
---|
| 185 | activeView.LockedChanged -= new EventHandler(activeView_LockedChanged);
|
---|
[3437] | 186 | }
|
---|
| 187 | private void activeView_CaptionChanged(object sender, EventArgs e) {
|
---|
[4510] | 188 | Caption = activeView.Caption;
|
---|
[3437] | 189 | }
|
---|
[4435] | 190 | private void activeView_LockedChanged(object sender, EventArgs e) {
|
---|
[4510] | 191 | Locked = activeView.Locked;
|
---|
[6760] | 192 | configurationLabel.Enabled = !activeView.Locked;
|
---|
[3437] | 193 | }
|
---|
[4011] | 194 |
|
---|
[4084] | 195 | protected override void OnSizeChanged(EventArgs e) {
|
---|
| 196 | //mkommend: solution to resizing issues. taken from http://support.microsoft.com/kb/953934
|
---|
| 197 | //not implemented with a panel to reduce the number of nested controls
|
---|
[4510] | 198 | if (Handle != null)
|
---|
[4084] | 199 | this.BeginInvoke((Action<EventArgs>)OnSizeChangedHelper, e);
|
---|
| 200 | }
|
---|
| 201 | private void OnSizeChangedHelper(EventArgs e) {
|
---|
| 202 | base.OnSizeChanged(e);
|
---|
[4510] | 203 | viewsLabel.Location = new Point(Width - viewsLabel.Margin.Right - viewsLabel.Width, viewsLabel.Margin.Top);
|
---|
[6760] | 204 | configurationLabel.Location = new Point(Width - configurationLabel.Margin.Right - configurationLabel.Width, viewsLabel.Bottom + viewsLabel.Margin.Bottom + configurationLabel.Margin.Top);
|
---|
| 205 |
|
---|
[4084] | 206 | }
|
---|
| 207 |
|
---|
[3437] | 208 | #region forwarding of view events
|
---|
| 209 | internal protected override void OnShown(ViewShownEventArgs e) {
|
---|
| 210 | base.OnShown(e);
|
---|
[4510] | 211 | View view = ActiveView as View;
|
---|
[3437] | 212 | if (view != null)
|
---|
| 213 | view.OnShown(e);
|
---|
| 214 | }
|
---|
| 215 | internal protected override void OnHidden(EventArgs e) {
|
---|
| 216 | base.OnHidden(e);
|
---|
[4510] | 217 | View view = ActiveView as View;
|
---|
[3437] | 218 | if (view != null)
|
---|
| 219 | view.OnHidden(e);
|
---|
| 220 | }
|
---|
| 221 | internal protected override void OnClosing(FormClosingEventArgs e) {
|
---|
| 222 | base.OnClosing(e);
|
---|
[4299] | 223 | View view = ActiveView as View;
|
---|
| 224 | if (view != null)
|
---|
[3437] | 225 | view.OnClosing(e);
|
---|
| 226 | }
|
---|
| 227 | internal protected override void OnClosed(FormClosedEventArgs e) {
|
---|
| 228 | base.OnClosed(e);
|
---|
[4299] | 229 | View view = ActiveView as View;
|
---|
| 230 | if (view != null)
|
---|
[3437] | 231 | view.OnClosed(e);
|
---|
| 232 | }
|
---|
| 233 | #endregion
|
---|
| 234 |
|
---|
| 235 | #region GUI actions
|
---|
| 236 | private void UpdateActiveMenuItem() {
|
---|
| 237 | foreach (KeyValuePair<Type, ToolStripMenuItem> item in viewContextMenuStrip.MenuItems) {
|
---|
| 238 | if (item.Key == viewType) {
|
---|
| 239 | item.Value.Checked = true;
|
---|
| 240 | item.Value.Enabled = false;
|
---|
| 241 | } else {
|
---|
| 242 | item.Value.Checked = false;
|
---|
| 243 | item.Value.Enabled = true;
|
---|
| 244 | }
|
---|
| 245 | }
|
---|
| 246 | }
|
---|
| 247 |
|
---|
| 248 | private bool ViewCanShowContent(Type viewType, object content) {
|
---|
| 249 | if (content == null) // every view can display null
|
---|
| 250 | return true;
|
---|
| 251 | if (viewType == null)
|
---|
| 252 | return false;
|
---|
| 253 | return ContentAttribute.CanViewType(viewType, Content.GetType()) && viewContextMenuStrip.MenuItems.Any(item => item.Key == viewType);
|
---|
| 254 | }
|
---|
| 255 |
|
---|
| 256 | private void viewsLabel_DoubleClick(object sender, EventArgs e) {
|
---|
[3796] | 257 | IContentView view = MainFormManager.MainForm.ShowContent(this.Content, this.ViewType);
|
---|
[3670] | 258 | if (view != null) {
|
---|
| 259 | view.ReadOnly = this.ReadOnly;
|
---|
| 260 | view.Locked = this.Locked;
|
---|
| 261 | }
|
---|
[3437] | 262 | }
|
---|
| 263 | private void viewContextMenuStrip_ItemClicked(object sender, ToolStripItemClickedEventArgs e) {
|
---|
| 264 | Type viewType = (Type)e.ClickedItem.Tag;
|
---|
| 265 | ViewType = viewType;
|
---|
| 266 | }
|
---|
| 267 |
|
---|
| 268 | private bool startDragAndDrop;
|
---|
| 269 | private void viewsLabel_MouseDown(object sender, MouseEventArgs e) {
|
---|
[5462] | 270 | if (e.Button == System.Windows.Forms.MouseButtons.Right) {
|
---|
| 271 | Screen screen = Screen.FromControl(viewsLabel);
|
---|
| 272 | int rightBorder = viewsLabel.PointToScreen(viewsLabel.Location).X + viewContextMenuStrip.Width; //
|
---|
| 273 | rightBorder = rightBorder - screen.Bounds.X; //pixel position on active screen
|
---|
| 274 |
|
---|
| 275 | if (rightBorder < screen.Bounds.Width)
|
---|
| 276 | viewContextMenuStrip.Show(viewsLabel, viewsLabel.Margin.Left, viewsLabel.Margin.Top);
|
---|
| 277 | else
|
---|
| 278 | viewContextMenuStrip.Show(screen.Bounds.X + screen.Bounds.Width - viewContextMenuStrip.Width, viewsLabel.PointToScreen(viewsLabel.Location).Y - viewsLabel.Margin.Top);
|
---|
| 279 | } else if (!Locked) {
|
---|
[3437] | 280 | startDragAndDrop = true;
|
---|
| 281 | viewsLabel.Capture = false;
|
---|
[3497] | 282 | viewsLabel.Focus();
|
---|
[3437] | 283 | }
|
---|
| 284 | }
|
---|
| 285 | private void viewsLabel_MouseLeave(object sender, EventArgs e) {
|
---|
| 286 | if ((Control.MouseButtons & MouseButtons.Left) == MouseButtons.Left && startDragAndDrop) {
|
---|
| 287 | DataObject data = new DataObject();
|
---|
[5837] | 288 | data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, Content);
|
---|
[3437] | 289 | DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link);
|
---|
| 290 | } else
|
---|
| 291 | startDragAndDrop = false;
|
---|
| 292 | }
|
---|
[6760] | 293 |
|
---|
| 294 | private void configurationLabel_MouseDoubleClick(object sender, MouseEventArgs e) {
|
---|
| 295 | ((IConfigureableView)ActiveView).ShowConfiguration();
|
---|
| 296 | }
|
---|
[3437] | 297 | #endregion
|
---|
| 298 | }
|
---|
| 299 | }
|
---|