[4703] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4703] | 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.Analysis.Views {
|
---|
| 23 | partial class HeatMapView {
|
---|
| 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 && (components != null)) {
|
---|
| 35 | 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() {
|
---|
| 47 | System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
|
---|
[4739] | 48 | System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
|
---|
[4703] | 49 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeatMapView));
|
---|
| 50 | this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
|
---|
[4739] | 51 | this.colorsPictureBox = new System.Windows.Forms.PictureBox();
|
---|
| 52 | this.minimumLabel = new System.Windows.Forms.Label();
|
---|
| 53 | this.maximumLabel = new System.Windows.Forms.Label();
|
---|
| 54 | this.grayscalesPictureBox = new System.Windows.Forms.PictureBox();
|
---|
| 55 | this.grayscaleCheckBox = new System.Windows.Forms.CheckBox();
|
---|
[4703] | 56 | ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
|
---|
[4739] | 57 | ((System.ComponentModel.ISupportInitialize)(this.colorsPictureBox)).BeginInit();
|
---|
| 58 | ((System.ComponentModel.ISupportInitialize)(this.grayscalesPictureBox)).BeginInit();
|
---|
[4703] | 59 | this.SuspendLayout();
|
---|
| 60 | //
|
---|
| 61 | // chart
|
---|
| 62 | //
|
---|
| 63 | this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 64 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 65 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 66 | this.chart.BorderlineColor = System.Drawing.Color.Black;
|
---|
| 67 | this.chart.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
|
---|
| 68 | chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
|
---|
| 69 | chartArea1.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)));
|
---|
[4739] | 70 | chartArea1.AxisX.Title = "Column Index";
|
---|
| 71 | chartArea1.AxisY.Title = "Row Index";
|
---|
[4703] | 72 | chartArea1.CursorX.IsUserEnabled = true;
|
---|
| 73 | chartArea1.CursorX.IsUserSelectionEnabled = true;
|
---|
| 74 | chartArea1.CursorY.IsUserEnabled = true;
|
---|
| 75 | chartArea1.CursorY.IsUserSelectionEnabled = true;
|
---|
| 76 | chartArea1.Name = "Default";
|
---|
| 77 | this.chart.ChartAreas.Add(chartArea1);
|
---|
| 78 | this.chart.Location = new System.Drawing.Point(0, 0);
|
---|
| 79 | this.chart.Name = "chart";
|
---|
[4739] | 80 | this.chart.Size = new System.Drawing.Size(406, 463);
|
---|
[4703] | 81 | this.chart.TabIndex = 0;
|
---|
| 82 | this.chart.Text = "chart";
|
---|
| 83 | title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
| 84 | title1.Name = "Default";
|
---|
[4739] | 85 | title1.Text = "Heat Map";
|
---|
[4703] | 86 | this.chart.Titles.Add(title1);
|
---|
| 87 | //
|
---|
[4739] | 88 | // colorsPictureBox
|
---|
[4703] | 89 | //
|
---|
[4739] | 90 | this.colorsPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[4703] | 91 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4739] | 92 | this.colorsPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
---|
| 93 | this.colorsPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("colorsPictureBox.Image")));
|
---|
| 94 | this.colorsPictureBox.Location = new System.Drawing.Point(430, 28);
|
---|
| 95 | this.colorsPictureBox.Name = "colorsPictureBox";
|
---|
| 96 | this.colorsPictureBox.Size = new System.Drawing.Size(35, 393);
|
---|
| 97 | this.colorsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
---|
| 98 | this.colorsPictureBox.TabIndex = 11;
|
---|
| 99 | this.colorsPictureBox.TabStop = false;
|
---|
[4703] | 100 | //
|
---|
[4739] | 101 | // minimumLabel
|
---|
[4703] | 102 | //
|
---|
[4739] | 103 | this.minimumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 104 | this.minimumLabel.BackColor = System.Drawing.Color.Transparent;
|
---|
| 105 | this.minimumLabel.Location = new System.Drawing.Point(412, 424);
|
---|
| 106 | this.minimumLabel.Name = "minimumLabel";
|
---|
| 107 | this.minimumLabel.Size = new System.Drawing.Size(73, 19);
|
---|
| 108 | this.minimumLabel.TabIndex = 2;
|
---|
| 109 | this.minimumLabel.Text = "0.0";
|
---|
| 110 | this.minimumLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
---|
[4703] | 111 | //
|
---|
[4739] | 112 | // maximumLabel
|
---|
[4703] | 113 | //
|
---|
[4739] | 114 | this.maximumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 115 | this.maximumLabel.BackColor = System.Drawing.Color.Transparent;
|
---|
| 116 | this.maximumLabel.Location = new System.Drawing.Point(412, 0);
|
---|
| 117 | this.maximumLabel.Name = "maximumLabel";
|
---|
| 118 | this.maximumLabel.Size = new System.Drawing.Size(73, 25);
|
---|
| 119 | this.maximumLabel.TabIndex = 1;
|
---|
| 120 | this.maximumLabel.Text = "1.0";
|
---|
| 121 | this.maximumLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
|
---|
[4703] | 122 | //
|
---|
[4739] | 123 | // grayscalesPictureBox
|
---|
[4703] | 124 | //
|
---|
[4739] | 125 | this.grayscalesPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[4703] | 126 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4739] | 127 | this.grayscalesPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
---|
| 128 | this.grayscalesPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("grayscalesPictureBox.Image")));
|
---|
| 129 | this.grayscalesPictureBox.Location = new System.Drawing.Point(430, 28);
|
---|
| 130 | this.grayscalesPictureBox.Name = "grayscalesPictureBox";
|
---|
| 131 | this.grayscalesPictureBox.Size = new System.Drawing.Size(35, 393);
|
---|
| 132 | this.grayscalesPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
---|
| 133 | this.grayscalesPictureBox.TabIndex = 15;
|
---|
| 134 | this.grayscalesPictureBox.TabStop = false;
|
---|
| 135 | this.grayscalesPictureBox.Visible = false;
|
---|
[4703] | 136 | //
|
---|
[4739] | 137 | // grayscaleCheckBox
|
---|
[4703] | 138 | //
|
---|
[4739] | 139 | this.grayscaleCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 140 | this.grayscaleCheckBox.AutoSize = true;
|
---|
| 141 | this.grayscaleCheckBox.Location = new System.Drawing.Point(412, 446);
|
---|
| 142 | this.grayscaleCheckBox.Name = "grayscaleCheckBox";
|
---|
| 143 | this.grayscaleCheckBox.Size = new System.Drawing.Size(73, 17);
|
---|
| 144 | this.grayscaleCheckBox.TabIndex = 3;
|
---|
| 145 | this.grayscaleCheckBox.Text = "Grayscale";
|
---|
| 146 | this.grayscaleCheckBox.UseVisualStyleBackColor = true;
|
---|
| 147 | this.grayscaleCheckBox.CheckedChanged += new System.EventHandler(this.grayscaledImagesCheckBox_CheckedChanged);
|
---|
[4703] | 148 | //
|
---|
[4739] | 149 | // HeatMapView
|
---|
[4703] | 150 | //
|
---|
| 151 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 152 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[4739] | 153 | this.Controls.Add(this.grayscaleCheckBox);
|
---|
| 154 | this.Controls.Add(this.minimumLabel);
|
---|
| 155 | this.Controls.Add(this.maximumLabel);
|
---|
| 156 | this.Controls.Add(this.colorsPictureBox);
|
---|
[4703] | 157 | this.Controls.Add(this.chart);
|
---|
[4739] | 158 | this.Controls.Add(this.grayscalesPictureBox);
|
---|
| 159 | this.Name = "HeatMapView";
|
---|
| 160 | this.Size = new System.Drawing.Size(485, 463);
|
---|
[4703] | 161 | ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
|
---|
[4739] | 162 | ((System.ComponentModel.ISupportInitialize)(this.colorsPictureBox)).EndInit();
|
---|
| 163 | ((System.ComponentModel.ISupportInitialize)(this.grayscalesPictureBox)).EndInit();
|
---|
[4703] | 164 | this.ResumeLayout(false);
|
---|
| 165 | this.PerformLayout();
|
---|
| 166 |
|
---|
| 167 | }
|
---|
| 168 |
|
---|
| 169 | #endregion
|
---|
| 170 |
|
---|
[4739] | 171 | protected HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
|
---|
| 172 | protected System.Windows.Forms.PictureBox colorsPictureBox;
|
---|
| 173 | protected System.Windows.Forms.Label minimumLabel;
|
---|
| 174 | protected System.Windows.Forms.Label maximumLabel;
|
---|
| 175 | protected System.Windows.Forms.PictureBox grayscalesPictureBox;
|
---|
| 176 | protected System.Windows.Forms.CheckBox grayscaleCheckBox;
|
---|
[4703] | 177 | }
|
---|
| 178 | }
|
---|