[5073] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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.Clients.OKB {
|
---|
| 23 | partial class QueryView {
|
---|
| 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() {
|
---|
| 47 | this.components = new System.ComponentModel.Container();
|
---|
| 48 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QueryView));
|
---|
| 49 | this.refreshButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
| 51 | this.runCollectionView = new HeuristicLab.Clients.OKB.RunCollectionView();
|
---|
| 52 | this.showRunsButton = new System.Windows.Forms.Button();
|
---|
| 53 | this.queryTextBox = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.SuspendLayout();
|
---|
| 55 | //
|
---|
| 56 | // refreshButton
|
---|
| 57 | //
|
---|
| 58 | this.refreshButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
|
---|
| 59 | this.refreshButton.Location = new System.Drawing.Point(0, 0);
|
---|
| 60 | this.refreshButton.Name = "refreshButton";
|
---|
| 61 | this.refreshButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 62 | this.refreshButton.TabIndex = 0;
|
---|
| 63 | this.toolTip.SetToolTip(this.refreshButton, "Refresh Data");
|
---|
| 64 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
| 65 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
| 66 | //
|
---|
| 67 | // runCollectionView
|
---|
| 68 | //
|
---|
| 69 | this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 70 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 71 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 72 | this.runCollectionView.Caption = "RunCollection View";
|
---|
| 73 | this.runCollectionView.Content = null;
|
---|
| 74 | this.runCollectionView.Location = new System.Drawing.Point(0, 30);
|
---|
| 75 | this.runCollectionView.Name = "runCollectionView";
|
---|
| 76 | this.runCollectionView.ReadOnly = false;
|
---|
| 77 | this.runCollectionView.Size = new System.Drawing.Size(727, 405);
|
---|
| 78 | this.runCollectionView.TabIndex = 3;
|
---|
| 79 | //
|
---|
| 80 | // showRunsButton
|
---|
| 81 | //
|
---|
| 82 | this.showRunsButton.Location = new System.Drawing.Point(30, 0);
|
---|
| 83 | this.showRunsButton.Name = "showRunsButton";
|
---|
| 84 | this.showRunsButton.Size = new System.Drawing.Size(75, 24);
|
---|
| 85 | this.showRunsButton.TabIndex = 1;
|
---|
| 86 | this.showRunsButton.Text = "&Show Runs";
|
---|
| 87 | this.showRunsButton.UseVisualStyleBackColor = true;
|
---|
| 88 | this.showRunsButton.Click += new System.EventHandler(this.showRunsButton_Click);
|
---|
| 89 | //
|
---|
| 90 | // queryTextBox
|
---|
| 91 | //
|
---|
| 92 | this.queryTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 93 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 94 | this.queryTextBox.Location = new System.Drawing.Point(111, 3);
|
---|
| 95 | this.queryTextBox.Name = "queryTextBox";
|
---|
| 96 | this.queryTextBox.Size = new System.Drawing.Size(616, 20);
|
---|
| 97 | this.queryTextBox.TabIndex = 2;
|
---|
| 98 | //
|
---|
| 99 | // QueryView
|
---|
| 100 | //
|
---|
| 101 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 102 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 103 | this.Controls.Add(this.queryTextBox);
|
---|
| 104 | this.Controls.Add(this.showRunsButton);
|
---|
| 105 | this.Controls.Add(this.runCollectionView);
|
---|
| 106 | this.Controls.Add(this.refreshButton);
|
---|
| 107 | this.Name = "QueryView";
|
---|
| 108 | this.Size = new System.Drawing.Size(727, 435);
|
---|
| 109 | this.ResumeLayout(false);
|
---|
| 110 | this.PerformLayout();
|
---|
| 111 |
|
---|
| 112 | }
|
---|
| 113 |
|
---|
| 114 | #endregion
|
---|
| 115 |
|
---|
| 116 | private System.Windows.Forms.Button refreshButton;
|
---|
| 117 | private System.Windows.Forms.ToolTip toolTip;
|
---|
| 118 | private RunCollectionView runCollectionView;
|
---|
| 119 | private System.Windows.Forms.Button showRunsButton;
|
---|
| 120 | private System.Windows.Forms.TextBox queryTextBox;
|
---|
| 121 |
|
---|
| 122 | }
|
---|
| 123 | }
|
---|