[2655] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2655] | 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 | namespace HeuristicLab.Core.Views {
|
---|
| 23 | partial class ViewHost {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing) {
|
---|
| 35 | if (components != null) components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
[2841] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[2655] | 48 | this.viewPanel = new System.Windows.Forms.Panel();
|
---|
[2665] | 49 | this.messageLabel = new System.Windows.Forms.Label();
|
---|
[2687] | 50 | this.viewsLabel = new System.Windows.Forms.Label();
|
---|
[2841] | 51 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
| 52 | this.viewContextMenuStrip = new HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip(this.components);
|
---|
[2655] | 53 | this.SuspendLayout();
|
---|
| 54 | //
|
---|
| 55 | // viewPanel
|
---|
| 56 | //
|
---|
| 57 | this.viewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 58 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 59 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2687] | 60 | this.viewPanel.Location = new System.Drawing.Point(0, 0);
|
---|
[2655] | 61 | this.viewPanel.Name = "viewPanel";
|
---|
[2687] | 62 | this.viewPanel.Size = new System.Drawing.Size(205, 184);
|
---|
[2694] | 63 | this.viewPanel.TabIndex = 1;
|
---|
[2655] | 64 | //
|
---|
[2665] | 65 | // messageLabel
|
---|
| 66 | //
|
---|
[2676] | 67 | this.messageLabel.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 68 | this.messageLabel.Location = new System.Drawing.Point(0, 0);
|
---|
[2665] | 69 | this.messageLabel.Name = "messageLabel";
|
---|
[2676] | 70 | this.messageLabel.Size = new System.Drawing.Size(227, 184);
|
---|
[2694] | 71 | this.messageLabel.TabIndex = 2;
|
---|
[2665] | 72 | this.messageLabel.Text = "No view available.";
|
---|
[2676] | 73 | this.messageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
---|
[2665] | 74 | //
|
---|
[2687] | 75 | // viewsLabel
|
---|
[2655] | 76 | //
|
---|
[2687] | 77 | this.viewsLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2838] | 78 | this.viewsLabel.ContextMenuStrip = this.viewContextMenuStrip;
|
---|
[2841] | 79 | this.viewsLabel.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Windows;
|
---|
[2687] | 80 | this.viewsLabel.Location = new System.Drawing.Point(211, 0);
|
---|
| 81 | this.viewsLabel.Name = "viewsLabel";
|
---|
| 82 | this.viewsLabel.Size = new System.Drawing.Size(16, 16);
|
---|
| 83 | this.viewsLabel.TabIndex = 0;
|
---|
[2916] | 84 | this.toolTip.SetToolTip(this.viewsLabel, "Double-click to open a new window of the current view." + System.Environment.NewLine + "Right-click to change current view.");
|
---|
[2694] | 85 | this.viewsLabel.DoubleClick += new System.EventHandler(this.viewsLabel_DoubleClick);
|
---|
[2655] | 86 | //
|
---|
[2838] | 87 | // viewContextMenuStrip
|
---|
[2655] | 88 | //
|
---|
[2838] | 89 | this.viewContextMenuStrip.Item = null;
|
---|
| 90 | this.viewContextMenuStrip.Name = "viewContextMenuStrip";
|
---|
| 91 | this.viewContextMenuStrip.Size = new System.Drawing.Size(61, 4);
|
---|
| 92 | this.viewContextMenuStrip.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.viewContextMenuStrip_ItemClicked);
|
---|
[2655] | 93 | //
|
---|
| 94 | // ViewHost
|
---|
| 95 | //
|
---|
| 96 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 97 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 98 | this.Controls.Add(this.viewPanel);
|
---|
[2687] | 99 | this.Controls.Add(this.viewsLabel);
|
---|
[2676] | 100 | this.Controls.Add(this.messageLabel);
|
---|
[2655] | 101 | this.Name = "ViewHost";
|
---|
| 102 | this.Size = new System.Drawing.Size(227, 184);
|
---|
| 103 | this.ResumeLayout(false);
|
---|
| 104 |
|
---|
| 105 | }
|
---|
| 106 |
|
---|
| 107 | #endregion
|
---|
| 108 |
|
---|
[2800] | 109 | private System.Windows.Forms.Panel viewPanel;
|
---|
| 110 | private System.Windows.Forms.Label viewsLabel;
|
---|
| 111 | private System.Windows.Forms.Label messageLabel;
|
---|
[2841] | 112 | private System.Windows.Forms.ToolTip toolTip;
|
---|
[2838] | 113 | private HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip viewContextMenuStrip;
|
---|
[2655] | 114 |
|
---|
| 115 | }
|
---|
| 116 | }
|
---|