Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.Analysis.Views/3.3/DataTableVisualPropertiesDialog.Designer.cs @ 6016

Last change on this file since 6016 was 6016, checked in by abeham, 13 years ago

#1465

  • added sorting of series to move them back and forth
    • the implementation currently is quite memory intensive in that all data rows are cloned, the collection is cleared and then they're readded in the correct order. Since the underlying collection is a collection and not a list I don't have the possibilities to insert them.
  • fixed histogram configuration
  • added a crude check if there are incompatibilities with bars
File size: 11.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Analysis.Views {
23  partial class DataTableVisualPropertiesDialog {
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
48      this.cancelButton = new System.Windows.Forms.Button();
49      this.tabControl = new System.Windows.Forms.TabControl();
50      this.seriesTabPage = new System.Windows.Forms.TabPage();
51      this.splitContainer = new System.Windows.Forms.SplitContainer();
52      this.seriesListView = new System.Windows.Forms.ListView();
53      this.dataRowVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataRowVisualPropertiesControl();
54      this.chartTabPage = new System.Windows.Forms.TabPage();
55      this.dataTableVisualPropertiesControl = new HeuristicLab.Analysis.Views.DataTableVisualPropertiesControl();
56      this.upButton = new System.Windows.Forms.Button();
57      this.downButton = new System.Windows.Forms.Button();
58      this.tabControl.SuspendLayout();
59      this.seriesTabPage.SuspendLayout();
60      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
61      this.splitContainer.Panel1.SuspendLayout();
62      this.splitContainer.Panel2.SuspendLayout();
63      this.splitContainer.SuspendLayout();
64      this.chartTabPage.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // okButton
68      //
69      this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
70      this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
71      this.okButton.Location = new System.Drawing.Point(152, 357);
72      this.okButton.Name = "okButton";
73      this.okButton.Size = new System.Drawing.Size(75, 23);
74      this.okButton.TabIndex = 0;
75      this.okButton.Text = "Ok";
76      this.okButton.UseVisualStyleBackColor = true;
77      this.okButton.Click += new System.EventHandler(this.okButton_Click);
78      //
79      // cancelButton
80      //
81      this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
82      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
83      this.cancelButton.Location = new System.Drawing.Point(233, 357);
84      this.cancelButton.Name = "cancelButton";
85      this.cancelButton.Size = new System.Drawing.Size(75, 23);
86      this.cancelButton.TabIndex = 1;
87      this.cancelButton.Text = "Cancel";
88      this.cancelButton.UseVisualStyleBackColor = true;
89      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
90      //
91      // tabControl
92      //
93      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94                  | System.Windows.Forms.AnchorStyles.Left)
95                  | System.Windows.Forms.AnchorStyles.Right)));
96      this.tabControl.Controls.Add(this.seriesTabPage);
97      this.tabControl.Controls.Add(this.chartTabPage);
98      this.tabControl.Location = new System.Drawing.Point(0, 0);
99      this.tabControl.Name = "tabControl";
100      this.tabControl.SelectedIndex = 0;
101      this.tabControl.Size = new System.Drawing.Size(474, 350);
102      this.tabControl.TabIndex = 2;
103      //
104      // seriesTabPage
105      //
106      this.seriesTabPage.Controls.Add(this.splitContainer);
107      this.seriesTabPage.Location = new System.Drawing.Point(4, 22);
108      this.seriesTabPage.Name = "seriesTabPage";
109      this.seriesTabPage.Padding = new System.Windows.Forms.Padding(3);
110      this.seriesTabPage.Size = new System.Drawing.Size(466, 324);
111      this.seriesTabPage.TabIndex = 0;
112      this.seriesTabPage.Text = "Series";
113      this.seriesTabPage.UseVisualStyleBackColor = true;
114      //
115      // splitContainer
116      //
117      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
118      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
119      this.splitContainer.Location = new System.Drawing.Point(3, 3);
120      this.splitContainer.Name = "splitContainer";
121      //
122      // splitContainer.Panel1
123      //
124      this.splitContainer.Panel1.Controls.Add(this.downButton);
125      this.splitContainer.Panel1.Controls.Add(this.upButton);
126      this.splitContainer.Panel1.Controls.Add(this.seriesListView);
127      this.splitContainer.Panel1MinSize = 20;
128      //
129      // splitContainer.Panel2
130      //
131      this.splitContainer.Panel2.Controls.Add(this.dataRowVisualPropertiesControl);
132      this.splitContainer.Panel2MinSize = 50;
133      this.splitContainer.Size = new System.Drawing.Size(460, 318);
134      this.splitContainer.SplitterDistance = 125;
135      this.splitContainer.TabIndex = 0;
136      //
137      // seriesListView
138      //
139      this.seriesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
140                  | System.Windows.Forms.AnchorStyles.Left)
141                  | System.Windows.Forms.AnchorStyles.Right)));
142      this.seriesListView.HideSelection = false;
143      this.seriesListView.Location = new System.Drawing.Point(0, 28);
144      this.seriesListView.MultiSelect = false;
145      this.seriesListView.Name = "seriesListView";
146      this.seriesListView.ShowGroups = false;
147      this.seriesListView.Size = new System.Drawing.Size(125, 289);
148      this.seriesListView.TabIndex = 0;
149      this.seriesListView.UseCompatibleStateImageBehavior = false;
150      this.seriesListView.View = System.Windows.Forms.View.SmallIcon;
151      this.seriesListView.SelectedIndexChanged += new System.EventHandler(this.seriesListView_SelectedIndexChanged);
152      //
153      // dataRowVisualPropertiesControl
154      //
155      this.dataRowVisualPropertiesControl.Content = null;
156      this.dataRowVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
157      this.dataRowVisualPropertiesControl.Location = new System.Drawing.Point(0, 0);
158      this.dataRowVisualPropertiesControl.Name = "dataRowVisualPropertiesControl";
159      this.dataRowVisualPropertiesControl.Size = new System.Drawing.Size(331, 318);
160      this.dataRowVisualPropertiesControl.TabIndex = 0;
161      //
162      // chartTabPage
163      //
164      this.chartTabPage.Controls.Add(this.dataTableVisualPropertiesControl);
165      this.chartTabPage.Location = new System.Drawing.Point(4, 22);
166      this.chartTabPage.Name = "chartTabPage";
167      this.chartTabPage.Padding = new System.Windows.Forms.Padding(3);
168      this.chartTabPage.Size = new System.Drawing.Size(466, 324);
169      this.chartTabPage.TabIndex = 1;
170      this.chartTabPage.Text = "Chart";
171      this.chartTabPage.UseVisualStyleBackColor = true;
172      //
173      // dataTableVisualPropertiesControl
174      //
175      this.dataTableVisualPropertiesControl.Content = null;
176      this.dataTableVisualPropertiesControl.Dock = System.Windows.Forms.DockStyle.Fill;
177      this.dataTableVisualPropertiesControl.Location = new System.Drawing.Point(3, 3);
178      this.dataTableVisualPropertiesControl.Name = "dataTableVisualPropertiesControl";
179      this.dataTableVisualPropertiesControl.Size = new System.Drawing.Size(460, 318);
180      this.dataTableVisualPropertiesControl.TabIndex = 0;
181      //
182      // upButton
183      //
184      this.upButton.Location = new System.Drawing.Point(-1, 3);
185      this.upButton.Name = "upButton";
186      this.upButton.Size = new System.Drawing.Size(26, 23);
187      this.upButton.TabIndex = 1;
188      this.upButton.Text = "Up";
189      this.upButton.UseVisualStyleBackColor = true;
190      this.upButton.Click += new System.EventHandler(this.upButton_Click);
191      //
192      // downButton
193      //
194      this.downButton.Location = new System.Drawing.Point(27, 3);
195      this.downButton.Name = "downButton";
196      this.downButton.Size = new System.Drawing.Size(26, 23);
197      this.downButton.TabIndex = 1;
198      this.downButton.Text = "Down";
199      this.downButton.UseVisualStyleBackColor = true;
200      this.downButton.Click += new System.EventHandler(this.downButton_Click);
201      //
202      // DataTableVisualPropertiesDialog
203      //
204      this.AcceptButton = this.okButton;
205      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
206      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
207      this.CancelButton = this.cancelButton;
208      this.ClientSize = new System.Drawing.Size(475, 392);
209      this.Controls.Add(this.tabControl);
210      this.Controls.Add(this.cancelButton);
211      this.Controls.Add(this.okButton);
212      this.Name = "DataTableVisualPropertiesDialog";
213      this.Text = "Customize Visual Properties";
214      this.tabControl.ResumeLayout(false);
215      this.seriesTabPage.ResumeLayout(false);
216      this.splitContainer.Panel1.ResumeLayout(false);
217      this.splitContainer.Panel2.ResumeLayout(false);
218      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
219      this.splitContainer.ResumeLayout(false);
220      this.chartTabPage.ResumeLayout(false);
221      this.ResumeLayout(false);
222
223    }
224
225    #endregion
226
227    private System.Windows.Forms.Button okButton;
228    private System.Windows.Forms.Button cancelButton;
229    private System.Windows.Forms.TabControl tabControl;
230    private System.Windows.Forms.TabPage seriesTabPage;
231    private System.Windows.Forms.SplitContainer splitContainer;
232    private System.Windows.Forms.ListView seriesListView;
233    private System.Windows.Forms.TabPage chartTabPage;
234    private DataRowVisualPropertiesControl dataRowVisualPropertiesControl;
235    private DataTableVisualPropertiesControl dataTableVisualPropertiesControl;
236    private System.Windows.Forms.Button downButton;
237    private System.Windows.Forms.Button upButton;
238  }
239}
Note: See TracBrowser for help on using the repository browser.