forked from DongwanCho/IfcDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormGenerate.cs
172 lines (150 loc) · 5.78 KB
/
FormGenerate.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
// Name: FormGenerate.cs
// Description: Dialog box for generating documentation based on MVD schema
// Author: Tim Chipman
// Origination: Work performed for BuildingSmart by Constructivity.com LLC.
// Copyright: (c) 2013 BuildingSmart International Ltd.
// License: http://www.buildingsmart-tech.org/legal
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.DOC;
namespace IfcDoc
{
public partial class FormGenerate : Form
{
DocProject m_project;
public FormGenerate()
{
InitializeComponent();
this.textBoxPath.Text = Properties.Settings.Default.OutputPath;
this.textBoxImagesDocumentation.Text = Properties.Settings.Default.InputPathGeneral;
this.textBoxImagesExamples.Text = Properties.Settings.Default.InputPathExamples;
this.textBoxExternalConverter.Text = Properties.Settings.Default.ConverterPath;
this.checkBoxSkip.Checked = Properties.Settings.Default.SkipDiagrams;
}
protected override void OnClosed(EventArgs e)
{
base.OnClosed(e);
Properties.Settings.Default.OutputPath = this.textBoxPath.Text;
Properties.Settings.Default.InputPathGeneral = this.textBoxImagesDocumentation.Text;
Properties.Settings.Default.InputPathExamples = this.textBoxImagesExamples.Text;
Properties.Settings.Default.SkipDiagrams = this.checkBoxSkip.Checked;
Properties.Settings.Default.Save();
}
private void buttonPath_Click(object sender, EventArgs e)
{
this.folderBrowserDialog.SelectedPath = this.textBoxPath.Text;
DialogResult res = this.folderBrowserDialog.ShowDialog();
if (res == DialogResult.OK)
{
this.textBoxPath.Text = this.folderBrowserDialog.SelectedPath;
}
}
public DocProject Project
{
get
{
return this.m_project;
}
set
{
this.m_project = value;
this.checkedListBoxViews.Items.Clear();
foreach (DocPublication docView in this.m_project.Publications)
{
this.checkedListBoxViews.Items.Add(docView);
}
}
}
public DocPublication[] Publications
{
get
{
List<DocPublication> list = new List<DocPublication>();
for(int i =0; i < checkedListBoxViews.Items.Count; i++)
{
bool check = this.checkedListBoxViews.GetItemChecked(i);
if(check)
{
list.Add((DocPublication)this.checkedListBoxViews.Items[i]);
}
}
if(list.Count > 0)
{
return list.ToArray();
}
return null;
}
set
{
if(value != null)
{
foreach (DocPublication view in value)
{
int index = this.checkedListBoxViews.Items.IndexOf(view);
if (index >= 0)
{
this.checkedListBoxViews.SetItemChecked(index, true);
}
}
}
}
}
private void UpdateEnabled()
{
this.buttonOK.Enabled = (this.Publications != null && this.Publications.Length > 0);
}
private void checkedListBoxViews_SelectedIndexChanged(object sender, EventArgs e)
{
this.UpdateEnabled();
}
private void checkedListBoxViews_ItemCheck(object sender, ItemCheckEventArgs e)
{
this.UpdateEnabled();
if (e.NewValue == CheckState.Checked)
{
this.buttonOK.Enabled = true;
}
}
private void buttonImagesDocumentation_Click(object sender, EventArgs e)
{
this.folderBrowserDialog.SelectedPath = this.textBoxImagesDocumentation.Text;
DialogResult res = this.folderBrowserDialog.ShowDialog();
if (res == DialogResult.OK)
{
this.textBoxImagesDocumentation.Text = this.folderBrowserDialog.SelectedPath;
}
}
private void buttonImagesExamples_Click(object sender, EventArgs e)
{
this.folderBrowserDialog.SelectedPath = this.textBoxImagesExamples.Text;
DialogResult res = this.folderBrowserDialog.ShowDialog();
if (res == DialogResult.OK)
{
this.textBoxImagesExamples.Text = this.folderBrowserDialog.SelectedPath;
}
}
private void checkBoxSkip_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.SkipDiagrams = this.checkBoxSkip.Checked;
}
private void buttonExternalConverter_Click(object sender, EventArgs e)
{
DialogResult res = this.openFileDialogConverter.ShowDialog(this);
if(res == System.Windows.Forms.DialogResult.OK)
{
this.textBoxExternalConverter.Text = this.openFileDialogConverter.FileName;
Properties.Settings.Default.ConverterPath = this.openFileDialogConverter.FileName;
}
}
private void buttonExternalConverterClear_Click(object sender, EventArgs e)
{
this.textBoxExternalConverter.Text = String.Empty;
Properties.Settings.Default.ConverterPath = String.Empty;
}
}
}