Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Core/DatabaseOperatorLibraryView.Designer.cs @ 417

Last change on this file since 417 was 417, checked in by gkronber, 16 years ago

worked on #211 (Full operator-graphs are stored multiple times in the database even though most of it is static anyway)

  • created a new type of operator library that is connected to the CEDMA db and a view for it
File size: 7.8 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.CEDMA.Core {
23  partial class DatabaseOperatorLibraryView {
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 (chooseOperatorDialog != null) chooseOperatorDialog.Dispose();
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.operatorsGroupBox = new System.Windows.Forms.GroupBox();
49      this.operatorsTreeView = new System.Windows.Forms.TreeView();
50      this.removeButton = new System.Windows.Forms.Button();
51      this.addOperatorButton = new System.Windows.Forms.Button();
52      this.saveButton = new System.Windows.Forms.Button();
53      this.refreshButton = new System.Windows.Forms.Button();
54      this.operatorsGroupBox.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // operatorsGroupBox
58      //
59      this.operatorsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60                  | System.Windows.Forms.AnchorStyles.Left)
61                  | System.Windows.Forms.AnchorStyles.Right)));
62      this.operatorsGroupBox.Controls.Add(this.operatorsTreeView);
63      this.operatorsGroupBox.Enabled = false;
64      this.operatorsGroupBox.Location = new System.Drawing.Point(0, 32);
65      this.operatorsGroupBox.Name = "operatorsGroupBox";
66      this.operatorsGroupBox.Size = new System.Drawing.Size(522, 334);
67      this.operatorsGroupBox.TabIndex = 2;
68      this.operatorsGroupBox.TabStop = false;
69      this.operatorsGroupBox.Text = "&Operators";
70      //
71      // operatorsTreeView
72      //
73      this.operatorsTreeView.AllowDrop = true;
74      this.operatorsTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
75      this.operatorsTreeView.HideSelection = false;
76      this.operatorsTreeView.LabelEdit = true;
77      this.operatorsTreeView.Location = new System.Drawing.Point(3, 16);
78      this.operatorsTreeView.Name = "operatorsTreeView";
79      this.operatorsTreeView.ShowNodeToolTips = true;
80      this.operatorsTreeView.Size = new System.Drawing.Size(516, 315);
81      this.operatorsTreeView.TabIndex = 0;
82      this.operatorsTreeView.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.operatorsTreeView_AfterLabelEdit);
83      this.operatorsTreeView.DoubleClick += new System.EventHandler(this.operatorsTreeView_DoubleClick);
84      this.operatorsTreeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.operatorsTreeView_DragDrop);
85      this.operatorsTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.operatorsTreeView_AfterSelect);
86      this.operatorsTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.operatorsTreeView_MouseDown);
87      this.operatorsTreeView.DragEnter += new System.Windows.Forms.DragEventHandler(this.operatorsTreeView_DragEnter);
88      this.operatorsTreeView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.operatorsTreeView_KeyDown);
89      this.operatorsTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.operatorsTreeView_ItemDrag);
90      this.operatorsTreeView.DragOver += new System.Windows.Forms.DragEventHandler(this.operatorsTreeView_DragOver);
91      //
92      // removeButton
93      //
94      this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
95      this.removeButton.Enabled = false;
96      this.removeButton.Location = new System.Drawing.Point(113, 372);
97      this.removeButton.Name = "removeButton";
98      this.removeButton.Size = new System.Drawing.Size(104, 23);
99      this.removeButton.TabIndex = 4;
100      this.removeButton.Text = "&Remove";
101      this.removeButton.UseVisualStyleBackColor = true;
102      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
103      //
104      // addOperatorButton
105      //
106      this.addOperatorButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
107      this.addOperatorButton.Enabled = false;
108      this.addOperatorButton.Location = new System.Drawing.Point(3, 372);
109      this.addOperatorButton.Name = "addOperatorButton";
110      this.addOperatorButton.Size = new System.Drawing.Size(104, 23);
111      this.addOperatorButton.TabIndex = 3;
112      this.addOperatorButton.Text = "Add &Operator...";
113      this.addOperatorButton.UseVisualStyleBackColor = true;
114      this.addOperatorButton.Click += new System.EventHandler(this.addOperatorButton_Click);
115      //
116      // saveButton
117      //
118      this.saveButton.Location = new System.Drawing.Point(6, 3);
119      this.saveButton.Name = "saveButton";
120      this.saveButton.Size = new System.Drawing.Size(104, 23);
121      this.saveButton.TabIndex = 0;
122      this.saveButton.Text = "&Upload";
123      this.saveButton.UseVisualStyleBackColor = true;
124      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
125      //
126      // refreshButton
127      //
128      this.refreshButton.Location = new System.Drawing.Point(113, 3);
129      this.refreshButton.Name = "refreshButton";
130      this.refreshButton.Size = new System.Drawing.Size(104, 23);
131      this.refreshButton.TabIndex = 1;
132      this.refreshButton.Text = "R&efresh";
133      this.refreshButton.UseVisualStyleBackColor = true;
134      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
135      //
136      // DatabaseOperatorLibraryView
137      //
138      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
139      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
140      this.Controls.Add(this.refreshButton);
141      this.Controls.Add(this.saveButton);
142      this.Controls.Add(this.operatorsGroupBox);
143      this.Controls.Add(this.addOperatorButton);
144      this.Controls.Add(this.removeButton);
145      this.Name = "DatabaseOperatorLibraryView";
146      this.Size = new System.Drawing.Size(522, 395);
147      this.operatorsGroupBox.ResumeLayout(false);
148      this.ResumeLayout(false);
149
150    }
151
152    #endregion
153
154    private System.Windows.Forms.GroupBox operatorsGroupBox;
155    private System.Windows.Forms.TreeView operatorsTreeView;
156    private System.Windows.Forms.Button removeButton;
157    private System.Windows.Forms.Button addOperatorButton;
158    private System.Windows.Forms.Button saveButton;
159    private System.Windows.Forms.Button refreshButton;
160  }
161}
Note: See TracBrowser for help on using the repository browser.