Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.1/sources/HeuristicLab.Communication.Data/ProtocolEditor.Designer.cs @ 4384

Last change on this file since 4384 was 592, checked in by abeham, 16 years ago

Put the GPL license in the files from the communication framework and simulation optimization project (branch 3.1)

File size: 7.0 KB
Line 
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
22namespace HeuristicLab.Communication.Data {
23  partial class ProtocolEditor {
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      if (Protocol != null) Protocol.Changed -= new System.EventHandler(Protocol_Changed);
38      nameViewControl.Dispose();
39      statesItemListView.Dispose();
40      base.Dispose(disposing);
41    }
42
43    #region Windows Form Designer generated code
44
45    /// <summary>
46    /// Required method for Designer support - do not modify
47    /// the contents of this method with the code editor.
48    /// </summary>
49    private void InitializeComponent() {
50      HeuristicLab.Data.StringData stringData2 = new HeuristicLab.Data.StringData();
51      this.nameViewControl = new HeuristicLab.Data.StringDataView();
52      this.protocolNameLabel = new System.Windows.Forms.Label();
53      this.initialStateLabel = new System.Windows.Forms.Label();
54      this.initialStateComboBox = new System.Windows.Forms.ComboBox();
55      this.protocolStatesLabel = new System.Windows.Forms.Label();
56      this.statesItemListView = new HeuristicLab.Data.ItemListView<ProtocolState>();
57      this.invertButton = new System.Windows.Forms.Button();
58      this.SuspendLayout();
59      //
60      // nameViewControl
61      //
62      this.nameViewControl.Caption = "View (StringData)";
63      this.nameViewControl.Location = new System.Drawing.Point(89, 3);
64      this.nameViewControl.Name = "nameViewControl";
65      this.nameViewControl.Size = new System.Drawing.Size(180, 28);
66      stringData2.Data = "";
67      this.nameViewControl.StringData = stringData2;
68      this.nameViewControl.TabIndex = 1;
69      //
70      // protocolNameLabel
71      //
72      this.protocolNameLabel.AutoSize = true;
73      this.protocolNameLabel.Location = new System.Drawing.Point(3, 6);
74      this.protocolNameLabel.Name = "protocolNameLabel";
75      this.protocolNameLabel.Size = new System.Drawing.Size(80, 13);
76      this.protocolNameLabel.TabIndex = 3;
77      this.protocolNameLabel.Text = "Protocol Name:";
78      //
79      // initialStateLabel
80      //
81      this.initialStateLabel.AutoSize = true;
82      this.initialStateLabel.Location = new System.Drawing.Point(275, 6);
83      this.initialStateLabel.Name = "initialStateLabel";
84      this.initialStateLabel.Size = new System.Drawing.Size(62, 13);
85      this.initialStateLabel.TabIndex = 5;
86      this.initialStateLabel.Text = "Initial State:";
87      //
88      // initialStateComboBox
89      //
90      this.initialStateComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
91      this.initialStateComboBox.FormattingEnabled = true;
92      this.initialStateComboBox.Location = new System.Drawing.Point(343, 3);
93      this.initialStateComboBox.Name = "initialStateComboBox";
94      this.initialStateComboBox.Size = new System.Drawing.Size(166, 21);
95      this.initialStateComboBox.TabIndex = 6;
96      this.initialStateComboBox.SelectedIndexChanged += new System.EventHandler(this.initialStateComboBox_SelectedIndexChanged);
97      //
98      // protocolStatesLabel
99      //
100      this.protocolStatesLabel.AutoSize = true;
101      this.protocolStatesLabel.Location = new System.Drawing.Point(3, 32);
102      this.protocolStatesLabel.Name = "protocolStatesLabel";
103      this.protocolStatesLabel.Size = new System.Drawing.Size(82, 13);
104      this.protocolStatesLabel.TabIndex = 8;
105      this.protocolStatesLabel.Text = "Protocol States:";
106      //
107      // statesItemListView
108      //
109      this.statesItemListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
110                  | System.Windows.Forms.AnchorStyles.Left)
111                  | System.Windows.Forms.AnchorStyles.Right)));
112      this.statesItemListView.Caption = "View";
113      this.statesItemListView.ItemList = null;
114      this.statesItemListView.Location = new System.Drawing.Point(3, 51);
115      this.statesItemListView.Name = "statesItemListView";
116      this.statesItemListView.Size = new System.Drawing.Size(613, 308);
117      this.statesItemListView.TabIndex = 7;
118      //
119      // invertButton
120      //
121      this.invertButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
122      this.invertButton.Location = new System.Drawing.Point(3, 363);
123      this.invertButton.Name = "invertButton";
124      this.invertButton.Size = new System.Drawing.Size(162, 23);
125      this.invertButton.TabIndex = 9;
126      this.invertButton.Text = "Invert Send/Receive";
127      this.invertButton.UseVisualStyleBackColor = true;
128      this.invertButton.Click += new System.EventHandler(this.invertButton_Click);
129      //
130      // ProtocolEditor
131      //
132      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
133      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
134      this.Controls.Add(this.invertButton);
135      this.Controls.Add(this.protocolStatesLabel);
136      this.Controls.Add(this.statesItemListView);
137      this.Controls.Add(this.initialStateComboBox);
138      this.Controls.Add(this.initialStateLabel);
139      this.Controls.Add(this.protocolNameLabel);
140      this.Controls.Add(this.nameViewControl);
141      this.Name = "ProtocolEditor";
142      this.Size = new System.Drawing.Size(619, 389);
143      this.ResumeLayout(false);
144      this.PerformLayout();
145
146    }
147
148    #endregion
149
150    private HeuristicLab.Data.StringDataView nameViewControl;
151    private System.Windows.Forms.Label protocolNameLabel;
152    private System.Windows.Forms.Label initialStateLabel;
153    private System.Windows.Forms.ComboBox initialStateComboBox;
154    private System.Windows.Forms.Label protocolStatesLabel;
155    private HeuristicLab.Data.ItemListView<ProtocolState> statesItemListView;
156    private System.Windows.Forms.Button invertButton;
157  }
158}
Note: See TracBrowser for help on using the repository browser.