-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormParameters.cs
136 lines (120 loc) · 3.39 KB
/
FormParameters.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using IfcDoc.Schema;
using IfcDoc.Schema.DOC;
namespace IfcDoc
{
public partial class FormParameters : Form
{
DocModelRuleAttribute m_attr;
public FormParameters()
{
InitializeComponent();
}
public DocProject Project
{
get
{
return this.ctlParameters.Project;
}
set
{
this.ctlParameters.Project = value;
}
}
public DocConceptRoot ConceptRoot
{
get
{
return this.ctlParameters.ConceptRoot;
}
set
{
this.ctlParameters.ConceptRoot = value;
}
}
public DocObject ConceptItem
{
get
{
return this.ctlParameters.ConceptItem;
}
set
{
this.ctlParameters.ConceptItem = value;
}
}
public DocTemplateUsage ConceptLeaf
{
get
{
return this.ctlParameters.ConceptLeaf;
}
set
{
this.ctlParameters.ConceptLeaf = value;
}
}
public SEntity CurrentInstance
{
get
{
return this.ctlParameters.CurrentInstance;
}
set
{
this.ctlParameters.CurrentInstance = value;
}
}
private void comboBoxTemplate_SelectedIndexChanged(object sender, EventArgs e)
{
DocModelRuleEntity sel = this.comboBoxTemplate.SelectedItem as DocModelRuleEntity;
if (sel == null)
return;
if (sel.References.Count > 0)
{
DocTemplateDefinition docTemplateInner = sel.References[0];
DocTemplateUsage docConceptInner = ((DocTemplateItem)this.ConceptItem).RegisterParameterConcept(this.ConceptAttr.Identification, docTemplateInner);
this.ConceptLeaf = docConceptInner;
}
}
public DocModelRuleAttribute ConceptAttr
{
get
{
return this.m_attr;
}
set
{
this.m_attr = value;
this.comboBoxTemplate.Items.Clear();
if (this.m_attr == null)
return;
foreach(DocModelRule rule in this.m_attr.Rules)
{
this.comboBoxTemplate.Items.Add(rule);
}
this.comboBoxTemplate.SelectedIndex = 0;
/*
if (dma.Rules.Count > 0 && dma.Rules[0] is DocModelRuleEntity)
{
DocModelRuleEntity dme = (DocModelRuleEntity)dma.Rules[0];
if (dme.References.Count == 1)
{
docTemplateInner = dme.References[0];
if (dma.Rules.Count > 1)
{
// prompt user to select which template...
}
}
}
*/
}
}
}
}