Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.DataPreprocessing.Views/3.4/FilterView.Designer.cs @ 14075

Last change on this file since 14075 was 14075, checked in by mkommend, 8 years ago

#2559: Merged r13502, r13504, r13507, r13508, r13512, r13514, r13517 into stable.

File size: 13.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.DataPreprocessing.Views {
23  partial class FilterView {
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 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.groupBoxFilter = new System.Windows.Forms.GroupBox();
48      this.checkedFilterView = new HeuristicLab.DataPreprocessing.Views.CheckedFilterCollectionView();
49      this.groupBoxFilterInfo = new System.Windows.Forms.GroupBox();
50      this.lblPercentage = new System.Windows.Forms.Label();
51      this.tbPercentage = new System.Windows.Forms.TextBox();
52      this.tbRemaining = new System.Windows.Forms.TextBox();
53      this.lblRemaining = new System.Windows.Forms.Label();
54      this.tbTotal = new System.Windows.Forms.TextBox();
55      this.lblTotal = new System.Windows.Forms.Label();
56      this.applyFilterButton = new System.Windows.Forms.Button();
57      this.rBtnOr = new System.Windows.Forms.RadioButton();
58      this.rBtnAnd = new System.Windows.Forms.RadioButton();
59      this.groupBox1 = new System.Windows.Forms.GroupBox();
60      this.label4 = new System.Windows.Forms.Label();
61      this.label1 = new System.Windows.Forms.Label();
62      this.label2 = new System.Windows.Forms.Label();
63      this.label3 = new System.Windows.Forms.Label();
64      this.groupBoxFilter.SuspendLayout();
65      this.groupBoxFilterInfo.SuspendLayout();
66      this.groupBox1.SuspendLayout();
67      this.SuspendLayout();
68      //
69      // groupBoxFilter
70      //
71      this.groupBoxFilter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
72            | System.Windows.Forms.AnchorStyles.Right)));
73      this.groupBoxFilter.Controls.Add(this.checkedFilterView);
74      this.groupBoxFilter.Location = new System.Drawing.Point(4, 4);
75      this.groupBoxFilter.Name = "groupBoxFilter";
76      this.groupBoxFilter.Size = new System.Drawing.Size(658, 327);
77      this.groupBoxFilter.TabIndex = 0;
78      this.groupBoxFilter.TabStop = false;
79      this.groupBoxFilter.Text = "Filter";
80      //
81      // checkedFilterView
82      //
83      this.checkedFilterView.Caption = "filterView";
84      this.checkedFilterView.Content = null;
85      this.checkedFilterView.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.checkedFilterView.Location = new System.Drawing.Point(3, 16);
87      this.checkedFilterView.Name = "checkedFilterView";
88      this.checkedFilterView.ReadOnly = false;
89      this.checkedFilterView.ShowDetails = true;
90      this.checkedFilterView.Size = new System.Drawing.Size(652, 308);
91      this.checkedFilterView.TabIndex = 0;
92      //
93      // groupBoxFilterInfo
94      //
95      this.groupBoxFilterInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
96            | System.Windows.Forms.AnchorStyles.Right)));
97      this.groupBoxFilterInfo.Controls.Add(this.lblPercentage);
98      this.groupBoxFilterInfo.Controls.Add(this.tbPercentage);
99      this.groupBoxFilterInfo.Controls.Add(this.tbRemaining);
100      this.groupBoxFilterInfo.Controls.Add(this.lblRemaining);
101      this.groupBoxFilterInfo.Controls.Add(this.tbTotal);
102      this.groupBoxFilterInfo.Controls.Add(this.lblTotal);
103      this.groupBoxFilterInfo.Location = new System.Drawing.Point(4, 337);
104      this.groupBoxFilterInfo.Name = "groupBoxFilterInfo";
105      this.groupBoxFilterInfo.Size = new System.Drawing.Size(659, 102);
106      this.groupBoxFilterInfo.TabIndex = 1;
107      this.groupBoxFilterInfo.TabStop = false;
108      this.groupBoxFilterInfo.Text = "Filter Preview";
109      //
110      // lblPercentage
111      //
112      this.lblPercentage.AutoSize = true;
113      this.lblPercentage.Location = new System.Drawing.Point(15, 74);
114      this.lblPercentage.Name = "lblPercentage";
115      this.lblPercentage.Size = new System.Drawing.Size(65, 13);
116      this.lblPercentage.TabIndex = 11;
117      this.lblPercentage.Text = "Percentage:";
118      //
119      // tbPercentage
120      //
121      this.tbPercentage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
122            | System.Windows.Forms.AnchorStyles.Right)));
123      this.tbPercentage.Enabled = false;
124      this.tbPercentage.Location = new System.Drawing.Point(104, 71);
125      this.tbPercentage.Name = "tbPercentage";
126      this.tbPercentage.Size = new System.Drawing.Size(549, 20);
127      this.tbPercentage.TabIndex = 10;
128      //
129      // tbFiltered
130      //
131      this.tbRemaining.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
132            | System.Windows.Forms.AnchorStyles.Right)));
133      this.tbRemaining.Enabled = false;
134      this.tbRemaining.Location = new System.Drawing.Point(104, 45);
135      this.tbRemaining.Name = "tbRemaining";
136      this.tbRemaining.Size = new System.Drawing.Size(549, 20);
137      this.tbRemaining.TabIndex = 9;
138      //
139      // lblFiltered
140      //
141      this.lblRemaining.AutoSize = true;
142      this.lblRemaining.Location = new System.Drawing.Point(15, 47);
143      this.lblRemaining.Name = "lblRemaining";
144      this.lblRemaining.Size = new System.Drawing.Size(60, 13);
145      this.lblRemaining.TabIndex = 8;
146      this.lblRemaining.Text = "Remaining:";
147      //
148      // tbTotal
149      //
150      this.tbTotal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
151            | System.Windows.Forms.AnchorStyles.Right)));
152      this.tbTotal.Enabled = false;
153      this.tbTotal.Location = new System.Drawing.Point(104, 19);
154      this.tbTotal.Name = "tbTotal";
155      this.tbTotal.Size = new System.Drawing.Size(549, 20);
156      this.tbTotal.TabIndex = 7;
157      //
158      // lblTotal
159      //
160      this.lblTotal.AutoSize = true;
161      this.lblTotal.Location = new System.Drawing.Point(15, 21);
162      this.lblTotal.Name = "lblTotal";
163      this.lblTotal.Size = new System.Drawing.Size(34, 13);
164      this.lblTotal.TabIndex = 6;
165      this.lblTotal.Text = "Total:";
166      //
167      // applyFilterButton
168      //
169      this.applyFilterButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
170      this.applyFilterButton.Cursor = System.Windows.Forms.Cursors.Default;
171      this.applyFilterButton.Enabled = false;
172      this.applyFilterButton.Location = new System.Drawing.Point(554, 628);
173      this.applyFilterButton.Name = "applyFilterButton";
174      this.applyFilterButton.Size = new System.Drawing.Size(107, 23);
175      this.applyFilterButton.TabIndex = 2;
176      this.applyFilterButton.Text = "Apply Filters";
177      this.applyFilterButton.UseVisualStyleBackColor = true;
178      this.applyFilterButton.Click += new System.EventHandler(this.applyFilterButton_Click);
179      //
180      // rBtnOr
181      //
182      this.rBtnOr.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
183      this.rBtnOr.AutoSize = true;
184      this.rBtnOr.Cursor = System.Windows.Forms.Cursors.Default;
185      this.rBtnOr.Enabled = false;
186      this.rBtnOr.Location = new System.Drawing.Point(60, 634);
187      this.rBtnOr.Name = "rBtnOr";
188      this.rBtnOr.Size = new System.Drawing.Size(36, 17);
189      this.rBtnOr.TabIndex = 3;
190      this.rBtnOr.Text = "Or";
191      this.rBtnOr.UseVisualStyleBackColor = true;
192      //
193      // rBtnAnd
194      //
195      this.rBtnAnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
196      this.rBtnAnd.AutoSize = true;
197      this.rBtnAnd.Checked = true;
198      this.rBtnAnd.Cursor = System.Windows.Forms.Cursors.Default;
199      this.rBtnAnd.Enabled = false;
200      this.rBtnAnd.Location = new System.Drawing.Point(10, 634);
201      this.rBtnAnd.Name = "rBtnAnd";
202      this.rBtnAnd.Size = new System.Drawing.Size(44, 17);
203      this.rBtnAnd.TabIndex = 4;
204      this.rBtnAnd.TabStop = true;
205      this.rBtnAnd.Text = "And";
206      this.rBtnAnd.UseVisualStyleBackColor = true;
207      this.rBtnAnd.CheckedChanged += new System.EventHandler(this.rBtnAnd_CheckedChanged);
208      //
209      // groupBox1
210      //
211      this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
212            | System.Windows.Forms.AnchorStyles.Right)));
213      this.groupBox1.Controls.Add(this.label4);
214      this.groupBox1.Controls.Add(this.label1);
215      this.groupBox1.Controls.Add(this.label2);
216      this.groupBox1.Controls.Add(this.label3);
217      this.groupBox1.Location = new System.Drawing.Point(7, 445);
218      this.groupBox1.Name = "groupBox1";
219      this.groupBox1.Size = new System.Drawing.Size(659, 130);
220      this.groupBox1.TabIndex = 12;
221      this.groupBox1.TabStop = false;
222      this.groupBox1.Text = "Filter Info";
223      //
224      // label4
225      //
226      this.label4.AutoSize = true;
227      this.label4.Location = new System.Drawing.Point(15, 98);
228      this.label4.Name = "label4";
229      this.label4.Size = new System.Drawing.Size(455, 13);
230      this.label4.TabIndex = 12;
231      this.label4.Text = "The Apply Filter Button permanently activates the filters. This means unfiltered " +
232    "rows are deleted.";
233      //
234      // label1
235      //
236      this.label1.AutoSize = true;
237      this.label1.Location = new System.Drawing.Point(15, 74);
238      this.label1.Name = "label1";
239      this.label1.Size = new System.Drawing.Size(529, 13);
240      this.label1.TabIndex = 11;
241      this.label1.Text = "All preprocessing views are updated when a filter gets activated or deactivated b" +
242    "ut the unfiltered rows still exist.";
243      //
244      // label2
245      //
246      this.label2.AutoSize = true;
247      this.label2.Location = new System.Drawing.Point(15, 47);
248      this.label2.Name = "label2";
249      this.label2.Size = new System.Drawing.Size(402, 13);
250      this.label2.TabIndex = 8;
251      this.label2.Text = "In the Filter Preview all effects of the activated filters on the dataset are sum" +
252    "marized.";
253      //
254      // label3
255      //
256      this.label3.AutoSize = true;
257      this.label3.Location = new System.Drawing.Point(15, 21);
258      this.label3.Name = "label3";
259      this.label3.Size = new System.Drawing.Size(249, 13);
260      this.label3.TabIndex = 6;
261      this.label3.Text = "A filter specifies the data rows which should remain.";
262      //
263      // FilterView
264      //
265      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
266      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
267      this.Controls.Add(this.groupBox1);
268      this.Controls.Add(this.rBtnAnd);
269      this.Controls.Add(this.rBtnOr);
270      this.Controls.Add(this.applyFilterButton);
271      this.Controls.Add(this.groupBoxFilterInfo);
272      this.Controls.Add(this.groupBoxFilter);
273      this.Name = "FilterView";
274      this.Size = new System.Drawing.Size(670, 660);
275      this.groupBoxFilter.ResumeLayout(false);
276      this.groupBoxFilterInfo.ResumeLayout(false);
277      this.groupBoxFilterInfo.PerformLayout();
278      this.groupBox1.ResumeLayout(false);
279      this.groupBox1.PerformLayout();
280      this.ResumeLayout(false);
281      this.PerformLayout();
282
283    }
284
285    #endregion
286
287    private System.Windows.Forms.GroupBox groupBoxFilter;
288    private System.Windows.Forms.GroupBox groupBoxFilterInfo;
289    private System.Windows.Forms.Button applyFilterButton;
290    private System.Windows.Forms.TextBox tbTotal;
291    private System.Windows.Forms.Label lblTotal;
292    private System.Windows.Forms.Label lblPercentage;
293    private System.Windows.Forms.TextBox tbPercentage;
294    private System.Windows.Forms.TextBox tbRemaining;
295    private System.Windows.Forms.Label lblRemaining;
296    private System.Windows.Forms.RadioButton rBtnOr;
297    private System.Windows.Forms.RadioButton rBtnAnd;
298    private CheckedFilterCollectionView checkedFilterView;
299    private System.Windows.Forms.GroupBox groupBox1;
300    private System.Windows.Forms.Label label4;
301    private System.Windows.Forms.Label label1;
302    private System.Windows.Forms.Label label2;
303    private System.Windows.Forms.Label label3;
304
305
306  }
307}
Note: See TracBrowser for help on using the repository browser.