forked from DongwanCho/IfcDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CtlCheckGrid.cs
930 lines (779 loc) · 29.6 KB
/
CtlCheckGrid.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
// Name: CtlCheckGrid.cs
// Description: Checkbox grid
// 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;
using IfcDoc.Schema.DOC;
namespace IfcDoc
{
public partial class CtlCheckGrid : ScrollableControl
{
ICheckGrid m_datasource;
ToolMode m_toolmode;
object m_selection;
const int CX = 12;
const int CY = 12;
const int SX = 200;
const int SY = 200;
public CtlCheckGrid()
{
InitializeComponent();
this.DoubleBuffered = true;
this.ResizeRedraw = true;
this.AutoScroll = true;
}
public ICheckGrid CheckGridSource
{
get
{
return this.m_datasource;
}
set
{
this.m_datasource = value;
if (this.m_datasource != null)
{
this.AutoScrollMinSize = new Size(SX + CX * this.m_datasource.GetColumnCount(), SY + CY * this.m_datasource.GetRowCount());
}
this.Invalidate();
}
}
public ToolMode Mode
{
get
{
return this.m_toolmode;
}
set
{
this.m_toolmode = value;
}
}
public object Selection
{
get
{
return this.m_selection;
}
set
{
this.m_selection = value;
if (this.SelectionChanged != null)
{
this.SelectionChanged(this, EventArgs.Empty);
}
}
}
public event EventHandler SelectionChanged;
protected override void OnPaint(PaintEventArgs pe)
{
base.OnPaint(pe);
if (this.m_datasource == null)
return;
Graphics g = pe.Graphics;
g.TranslateTransform(this.AutoScrollPosition.X, this.AutoScrollPosition.Y);
// draw column header
for(int iCol = 0; iCol < this.m_datasource.GetColumnCount(); iCol++)
{
object col = this.m_datasource.GetColumn(iCol);
g.DrawRectangle(Pens.Black, SX + iCol * CX, 0, CY, this.AutoScrollMinSize.Height);
g.DrawString(col.ToString(), this.Font, Brushes.Black, SX + iCol * CX - 2, 0, new System.Drawing.StringFormat(StringFormatFlags.DirectionVertical));
}
for(int iRow = 0; iRow < this.m_datasource.GetRowCount(); iRow++)
{
object row = this.m_datasource.GetRow(iRow);
// draw row header
g.DrawRectangle(Pens.Black, 0, SY + iRow * CY, this.AutoScrollMinSize.Width, CY);
g.DrawString(row.ToString(), this.Font, Brushes.Black, 0, SY + iRow * CY);
for (int iCol = 0; iCol < this.m_datasource.GetColumnCount(); iCol++)
{
object col = this.m_datasource.GetColumn(iCol);
// draw cell
CellValue val = this.m_datasource.GetCell(iRow, iCol);
Brush brush = Brushes.Gray; // incompatible
switch(val)
{
case CellValue.None:
brush = Brushes.LightGray;
break;
case CellValue.Mandatory:
brush = Brushes.LightGreen;
break;
case CellValue.Recommended:
brush = Brushes.Blue;
break;
case CellValue.NotRelevant:
brush = Brushes.White;
break;
case CellValue.NotRecommended:
brush = Brushes.Yellow;
break;
case CellValue.Excluded:
brush = Brushes.Red;
break;
}
g.FillRectangle(brush, new Rectangle(SX + iCol * CX + 1, SY + iRow * CY + 1, CX - 1, CY - 1));
#if false
if (val != CellValue.Unavailable)
{
g.FillRectangle(Brushes.White, new Rectangle(SX + iCol * CX + 1, SY + iRow * CY + 1, CX-1, CY-1));
if (val == CellValue.Optional || val == CellValue.Required)
{
g.DrawLine(Pens.Black, SX + iCol * CX, SY + (iRow + 1) * CY, SX + (iCol + 1) * CX, SY + iRow * CY);
}
if (val == CellValue.Required)
{
g.DrawLine(Pens.Black, SX + iCol * CX, SY + iRow * CY, SX + (iCol + 1) * CX, SY + (iRow + 1) * CY);
}
}
else
{
g.FillRectangle(Brushes.DarkGray, new Rectangle(SX + iCol * CX + 1, SY + iRow * CY + 1, CX - 1, CY - 1));
}
#endif
}
}
}
private object Pick(int x, int y)
{
if (this.m_datasource == null)
return null;
int iCol = (x - SX) / CX;
int iRow = (y - SY) / CY;
if (x < SX && iRow >= 0 && iRow < this.m_datasource.GetRowCount())
{
// clicking on row
return this.m_datasource.GetRow(iRow);
}
else if (y < SY && iCol >= 0 && iCol < this.m_datasource.GetColumnCount())
{
// clicking on column
return this.m_datasource.GetColumn(iCol);
}
else if(iCol >= 0 && iRow >= 0 && iCol < this.m_datasource.GetColumnCount() && iRow < this.m_datasource.GetRowCount())
{
return this.m_datasource.GetObject(iRow, iCol);
}
return null;
}
private void CtlCheckGrid_MouseClick(object sender, MouseEventArgs e)
{
if (this.m_datasource == null)
return;
Point pt = e.Location;
pt.X -= this.AutoScrollPosition.X;
pt.Y -= this.AutoScrollPosition.Y;
if(this.Mode == IfcDoc.ToolMode.Select)
{
this.Selection = this.Pick(pt.X, pt.Y);
return;
}
int iCol = (pt.X - SX) / CX;
int iRow = (pt.Y - SY) / CY;
if (iCol < 0 || iRow < 0)
return;
CellValue oldval = this.m_datasource.GetCell(iRow, iCol);
if (oldval == CellValue.Unavailable)
return;
CellValue newval = oldval;
switch(oldval)
{
case CellValue.None:
newval = CellValue.Recommended;
break;
case CellValue.Recommended:
newval = CellValue.Mandatory;
break;
case CellValue.Mandatory:
newval = CellValue.None;
break;
default:
newval = CellValue.Mandatory;
break;
}
this.m_datasource.SetCell(iRow, iCol, newval);
this.Invalidate(false);
}
private void CtlCheckGrid_MouseMove(object sender, MouseEventArgs e)
{
if(this.m_datasource == null)
return;
Point pt = e.Location;
pt.X -= this.AutoScrollPosition.X;
pt.Y -= this.AutoScrollPosition.Y;
switch (this.Mode)
{
case ToolMode.Select:
{
object link = this.Pick(pt.X, pt.Y);
if(link != null)
{
this.Cursor = Cursors.Hand;
}
else
{
this.Cursor = Cursors.Default;
}
}
break;
case IfcDoc.ToolMode.Move:
case IfcDoc.ToolMode.Link:
{
int iCol = (pt.X - SX) / CX;
int iRow = (pt.Y - SY) / CY;
if(iCol >= 0 && iCol < this.m_datasource.GetColumnCount() &&
iRow >= 0 && iRow < this.m_datasource.GetRowCount())
{
CellValue cell = this.m_datasource.GetCell(iRow, iCol);
if(cell != CellValue.Unavailable)
{
this.Cursor = Cursors.UpArrow;
}
else
{
this.Cursor = Cursors.No;
}
}
else
{
this.Cursor = Cursors.Default;
}
}
break;
}
}
}
public interface ICheckGrid
{
/// <summary>
/// Returns object for column, where ToString() is shown as text; NULL if no more columns.
/// </summary>
/// <param name="col"></param>
/// <returns></returns>
object GetColumn(int col);
/// <summary>
/// Returns object for row, where ToString() is shown as text; NULL if no more rows.
/// </summary>
/// <param name="row"></param>
/// <returns></returns>
object GetRow(int row);
/// <summary>
/// Returns object at cell.
/// </summary>
/// <param name="row"></param>
/// <param name="col"></param>
/// <returns></returns>
object GetObject(int row, int col);
/// <summary>
/// Returns value for cell.
/// </summary>
/// <param name="row"></param>
/// <param name="col"></param>
/// <returns></returns>
CellValue GetCell(int row, int col);
/// <summary>
/// Sets value for cell.
/// </summary>
/// <param name="row"></param>
/// <param name="col"></param>
/// <param name="val"></param>
void SetCell(int row, int col, CellValue val);
int GetColumnCount();
int GetRowCount();
}
public enum CellValue
{
/// <summary>
/// Black -- entry is not possible (not compatible)
/// </summary>
Unavailable = -1,
/// <summary>
/// Grey -- entry is possible but not defined
/// </summary>
None = 0,
/// <summary>
/// Green indicator
/// </summary>
Mandatory = 1,
/// <summary>
/// Blue indicator
/// </summary>
Recommended = 2,
/// <summary>
/// White indicator - entry defined
/// </summary>
NotRelevant = 3,
/// <summary>
/// Yellow indicator
/// </summary>
NotRecommended = 4,
/// <summary>
/// Red indicator
/// </summary>
Excluded = 5,
}
/// <summary>
/// Shows entities for each row, exchanges for each column
/// </summary>
public class CheckGridConcept : ICheckGrid
{
DocTemplateDefinition m_template;
DocModelView m_view;
DocProject m_project;
public CheckGridConcept(DocTemplateDefinition docTemplate, DocModelView docView, DocProject docProject)
{
this.m_template = docTemplate;
this.m_view = docView;
this.m_project = docProject;
}
public int GetColumnCount()
{
if (this.m_view == null)
return 0;
return this.m_view.Exchanges.Count;
}
public int GetRowCount()
{
if (this.m_view == null)
return 0;
return this.m_view.ConceptRoots.Count;
}
public object GetColumn(int col)
{
if (col >= 0 && col < this.m_view.Exchanges.Count)
{
return this.m_view.Exchanges[col];
}
return null;
}
public object GetRow(int row)
{
if (row >= 0 && row < this.m_view.ConceptRoots.Count)
{
return this.m_view.ConceptRoots[row];
}
return null;
}
public object GetObject(int row, int col)
{
DocConceptRoot docRoot = this.m_view.ConceptRoots[row];
DocExchangeDefinition docExchange = this.m_view.Exchanges[col];
foreach (DocTemplateUsage docUsage in docRoot.Concepts)
{
if (docUsage.Definition == this.m_template)
{
foreach (DocExchangeItem docEx in docUsage.Exchanges)
{
if (docEx.Exchange == docExchange && docEx.Applicability == DocExchangeApplicabilityEnum.Export)
{
return docEx;
}
}
return null;
}
}
return null;
}
public CellValue GetCell(int row, int col)
{
DocConceptRoot docRoot = this.m_view.ConceptRoots[row];
DocExchangeDefinition docExchange = this.m_view.Exchanges[col];
foreach (DocTemplateUsage docUsage in docRoot.Concepts)
{
if (docUsage.Definition == this.m_template)
{
foreach (DocExchangeItem docEx in docUsage.Exchanges)
{
if (docEx.Exchange == docExchange && docEx.Applicability == DocExchangeApplicabilityEnum.Export)
{
switch (docEx.Requirement)
{
case DocExchangeRequirementEnum.Mandatory:
return CellValue.Mandatory;
case DocExchangeRequirementEnum.Optional:
return CellValue.Recommended;
case DocExchangeRequirementEnum.NotRelevant:
return CellValue.NotRelevant;
case DocExchangeRequirementEnum.NotRecommended:
return CellValue.NotRecommended;
case DocExchangeRequirementEnum.Excluded:
return CellValue.Excluded;
}
}
}
return CellValue.NotRelevant;
}
}
return CellValue.None;
}
public void SetCell(int row, int col, CellValue val)
{
DocConceptRoot docRoot = this.m_view.ConceptRoots[row];
DocExchangeDefinition docExchange = this.m_view.Exchanges[col];
DocTemplateUsage docUsage = null;
foreach (DocTemplateUsage eachUsage in docRoot.Concepts)
{
if (eachUsage.Definition == this.m_template)
{
docUsage = eachUsage;
break;
}
}
if (docUsage == null)
{
docUsage = new DocTemplateUsage();
docRoot.Concepts.Add(docUsage);
docUsage.Definition = this.m_template;
}
DocExchangeRequirementEnum req = DocExchangeRequirementEnum.NotRelevant;
switch (val)
{
case CellValue.Mandatory:
req = DocExchangeRequirementEnum.Mandatory;
break;
case CellValue.Recommended:
req = DocExchangeRequirementEnum.Optional;
break;
}
docUsage.RegisterExchange(docExchange, req);
}
}
/// <summary>
/// Shows concepts for each row, exchanges for each column
/// </summary>
public class CheckGridEntity : ICheckGrid
{
DocConceptRoot m_root;
DocModelView m_view;
DocProject m_project;
List<DocTemplateDefinition> m_listTemplate;
public CheckGridEntity(DocConceptRoot docRoot, DocModelView docView, DocProject docProject, Dictionary<string, DocObject> map)
{
this.m_root = docRoot;
this.m_view = docView;
this.m_project = docProject;
this.m_listTemplate = new List<DocTemplateDefinition>();
List<DocTemplateDefinition> listTemplate = docProject.GetTemplateList();
//... filter out templates to only those that apply to entity...
foreach (DocTemplateDefinition docTemplate in listTemplate)
{
if (docTemplate.Rules != null && docTemplate.Rules.Count > 0) // don't include abstract/organizational templates
{
bool include = false;
// check for inheritance
DocObject docApplicableEntity = null;
if (docTemplate.Type != null && map.TryGetValue(docTemplate.Type, out docApplicableEntity) && docApplicableEntity is DocEntity)
{
// check for inheritance
DocEntity docBase = docRoot.ApplicableEntity;
while (docBase != null)
{
if (docBase == docApplicableEntity)
{
include = true;
break;
}
if (docBase.BaseDefinition == null)
break;
DocObject docEach = null;
if (map.TryGetValue(docBase.BaseDefinition, out docEach))
{
docBase = (DocEntity)docEach;
}
else
{
docBase = null;
}
}
}
if (include)
{
this.m_listTemplate.Add(docTemplate);
}
}
}
}
public int GetColumnCount()
{
return this.m_view.Exchanges.Count;
}
public int GetRowCount()
{
return this.m_listTemplate.Count;
}
public object GetColumn(int col)
{
if (col >= 0 && col < this.m_view.Exchanges.Count)
{
return this.m_view.Exchanges[col];
}
return null;
}
public object GetRow(int row)
{
if (row >= 0 && row < this.m_listTemplate.Count)
{
return this.m_listTemplate[row];
}
return null;
}
public object GetObject(int row, int col)
{
if (row < 0 || row >= this.m_listTemplate.Count)
return null;
if (col < 0 || col >= this.m_view.Exchanges.Count)
return null;
DocTemplateDefinition docTemplate = this.m_listTemplate[row];
DocExchangeDefinition docExchange = this.m_view.Exchanges[col];
foreach (DocTemplateUsage docUsage in this.m_root.Concepts)
{
if (docUsage.Definition == docTemplate)
{
foreach (DocExchangeItem docItem in docUsage.Exchanges)
{
if (docItem.Exchange == docExchange && docItem.Applicability == DocExchangeApplicabilityEnum.Export)
{
return docItem;
}
}
}
}
return CellValue.None;
}
public CellValue GetCell(int row, int col)
{
if (row < 0 || row >= this.m_listTemplate.Count)
return CellValue.Unavailable;
if (col < 0 || col >= this.m_view.Exchanges.Count)
return CellValue.Unavailable;
DocTemplateDefinition docTemplate = this.m_listTemplate[row];
DocExchangeDefinition docExchange = this.m_view.Exchanges[col];
foreach (DocTemplateUsage docUsage in this.m_root.Concepts)
{
if (docUsage.Definition == docTemplate)
{
foreach (DocExchangeItem docItem in docUsage.Exchanges)
{
if (docItem.Exchange == docExchange && docItem.Applicability == DocExchangeApplicabilityEnum.Export)
{
switch (docItem.Requirement)
{
case DocExchangeRequirementEnum.Mandatory:
return CellValue.Mandatory;
case DocExchangeRequirementEnum.Optional:
return CellValue.Recommended;
default:
return CellValue.None;
}
}
}
}
}
return CellValue.None;
}
public void SetCell(int row, int col, CellValue val)
{
DocTemplateDefinition docTemplate = this.m_listTemplate[row];
DocExchangeDefinition docExchange = this.m_view.Exchanges[col];
DocTemplateUsage docUsage = null;
foreach (DocTemplateUsage eachUsage in this.m_root.Concepts)
{
if (eachUsage.Definition == docTemplate)
{
docUsage = eachUsage;
break;
}
}
if (docUsage == null)
{
docUsage = new DocTemplateUsage();
this.m_root.Concepts.Add(docUsage);
docUsage.Definition = docTemplate;
}
DocExchangeRequirementEnum req = DocExchangeRequirementEnum.NotRelevant;
switch (val)
{
case CellValue.Mandatory:
req = DocExchangeRequirementEnum.Mandatory;
break;
case CellValue.Recommended:
req = DocExchangeRequirementEnum.Optional;
break;
}
docUsage.RegisterExchange(docExchange, req);
}
}
/// <summary>
/// Shows entities for each row, concepts for each column
/// </summary>
public class CheckGridExchange : ICheckGrid
{
DocProject m_project;
DocModelView m_view;
DocExchangeDefinition m_exchange;
List<DocTemplateDefinition> m_listTemplate;
public CheckGridExchange(DocExchangeDefinition docExchange, DocModelView docView, DocProject docProject)
{
this.m_project = docProject;
this.m_view = docView;
this.m_exchange = docExchange;
this.m_listTemplate = docProject.GetTemplateList();
// filter out template list to only those that are currently used
for (int i = this.m_listTemplate.Count - 1; i >= 0; i--)
{
bool used = false;
foreach (DocConceptRoot docRoot in this.m_view.ConceptRoots)
{
foreach (DocTemplateUsage docUsage in docRoot.Concepts)
{
if (docUsage.Definition == this.m_listTemplate[i])
{
used = true;
break;
}
}
}
if (!used)
{
this.m_listTemplate.RemoveAt(i);
}
}
}
public int GetColumnCount()
{
return this.m_listTemplate.Count;
}
public int GetRowCount()
{
return this.m_view.ConceptRoots.Count;
}
public object GetColumn(int col)
{
if (col >= 0 && col < this.m_listTemplate.Count)
{
return this.m_listTemplate[col];
}
return null;
}
public object GetRow(int row)
{
if (row >= 0 && row < this.m_view.ConceptRoots.Count)
{
return this.m_view.ConceptRoots[row];
}
return null;
}
public object GetObject(int row, int col)
{
if (col >= this.m_listTemplate.Count || row >= this.m_view.ConceptRoots.Count)
return null;
DocTemplateDefinition docTemplate = this.m_listTemplate[col];
DocConceptRoot docRoot = this.m_view.ConceptRoots[row];
foreach (DocTemplateUsage docUsage in docRoot.Concepts)
{
if (docUsage.Definition == docTemplate)
{
foreach (DocExchangeItem docExchangeItem in docUsage.Exchanges)
{
if (docExchangeItem.Exchange == this.m_exchange && docExchangeItem.Applicability == DocExchangeApplicabilityEnum.Export)
{
return docUsage;
}
}
}
}
return null;
}
public CellValue GetCell(int row, int col)
{
if (col >= this.m_listTemplate.Count || row >= this.m_view.ConceptRoots.Count)
return CellValue.Unavailable;
DocTemplateDefinition docTemplate = this.m_listTemplate[col];
DocConceptRoot docRoot = this.m_view.ConceptRoots[row];
// return Unavailable if template is incompatible with root
bool applicable = false;
DocDefinition docDef = this.m_project.GetDefinition(docTemplate.Type);
DocEntity docEnt = docRoot.ApplicableEntity;
while(docEnt != null)
{
if (docEnt == docDef)
{
applicable = true;
break;
}
docEnt = this.m_project.GetDefinition(docEnt.BaseDefinition) as DocEntity;
}
if(!applicable)
{
return CellValue.Unavailable;
}
foreach (DocTemplateUsage docUsage in docRoot.Concepts)
{
if (docUsage.Definition == docTemplate)
{
foreach (DocExchangeItem docExchangeItem in docUsage.Exchanges)
{
if (docExchangeItem.Exchange == this.m_exchange && docExchangeItem.Applicability == DocExchangeApplicabilityEnum.Export)
{
switch (docExchangeItem.Requirement)
{
case DocExchangeRequirementEnum.Mandatory:
return CellValue.Mandatory;
case DocExchangeRequirementEnum.Optional:
return CellValue.Recommended;
case DocExchangeRequirementEnum.NotRelevant:
return CellValue.NotRelevant;
case DocExchangeRequirementEnum.NotRecommended:
return CellValue.NotRecommended;
case DocExchangeRequirementEnum.Excluded:
return CellValue.Excluded;
}
}
}
return CellValue.NotRelevant;
}
}
return CellValue.None;
}
public void SetCell(int row, int col, CellValue val)
{
DocTemplateDefinition docTemplate = this.m_listTemplate[col];
DocConceptRoot docRoot = this.m_view.ConceptRoots[row];
DocTemplateUsage docConcept = null;
foreach (DocTemplateUsage docUsage in docRoot.Concepts)
{
if (docUsage.Definition == docTemplate)
{
docConcept = docUsage;
break;
}
}
if (docConcept == null)
{
docConcept = new DocTemplateUsage();
docRoot.Concepts.Add(docConcept);
docConcept.Definition = docTemplate;
}
DocExchangeRequirementEnum req = DocExchangeRequirementEnum.NotRelevant;
switch (val)
{
case CellValue.Mandatory:
req = DocExchangeRequirementEnum.Mandatory;
break;
case CellValue.Recommended:
req = DocExchangeRequirementEnum.Optional;
break;
}
docConcept.RegisterExchange(this.m_exchange, req);
}
}
}