[2327] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 | namespace HeuristicLab.SupportVectorMachines {
|
---|
| 23 | partial class PredictorView {
|
---|
| 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 | this.lowerPredictionLimit = new System.Windows.Forms.Label();
|
---|
| 48 | this.lowerLimitTextbox = new System.Windows.Forms.TextBox();
|
---|
| 49 | this.upperLimitTextbox = new System.Windows.Forms.TextBox();
|
---|
| 50 | this.upperPredictionLimit = new System.Windows.Forms.Label();
|
---|
[2373] | 51 | this.maxTimeOffsetTextBox = new System.Windows.Forms.TextBox();
|
---|
| 52 | this.maxTimeOffsetLabel = new System.Windows.Forms.Label();
|
---|
| 53 | this.minTimeOffsetTextBox = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.minTimeOffsetLabel = new System.Windows.Forms.Label();
|
---|
[2327] | 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
[2411] | 57 | // textBox
|
---|
| 58 | //
|
---|
| 59 | this.textBox.Location = new System.Drawing.Point(0, 238);
|
---|
| 60 | this.textBox.Size = new System.Drawing.Size(324, 130);
|
---|
| 61 | //
|
---|
[2327] | 62 | // lowerPredictionLimit
|
---|
| 63 | //
|
---|
| 64 | this.lowerPredictionLimit.AutoSize = true;
|
---|
[2373] | 65 | this.lowerPredictionLimit.Location = new System.Drawing.Point(3, 189);
|
---|
[2327] | 66 | this.lowerPredictionLimit.Name = "lowerPredictionLimit";
|
---|
| 67 | this.lowerPredictionLimit.Size = new System.Drawing.Size(113, 13);
|
---|
| 68 | this.lowerPredictionLimit.TabIndex = 13;
|
---|
| 69 | this.lowerPredictionLimit.Text = "Lower Prediction Limit:";
|
---|
| 70 | //
|
---|
| 71 | // lowerLimitTextbox
|
---|
| 72 | //
|
---|
[2373] | 73 | this.lowerLimitTextbox.Location = new System.Drawing.Point(144, 186);
|
---|
[2327] | 74 | this.lowerLimitTextbox.Name = "lowerLimitTextbox";
|
---|
| 75 | this.lowerLimitTextbox.ReadOnly = true;
|
---|
| 76 | this.lowerLimitTextbox.Size = new System.Drawing.Size(100, 20);
|
---|
| 77 | this.lowerLimitTextbox.TabIndex = 14;
|
---|
| 78 | //
|
---|
| 79 | // upperLimitTextbox
|
---|
| 80 | //
|
---|
[2373] | 81 | this.upperLimitTextbox.Location = new System.Drawing.Point(144, 212);
|
---|
[2327] | 82 | this.upperLimitTextbox.Name = "upperLimitTextbox";
|
---|
| 83 | this.upperLimitTextbox.ReadOnly = true;
|
---|
| 84 | this.upperLimitTextbox.Size = new System.Drawing.Size(100, 20);
|
---|
| 85 | this.upperLimitTextbox.TabIndex = 16;
|
---|
| 86 | //
|
---|
| 87 | // upperPredictionLimit
|
---|
| 88 | //
|
---|
| 89 | this.upperPredictionLimit.AutoSize = true;
|
---|
[2373] | 90 | this.upperPredictionLimit.Location = new System.Drawing.Point(3, 215);
|
---|
[2327] | 91 | this.upperPredictionLimit.Name = "upperPredictionLimit";
|
---|
| 92 | this.upperPredictionLimit.Size = new System.Drawing.Size(113, 13);
|
---|
| 93 | this.upperPredictionLimit.TabIndex = 15;
|
---|
| 94 | this.upperPredictionLimit.Text = "Upper Prediction Limit:";
|
---|
| 95 | //
|
---|
[2373] | 96 | // maxTimeOffsetTextBox
|
---|
| 97 | //
|
---|
| 98 | this.maxTimeOffsetTextBox.Location = new System.Drawing.Point(144, 134);
|
---|
| 99 | this.maxTimeOffsetTextBox.Name = "maxTimeOffsetTextBox";
|
---|
| 100 | this.maxTimeOffsetTextBox.ReadOnly = true;
|
---|
| 101 | this.maxTimeOffsetTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
| 102 | this.maxTimeOffsetTextBox.TabIndex = 18;
|
---|
| 103 | //
|
---|
| 104 | // maxTimeOffsetLabel
|
---|
| 105 | //
|
---|
| 106 | this.maxTimeOffsetLabel.AutoSize = true;
|
---|
| 107 | this.maxTimeOffsetLabel.Location = new System.Drawing.Point(3, 137);
|
---|
| 108 | this.maxTimeOffsetLabel.Name = "maxTimeOffsetLabel";
|
---|
| 109 | this.maxTimeOffsetLabel.Size = new System.Drawing.Size(81, 13);
|
---|
| 110 | this.maxTimeOffsetLabel.TabIndex = 17;
|
---|
| 111 | this.maxTimeOffsetLabel.Text = "Max time offset:";
|
---|
| 112 | //
|
---|
| 113 | // minTimeOffsetTextBox
|
---|
| 114 | //
|
---|
| 115 | this.minTimeOffsetTextBox.Location = new System.Drawing.Point(144, 160);
|
---|
| 116 | this.minTimeOffsetTextBox.Name = "minTimeOffsetTextBox";
|
---|
| 117 | this.minTimeOffsetTextBox.ReadOnly = true;
|
---|
| 118 | this.minTimeOffsetTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
| 119 | this.minTimeOffsetTextBox.TabIndex = 20;
|
---|
| 120 | //
|
---|
| 121 | // minTimeOffsetLabel
|
---|
| 122 | //
|
---|
| 123 | this.minTimeOffsetLabel.AutoSize = true;
|
---|
| 124 | this.minTimeOffsetLabel.Location = new System.Drawing.Point(3, 163);
|
---|
| 125 | this.minTimeOffsetLabel.Name = "minTimeOffsetLabel";
|
---|
| 126 | this.minTimeOffsetLabel.Size = new System.Drawing.Size(78, 13);
|
---|
| 127 | this.minTimeOffsetLabel.TabIndex = 19;
|
---|
| 128 | this.minTimeOffsetLabel.Text = "Min time offset:";
|
---|
| 129 | //
|
---|
[2327] | 130 | // PredictorView
|
---|
| 131 | //
|
---|
| 132 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 133 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[2373] | 134 | this.Controls.Add(this.minTimeOffsetTextBox);
|
---|
| 135 | this.Controls.Add(this.minTimeOffsetLabel);
|
---|
| 136 | this.Controls.Add(this.maxTimeOffsetTextBox);
|
---|
| 137 | this.Controls.Add(this.maxTimeOffsetLabel);
|
---|
[2327] | 138 | this.Controls.Add(this.upperLimitTextbox);
|
---|
| 139 | this.Controls.Add(this.upperPredictionLimit);
|
---|
| 140 | this.Controls.Add(this.lowerLimitTextbox);
|
---|
| 141 | this.Controls.Add(this.lowerPredictionLimit);
|
---|
| 142 | this.Name = "PredictorView";
|
---|
[2411] | 143 | this.Size = new System.Drawing.Size(324, 371);
|
---|
| 144 | this.Controls.SetChildIndex(this.textBox, 0);
|
---|
[2327] | 145 | this.Controls.SetChildIndex(this.lowerPredictionLimit, 0);
|
---|
| 146 | this.Controls.SetChildIndex(this.lowerLimitTextbox, 0);
|
---|
| 147 | this.Controls.SetChildIndex(this.upperPredictionLimit, 0);
|
---|
| 148 | this.Controls.SetChildIndex(this.upperLimitTextbox, 0);
|
---|
[2373] | 149 | this.Controls.SetChildIndex(this.maxTimeOffsetLabel, 0);
|
---|
| 150 | this.Controls.SetChildIndex(this.maxTimeOffsetTextBox, 0);
|
---|
| 151 | this.Controls.SetChildIndex(this.minTimeOffsetLabel, 0);
|
---|
| 152 | this.Controls.SetChildIndex(this.minTimeOffsetTextBox, 0);
|
---|
[2327] | 153 | this.ResumeLayout(false);
|
---|
| 154 | this.PerformLayout();
|
---|
| 155 |
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 | #endregion
|
---|
| 159 |
|
---|
| 160 | private System.Windows.Forms.Label lowerPredictionLimit;
|
---|
| 161 | private System.Windows.Forms.TextBox lowerLimitTextbox;
|
---|
| 162 | private System.Windows.Forms.TextBox upperLimitTextbox;
|
---|
| 163 | private System.Windows.Forms.Label upperPredictionLimit;
|
---|
[2373] | 164 | private System.Windows.Forms.TextBox maxTimeOffsetTextBox;
|
---|
| 165 | private System.Windows.Forms.Label maxTimeOffsetLabel;
|
---|
| 166 | private System.Windows.Forms.TextBox minTimeOffsetTextBox;
|
---|
| 167 | private System.Windows.Forms.Label minTimeOffsetLabel;
|
---|
[2327] | 168 |
|
---|
| 169 | }
|
---|
| 170 | }
|
---|