This repository has been archived by the owner on Sep 15, 2023. It is now read-only.
forked from DongwanCho/IfcDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CtlOperators.Designer.cs
323 lines (317 loc) · 18 KB
/
CtlOperators.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
namespace IfcDoc
{
partial class CtlOperators
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CtlOperators));
this.toolStripConceptRule = new System.Windows.Forms.ToolStrip();
this.toolStripButtonRuleInsert = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleRemove = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleUpdate = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleRef = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparatorRuleComparison = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButtonRuleCeq = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleCne = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleCgt = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleCge = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleClt = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleCle = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparatorRuleLogical = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButtonRuleAnd = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleOr = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonRuleXor = new System.Windows.Forms.ToolStripButton();
this.treeViewRules = new System.Windows.Forms.TreeView();
this.imageListRules = new System.Windows.Forms.ImageList(this.components);
this.toolStripButtonRuleIncludes = new System.Windows.Forms.ToolStripButton();
this.toolStripConceptRule.SuspendLayout();
this.SuspendLayout();
//
// toolStripConceptRule
//
this.toolStripConceptRule.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStripConceptRule.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButtonRuleInsert,
this.toolStripButtonRuleRemove,
this.toolStripButtonRuleUpdate,
this.toolStripButtonRuleRef,
this.toolStripSeparatorRuleComparison,
this.toolStripButtonRuleCeq,
this.toolStripButtonRuleCne,
this.toolStripButtonRuleClt,
this.toolStripButtonRuleCgt,
this.toolStripButtonRuleCle,
this.toolStripButtonRuleCge,
this.toolStripButtonRuleIncludes,
this.toolStripSeparatorRuleLogical,
this.toolStripButtonRuleAnd,
this.toolStripButtonRuleOr,
this.toolStripButtonRuleXor});
this.toolStripConceptRule.Location = new System.Drawing.Point(0, 0);
this.toolStripConceptRule.Name = "toolStripConceptRule";
this.toolStripConceptRule.Size = new System.Drawing.Size(400, 25);
this.toolStripConceptRule.TabIndex = 1;
this.toolStripConceptRule.Text = "toolStrip1";
//
// toolStripButtonRuleInsert
//
this.toolStripButtonRuleInsert.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonRuleInsert.Enabled = false;
this.toolStripButtonRuleInsert.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleInsert.Image")));
this.toolStripButtonRuleInsert.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleInsert.Name = "toolStripButtonRuleInsert";
this.toolStripButtonRuleInsert.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleInsert.Text = "Insert";
this.toolStripButtonRuleInsert.ToolTipText = "Inserts a statement for the selected attribute path";
this.toolStripButtonRuleInsert.Click += new System.EventHandler(this.toolStripButtonRuleInsert_Click);
//
// toolStripButtonRuleRemove
//
this.toolStripButtonRuleRemove.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonRuleRemove.Enabled = false;
this.toolStripButtonRuleRemove.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleRemove.Image")));
this.toolStripButtonRuleRemove.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleRemove.Name = "toolStripButtonRuleRemove";
this.toolStripButtonRuleRemove.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleRemove.Text = "Remove";
this.toolStripButtonRuleRemove.ToolTipText = "Removes the selected expression";
this.toolStripButtonRuleRemove.Click += new System.EventHandler(this.toolStripButtonRuleRemove_Click);
//
// toolStripButtonRuleUpdate
//
this.toolStripButtonRuleUpdate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonRuleUpdate.Enabled = false;
this.toolStripButtonRuleUpdate.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleUpdate.Image")));
this.toolStripButtonRuleUpdate.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleUpdate.Name = "toolStripButtonRuleUpdate";
this.toolStripButtonRuleUpdate.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleUpdate.Text = "Update";
this.toolStripButtonRuleUpdate.ToolTipText = "Edits the selected statement";
this.toolStripButtonRuleUpdate.Click += new System.EventHandler(this.toolStripButtonRuleUpdate_Click);
//
// toolStripButtonRuleRef
//
this.toolStripButtonRuleRef.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonRuleRef.Enabled = false;
this.toolStripButtonRuleRef.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleRef.Image")));
this.toolStripButtonRuleRef.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleRef.Name = "toolStripButtonRuleRef";
this.toolStripButtonRuleRef.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleRef.Text = "Reference";
this.toolStripButtonRuleRef.ToolTipText = "Sets the current statement value to a reference for the selected attribute path";
this.toolStripButtonRuleRef.Click += new System.EventHandler(this.toolStripButtonRuleRef_Click);
//
// toolStripSeparatorRuleComparison
//
this.toolStripSeparatorRuleComparison.Name = "toolStripSeparatorRuleComparison";
this.toolStripSeparatorRuleComparison.Size = new System.Drawing.Size(6, 25);
//
// toolStripButtonRuleCeq
//
this.toolStripButtonRuleCeq.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleCeq.Enabled = false;
this.toolStripButtonRuleCeq.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleCeq.Image")));
this.toolStripButtonRuleCeq.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleCeq.Name = "toolStripButtonRuleCeq";
this.toolStripButtonRuleCeq.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleCeq.Text = "=";
this.toolStripButtonRuleCeq.ToolTipText = "Sets the comparison operator to Equal for the selected statement.";
this.toolStripButtonRuleCeq.Click += new System.EventHandler(this.toolStripButtonRuleCeq_Click);
//
// toolStripButtonRuleCne
//
this.toolStripButtonRuleCne.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleCne.Enabled = false;
this.toolStripButtonRuleCne.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleCne.Image")));
this.toolStripButtonRuleCne.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleCne.Name = "toolStripButtonRuleCne";
this.toolStripButtonRuleCne.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleCne.Text = "≠";
this.toolStripButtonRuleCne.ToolTipText = "Sets the comparison operator to Not Equal for the selected statement.";
this.toolStripButtonRuleCne.Click += new System.EventHandler(this.toolStripButtonRuleCne_Click);
//
// toolStripButtonRuleCgt
//
this.toolStripButtonRuleCgt.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleCgt.Enabled = false;
this.toolStripButtonRuleCgt.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleCgt.Image")));
this.toolStripButtonRuleCgt.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleCgt.Name = "toolStripButtonRuleCgt";
this.toolStripButtonRuleCgt.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleCgt.Text = ">";
this.toolStripButtonRuleCgt.ToolTipText = "Sets the comparison operator to Greater Than for the selected statement.";
this.toolStripButtonRuleCgt.Click += new System.EventHandler(this.toolStripButtonRuleCgt_Click);
//
// toolStripButtonRuleCge
//
this.toolStripButtonRuleCge.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleCge.Enabled = false;
this.toolStripButtonRuleCge.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleCge.Image")));
this.toolStripButtonRuleCge.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleCge.Name = "toolStripButtonRuleCge";
this.toolStripButtonRuleCge.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleCge.Text = "≥";
this.toolStripButtonRuleCge.ToolTipText = "Sets the comparison operator to Greater Than Or Equal for the selected statement." +
"";
this.toolStripButtonRuleCge.Click += new System.EventHandler(this.toolStripButtonRuleCge_Click);
//
// toolStripButtonRuleClt
//
this.toolStripButtonRuleClt.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleClt.Enabled = false;
this.toolStripButtonRuleClt.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleClt.Image")));
this.toolStripButtonRuleClt.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleClt.Name = "toolStripButtonRuleClt";
this.toolStripButtonRuleClt.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleClt.Text = "<";
this.toolStripButtonRuleClt.ToolTipText = "Sets the comparison operator to Less Than for the selected statement.";
this.toolStripButtonRuleClt.Click += new System.EventHandler(this.toolStripButtonRuleClt_Click);
//
// toolStripButtonRuleCle
//
this.toolStripButtonRuleCle.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleCle.Enabled = false;
this.toolStripButtonRuleCle.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleCle.Image")));
this.toolStripButtonRuleCle.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleCle.Name = "toolStripButtonRuleCle";
this.toolStripButtonRuleCle.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleCle.Text = "≤";
this.toolStripButtonRuleCle.ToolTipText = "Sets the comparison operator to Less Than Or Equal for the selected statement.";
this.toolStripButtonRuleCle.Click += new System.EventHandler(this.toolStripButtonRuleCle_Click);
//
// toolStripSeparatorRuleLogical
//
this.toolStripSeparatorRuleLogical.Name = "toolStripSeparatorRuleLogical";
this.toolStripSeparatorRuleLogical.Size = new System.Drawing.Size(6, 25);
//
// toolStripButtonRuleAnd
//
this.toolStripButtonRuleAnd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleAnd.Enabled = false;
this.toolStripButtonRuleAnd.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleAnd.Image")));
this.toolStripButtonRuleAnd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleAnd.Name = "toolStripButtonRuleAnd";
this.toolStripButtonRuleAnd.Size = new System.Drawing.Size(36, 22);
this.toolStripButtonRuleAnd.Text = "AND";
this.toolStripButtonRuleAnd.ToolTipText = "Sets the logical operator to AND for the selected expression.";
this.toolStripButtonRuleAnd.Click += new System.EventHandler(this.toolStripButtonRuleAnd_Click);
//
// toolStripButtonRuleOr
//
this.toolStripButtonRuleOr.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleOr.Enabled = false;
this.toolStripButtonRuleOr.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleOr.Image")));
this.toolStripButtonRuleOr.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleOr.Name = "toolStripButtonRuleOr";
this.toolStripButtonRuleOr.Size = new System.Drawing.Size(27, 22);
this.toolStripButtonRuleOr.Text = "OR";
this.toolStripButtonRuleOr.ToolTipText = "Sets the logical operator to OR for the selected expression.";
this.toolStripButtonRuleOr.Click += new System.EventHandler(this.toolStripButtonRuleOr_Click);
//
// toolStripButtonRuleXor
//
this.toolStripButtonRuleXor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleXor.Enabled = false;
this.toolStripButtonRuleXor.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleXor.Image")));
this.toolStripButtonRuleXor.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleXor.Name = "toolStripButtonRuleXor";
this.toolStripButtonRuleXor.Size = new System.Drawing.Size(34, 22);
this.toolStripButtonRuleXor.Text = "XOR";
this.toolStripButtonRuleXor.ToolTipText = "Sets the logical operator to XOR for the selected expression.";
this.toolStripButtonRuleXor.Click += new System.EventHandler(this.toolStripButtonRuleXor_Click);
//
// treeViewRules
//
this.treeViewRules.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeViewRules.FullRowSelect = true;
this.treeViewRules.HideSelection = false;
this.treeViewRules.ImageIndex = 0;
this.treeViewRules.ImageList = this.imageListRules;
this.treeViewRules.Location = new System.Drawing.Point(0, 25);
this.treeViewRules.Name = "treeViewRules";
this.treeViewRules.SelectedImageIndex = 0;
this.treeViewRules.Size = new System.Drawing.Size(400, 375);
this.treeViewRules.TabIndex = 2;
this.treeViewRules.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewRules_AfterSelect);
this.treeViewRules.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.treeViewRules_MouseDoubleClick);
this.treeViewRules.MouseDown += new System.Windows.Forms.MouseEventHandler(this.treeViewRules_MouseDown);
//
// imageListRules
//
this.imageListRules.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListRules.ImageStream")));
this.imageListRules.TransparentColor = System.Drawing.Color.Fuchsia;
this.imageListRules.Images.SetKeyName(0, "DocEntity.bmp");
this.imageListRules.Images.SetKeyName(1, "DocAttribute.bmp");
this.imageListRules.Images.SetKeyName(2, "DocQuantity.bmp");
this.imageListRules.Images.SetKeyName(3, "IfcAppliedValue.png");
this.imageListRules.Images.SetKeyName(4, "IfcBooleanOperand.png");
//
// toolStripButtonRuleIncludes
//
this.toolStripButtonRuleIncludes.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButtonRuleIncludes.Enabled = false;
this.toolStripButtonRuleIncludes.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRuleIncludes.Image")));
this.toolStripButtonRuleIncludes.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRuleIncludes.Name = "toolStripButtonRuleIncludes";
this.toolStripButtonRuleIncludes.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonRuleIncludes.Text = "{";
this.toolStripButtonRuleIncludes.ToolTipText = "Sets the comparison operator to Includes for the selected statement.";
this.toolStripButtonRuleIncludes.Click += new System.EventHandler(this.toolStripButtonRuleIncludes_Click);
//
// CtlOperators
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.treeViewRules);
this.Controls.Add(this.toolStripConceptRule);
this.Name = "CtlOperators";
this.Size = new System.Drawing.Size(400, 400);
this.toolStripConceptRule.ResumeLayout(false);
this.toolStripConceptRule.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStripConceptRule;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleInsert;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleRemove;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleUpdate;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleRef;
private System.Windows.Forms.ToolStripSeparator toolStripSeparatorRuleComparison;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleCeq;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleCne;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleCgt;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleCge;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleClt;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleCle;
private System.Windows.Forms.ToolStripSeparator toolStripSeparatorRuleLogical;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleAnd;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleOr;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleXor;
private System.Windows.Forms.TreeView treeViewRules;
private System.Windows.Forms.ImageList imageListRules;
private System.Windows.Forms.ToolStripButton toolStripButtonRuleIncludes;
}
}