[4641] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4641] | 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.Windows.Forms;
|
---|
| 23 |
|
---|
| 24 | namespace HeuristicLab.Core.Views {
|
---|
| 25 | partial class MovieView<T> {
|
---|
| 26 | /// <summary>
|
---|
| 27 | /// Required designer variable.
|
---|
| 28 | /// </summary>
|
---|
| 29 | private System.ComponentModel.IContainer components = null;
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Clean up any resources being used.
|
---|
| 33 | /// </summary>
|
---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 35 | protected override void Dispose(bool disposing) {
|
---|
| 36 | if (disposing) {
|
---|
| 37 | if (components != null) components.Dispose();
|
---|
| 38 | }
|
---|
| 39 | base.Dispose(disposing);
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | #region Windows Form Designer generated code
|
---|
| 43 |
|
---|
| 44 | /// <summary>
|
---|
| 45 | /// Required method for Designer support - do not modify
|
---|
| 46 | /// the contents of this method with the code editor.
|
---|
| 47 | /// </summary>
|
---|
| 48 | private void InitializeComponent() {
|
---|
| 49 | this.components = new System.ComponentModel.Container();
|
---|
| 50 | this.itemsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[4715] | 51 | this.indexLabel = new System.Windows.Forms.Label();
|
---|
| 52 | this.delayComboBox = new System.Windows.Forms.ComboBox();
|
---|
[4641] | 53 | this.stopButton = new System.Windows.Forms.Button();
|
---|
[4715] | 54 | this.nextButton = new System.Windows.Forms.Button();
|
---|
[4641] | 55 | this.lastButton = new System.Windows.Forms.Button();
|
---|
| 56 | this.playButton = new System.Windows.Forms.Button();
|
---|
[4715] | 57 | this.previousButton = new System.Windows.Forms.Button();
|
---|
[4641] | 58 | this.firstButton = new System.Windows.Forms.Button();
|
---|
| 59 | this.maximumLabel = new System.Windows.Forms.Label();
|
---|
| 60 | this.minimumLabel = new System.Windows.Forms.Label();
|
---|
| 61 | this.trackBar = new System.Windows.Forms.TrackBar();
|
---|
| 62 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 63 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
| 64 | this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
|
---|
| 65 | this.itemsGroupBox.SuspendLayout();
|
---|
| 66 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
|
---|
| 67 | this.SuspendLayout();
|
---|
| 68 | //
|
---|
| 69 | // itemsGroupBox
|
---|
| 70 | //
|
---|
| 71 | this.itemsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 72 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 73 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4715] | 74 | this.itemsGroupBox.Controls.Add(this.indexLabel);
|
---|
| 75 | this.itemsGroupBox.Controls.Add(this.delayComboBox);
|
---|
[4641] | 76 | this.itemsGroupBox.Controls.Add(this.stopButton);
|
---|
[4715] | 77 | this.itemsGroupBox.Controls.Add(this.nextButton);
|
---|
[4641] | 78 | this.itemsGroupBox.Controls.Add(this.lastButton);
|
---|
| 79 | this.itemsGroupBox.Controls.Add(this.playButton);
|
---|
[4715] | 80 | this.itemsGroupBox.Controls.Add(this.previousButton);
|
---|
[4641] | 81 | this.itemsGroupBox.Controls.Add(this.firstButton);
|
---|
| 82 | this.itemsGroupBox.Controls.Add(this.maximumLabel);
|
---|
| 83 | this.itemsGroupBox.Controls.Add(this.minimumLabel);
|
---|
| 84 | this.itemsGroupBox.Controls.Add(this.trackBar);
|
---|
| 85 | this.itemsGroupBox.Controls.Add(this.viewHost);
|
---|
| 86 | this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 87 | this.itemsGroupBox.Name = "itemsGroupBox";
|
---|
| 88 | this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
|
---|
| 89 | this.itemsGroupBox.TabIndex = 0;
|
---|
| 90 | this.itemsGroupBox.TabStop = false;
|
---|
| 91 | this.itemsGroupBox.Text = "Items";
|
---|
| 92 | //
|
---|
[4715] | 93 | // indexLabel
|
---|
| 94 | //
|
---|
| 95 | this.indexLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 96 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 97 | this.indexLabel.Location = new System.Drawing.Point(173, 364);
|
---|
| 98 | this.indexLabel.Name = "indexLabel";
|
---|
| 99 | this.indexLabel.Size = new System.Drawing.Size(186, 13);
|
---|
| 100 | this.indexLabel.TabIndex = 9;
|
---|
| 101 | this.indexLabel.Text = "0";
|
---|
| 102 | this.indexLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
---|
| 103 | //
|
---|
| 104 | // delayComboBox
|
---|
| 105 | //
|
---|
| 106 | this.delayComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 107 | this.delayComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 108 | this.delayComboBox.FormattingEnabled = true;
|
---|
| 109 | this.delayComboBox.Location = new System.Drawing.Point(472, 355);
|
---|
| 110 | this.delayComboBox.Name = "delayComboBox";
|
---|
| 111 | this.delayComboBox.Size = new System.Drawing.Size(54, 21);
|
---|
| 112 | this.delayComboBox.TabIndex = 11;
|
---|
| 113 | this.toolTip.SetToolTip(this.delayComboBox, "Visualization Delay");
|
---|
| 114 | this.delayComboBox.SelectedIndexChanged += new System.EventHandler(this.delayComboBox_SelectedIndexChanged);
|
---|
| 115 | //
|
---|
[4641] | 116 | // stopButton
|
---|
| 117 | //
|
---|
[4715] | 118 | this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 119 | this.stopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
|
---|
[4715] | 120 | this.stopButton.Location = new System.Drawing.Point(36, 355);
|
---|
[4641] | 121 | this.stopButton.Name = "stopButton";
|
---|
| 122 | this.stopButton.Size = new System.Drawing.Size(24, 24);
|
---|
[4715] | 123 | this.stopButton.TabIndex = 7;
|
---|
[4641] | 124 | this.toolTip.SetToolTip(this.stopButton, "Stop");
|
---|
| 125 | this.stopButton.UseVisualStyleBackColor = true;
|
---|
| 126 | this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
---|
| 127 | //
|
---|
[4715] | 128 | // nextButton
|
---|
| 129 | //
|
---|
| 130 | this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[5287] | 131 | this.nextButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveNext;
|
---|
[4715] | 132 | this.nextButton.Location = new System.Drawing.Point(472, 325);
|
---|
| 133 | this.nextButton.Name = "nextButton";
|
---|
| 134 | this.nextButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 135 | this.nextButton.TabIndex = 4;
|
---|
| 136 | this.nextButton.UseVisualStyleBackColor = true;
|
---|
| 137 | this.nextButton.Click += new System.EventHandler(this.nextButton_Click);
|
---|
| 138 | //
|
---|
[4641] | 139 | // lastButton
|
---|
| 140 | //
|
---|
| 141 | this.lastButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[5287] | 142 | this.lastButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveLast;
|
---|
[4641] | 143 | this.lastButton.Location = new System.Drawing.Point(502, 325);
|
---|
| 144 | this.lastButton.Name = "lastButton";
|
---|
| 145 | this.lastButton.Size = new System.Drawing.Size(24, 24);
|
---|
[4715] | 146 | this.lastButton.TabIndex = 5;
|
---|
[4641] | 147 | this.toolTip.SetToolTip(this.lastButton, "Move to Last");
|
---|
| 148 | this.lastButton.UseVisualStyleBackColor = true;
|
---|
| 149 | this.lastButton.Click += new System.EventHandler(this.lastButton_Click);
|
---|
| 150 | //
|
---|
| 151 | // playButton
|
---|
| 152 | //
|
---|
| 153 | this.playButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 154 | this.playButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
|
---|
[4641] | 155 | this.playButton.Location = new System.Drawing.Point(6, 355);
|
---|
| 156 | this.playButton.Name = "playButton";
|
---|
| 157 | this.playButton.Size = new System.Drawing.Size(24, 24);
|
---|
[4715] | 158 | this.playButton.TabIndex = 6;
|
---|
[4641] | 159 | this.toolTip.SetToolTip(this.playButton, "Play");
|
---|
| 160 | this.playButton.UseVisualStyleBackColor = true;
|
---|
| 161 | this.playButton.Click += new System.EventHandler(this.playButton_Click);
|
---|
| 162 | //
|
---|
[4715] | 163 | // previousButton
|
---|
| 164 | //
|
---|
| 165 | this.previousButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 166 | this.previousButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MovePrevious;
|
---|
[4715] | 167 | this.previousButton.Location = new System.Drawing.Point(36, 325);
|
---|
| 168 | this.previousButton.Name = "previousButton";
|
---|
| 169 | this.previousButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 170 | this.previousButton.TabIndex = 2;
|
---|
| 171 | this.previousButton.UseVisualStyleBackColor = true;
|
---|
| 172 | this.previousButton.Click += new System.EventHandler(this.previousButton_Click);
|
---|
| 173 | //
|
---|
[4641] | 174 | // firstButton
|
---|
| 175 | //
|
---|
| 176 | this.firstButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 177 | this.firstButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveFirst;
|
---|
[4641] | 178 | this.firstButton.Location = new System.Drawing.Point(6, 325);
|
---|
| 179 | this.firstButton.Name = "firstButton";
|
---|
| 180 | this.firstButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 181 | this.firstButton.TabIndex = 1;
|
---|
| 182 | this.toolTip.SetToolTip(this.firstButton, "Move to First");
|
---|
| 183 | this.firstButton.UseVisualStyleBackColor = true;
|
---|
| 184 | this.firstButton.Click += new System.EventHandler(this.firstButton_Click);
|
---|
| 185 | //
|
---|
| 186 | // maximumLabel
|
---|
| 187 | //
|
---|
| 188 | this.maximumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4715] | 189 | this.maximumLabel.Location = new System.Drawing.Point(351, 364);
|
---|
[4641] | 190 | this.maximumLabel.Name = "maximumLabel";
|
---|
| 191 | this.maximumLabel.Size = new System.Drawing.Size(108, 13);
|
---|
[4715] | 192 | this.maximumLabel.TabIndex = 10;
|
---|
[4641] | 193 | this.maximumLabel.Text = "10";
|
---|
| 194 | this.maximumLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
| 195 | //
|
---|
| 196 | // minimumLabel
|
---|
| 197 | //
|
---|
| 198 | this.minimumLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[4715] | 199 | this.minimumLabel.Location = new System.Drawing.Point(73, 364);
|
---|
[4641] | 200 | this.minimumLabel.Name = "minimumLabel";
|
---|
| 201 | this.minimumLabel.Size = new System.Drawing.Size(38, 13);
|
---|
[4715] | 202 | this.minimumLabel.TabIndex = 8;
|
---|
[4641] | 203 | this.minimumLabel.Text = "0";
|
---|
| 204 | this.minimumLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
| 205 | //
|
---|
| 206 | // trackBar
|
---|
| 207 | //
|
---|
| 208 | this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 209 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 210 | this.trackBar.LargeChange = 1;
|
---|
[4715] | 211 | this.trackBar.Location = new System.Drawing.Point(66, 316);
|
---|
[4641] | 212 | this.trackBar.Name = "trackBar";
|
---|
[4715] | 213 | this.trackBar.Size = new System.Drawing.Size(400, 45);
|
---|
| 214 | this.trackBar.TabIndex = 3;
|
---|
[4641] | 215 | this.trackBar.TickStyle = System.Windows.Forms.TickStyle.Both;
|
---|
| 216 | this.trackBar.ValueChanged += new System.EventHandler(this.trackBar_ValueChanged);
|
---|
| 217 | //
|
---|
| 218 | // viewHost
|
---|
| 219 | //
|
---|
| 220 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 221 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 222 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 223 | this.viewHost.Caption = "View";
|
---|
| 224 | this.viewHost.Content = null;
|
---|
| 225 | this.viewHost.Enabled = false;
|
---|
| 226 | this.viewHost.Location = new System.Drawing.Point(6, 19);
|
---|
| 227 | this.viewHost.Name = "viewHost";
|
---|
| 228 | this.viewHost.ReadOnly = false;
|
---|
| 229 | this.viewHost.Size = new System.Drawing.Size(520, 291);
|
---|
| 230 | this.viewHost.TabIndex = 0;
|
---|
| 231 | this.viewHost.ViewType = null;
|
---|
| 232 | //
|
---|
| 233 | // backgroundWorker
|
---|
| 234 | //
|
---|
| 235 | this.backgroundWorker.WorkerSupportsCancellation = true;
|
---|
| 236 | this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork);
|
---|
| 237 | this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted);
|
---|
| 238 | //
|
---|
| 239 | // MovieView
|
---|
| 240 | //
|
---|
| 241 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 242 | this.Controls.Add(this.itemsGroupBox);
|
---|
| 243 | this.Name = "MovieView";
|
---|
| 244 | this.Size = new System.Drawing.Size(532, 383);
|
---|
| 245 | this.itemsGroupBox.ResumeLayout(false);
|
---|
| 246 | this.itemsGroupBox.PerformLayout();
|
---|
| 247 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
|
---|
| 248 | this.ResumeLayout(false);
|
---|
| 249 |
|
---|
| 250 | }
|
---|
| 251 |
|
---|
| 252 | #endregion
|
---|
| 253 |
|
---|
| 254 | protected GroupBox itemsGroupBox;
|
---|
| 255 | protected ToolTip toolTip;
|
---|
| 256 | protected MainForm.WindowsForms.ViewHost viewHost;
|
---|
| 257 | protected TrackBar trackBar;
|
---|
| 258 | protected Button stopButton;
|
---|
| 259 | protected Button lastButton;
|
---|
| 260 | protected Button playButton;
|
---|
| 261 | protected Button firstButton;
|
---|
| 262 | protected Label maximumLabel;
|
---|
| 263 | protected Label indexLabel;
|
---|
| 264 | protected Label minimumLabel;
|
---|
| 265 | protected System.ComponentModel.BackgroundWorker backgroundWorker;
|
---|
[4715] | 266 | protected Button nextButton;
|
---|
| 267 | protected Button previousButton;
|
---|
| 268 | protected ComboBox delayComboBox;
|
---|
[4641] | 269 | }
|
---|
| 270 | }
|
---|