-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathBandBase.cs
996 lines (886 loc) · 33.8 KB
/
BandBase.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
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
using System;
using System.Drawing;
using System.ComponentModel;
using System.Collections.Generic;
using FastReport.Utils;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Drawing.Design;
namespace FastReport
{
/// <summary>
/// Base class for all bands.
/// </summary>
public abstract partial class BandBase : BreakableComponent, IParent
{
#region Fields
private ChildBand child;
private ReportComponentCollection objects;
private FloatCollection guides;
private bool startNewPage;
private bool firstRowStartsNewPage;
private bool printOnBottom;
private bool keepChild;
private string outlineExpression;
private int rowNo;
private int absRowNo;
private bool isFirstRow;
private bool isLastRow;
private bool repeated;
private bool updatingLayout;
private bool flagUseStartNewPage;
private bool flagCheckFreeSpace;
private bool flagMustBreak;
private int savedOriginalObjectsCount;
private float reprintOffset;
private string beforeLayoutEvent;
private string afterLayoutEvent;
private int repeatBandNTimes = 1;
#endregion
#region Properties
/// <summary>
/// This event occurs before the band layouts its child objects.
/// </summary>
public event EventHandler BeforeLayout;
/// <summary>
/// This event occurs after the child objects layout was finished.
/// </summary>
public event EventHandler AfterLayout;
/// <summary>
/// Gets or sets a value indicating that the band should be printed from a new page.
/// </summary>
/// <remarks>
/// New page is not generated when printing very first group or data row. This is made to avoid empty
/// first page.
/// </remarks>
[DefaultValue(false)]
[Category("Behavior")]
public bool StartNewPage
{
get { return startNewPage; }
set { startNewPage = value; }
}
/// <summary>
/// Gets or sets a value that determines the number of repetitions of the same band.
/// </summary>
[Category("Behavior")]
[DefaultValue(1)]
public int RepeatBandNTimes
{
get { return repeatBandNTimes; }
set { repeatBandNTimes = value; }
}
/// <summary>
/// Gets or sets a value indicating that the first row can start a new report page.
/// </summary>
/// <remarks>
/// Use this property if <see cref="StartNewPage"/> is set to <b>true</b>. Normally the new page
/// is not started when printing the first data row, to avoid empty first page.
/// </remarks>
[DefaultValue(true)]
[Category("Behavior")]
public bool FirstRowStartsNewPage
{
get { return firstRowStartsNewPage; }
set { firstRowStartsNewPage = value; }
}
/// <summary>
/// Gets or sets a value indicating that the band should be printed on the page bottom.
/// </summary>
[DefaultValue(false)]
[Category("Behavior")]
public bool PrintOnBottom
{
get { return printOnBottom; }
set { printOnBottom = value; }
}
/// <summary>
/// Gets or sets a value indicating that the band should be printed together with its child band.
/// </summary>
[DefaultValue(false)]
[Category("Behavior")]
public bool KeepChild
{
get { return keepChild; }
set { keepChild = value; }
}
/// <summary>
/// Gets or sets an outline expression.
/// </summary>
/// <remarks>
/// <para>
/// Outline is a tree control displayed in the preview window. It represents the prepared report structure.
/// Each outline node can be clicked to navigate to the item in the prepared report.
/// </para>
/// <para>
/// To create the outline, set this property to any valid expression that represents the outline node text.
/// This expression will be calculated when band is about to print, and its value will be added to the
/// outline. Thus, nodes' hierarchy in the outline is similar to the bands' hierarchy
/// in a report. That means there will be the main and subordinate outline nodes, corresponding
/// to the main and subordinate bands in a report (a report with two levels of data or with groups can
/// exemplify the point).
/// </para>
/// </remarks>
[Category("Navigation")]
[Editor("FastReport.TypeEditors.ExpressionEditor, FastReport", typeof(UITypeEditor))]
public string OutlineExpression
{
get { return outlineExpression; }
set { outlineExpression = value; }
}
/// <summary>
/// Gets or sets a child band that will be printed right after this band.
/// </summary>
/// <remarks>
/// Typical use of child band is to print several objects that can grow or shrink. It also can be done
/// using the shift feature (via <see cref="ShiftMode"/> property), but in some cases it's not possible.
/// </remarks>
[Browsable(false)]
public ChildBand Child
{
get { return child; }
set
{
SetProp(child, value);
child = value;
}
}
/// <summary>
/// Gets a collection of report objects belongs to this band.
/// </summary>
[Browsable(false)]
public ReportComponentCollection Objects
{
get { return objects; }
}
/// <summary>
/// Gets a value indicating that band is reprinted on a new page.
/// </summary>
/// <remarks>
/// This property is applicable to the <b>DataHeaderBand</b> and <b>GroupHeaderBand</b> only.
/// It returns <b>true</b> if its <b>RepeatOnAllPages</b> property is <b>true</b> and band is
/// reprinted on a new page.
/// </remarks>
[Browsable(false)]
public bool Repeated
{
get { return repeated; }
set
{
repeated = value;
// set this flag for child bands as well
BandBase child = Child;
while (child != null)
{
child.Repeated = value;
child = child.Child;
}
}
}
/// <summary>
/// Gets or sets a script event name that will be fired before the band layouts its child objects.
/// </summary>
[Category("Build")]
public string BeforeLayoutEvent
{
get { return beforeLayoutEvent; }
set { beforeLayoutEvent = value; }
}
/// <summary>
/// Gets or sets a script event name that will be fired after the child objects layout was finished.
/// </summary>
[Category("Build")]
public string AfterLayoutEvent
{
get { return afterLayoutEvent; }
set { afterLayoutEvent = value; }
}
/// <inheritdoc/>
public override float AbsLeft
{
get { return IsRunning ? base.AbsLeft : Left; }
}
/// <inheritdoc/>
public override float AbsTop
{
get { return IsRunning ? base.AbsTop : Top; }
}
/// <summary>
/// Gets or sets collection of guide lines for this band.
/// </summary>
[Browsable(false)]
public FloatCollection Guides
{
get { return guides; }
set { guides = value; }
}
/// <summary>
/// Gets a row number (the same value returned by the "Row#" system variable).
/// </summary>
/// <remarks>
/// This property can be used when running a report. It may be useful to print hierarchical
/// row numbers in a master-detail report, like this:
/// <para/>1.1
/// <para/>1.2
/// <para/>2.1
/// <para/>2.2
/// <para/>To do this, put the Text object on a detail data band with the following text in it:
/// <para/>[Data1.RowNo].[Data2.RowNo]
/// </remarks>
[Browsable(false)]
public int RowNo
{
get { return rowNo; }
set
{
rowNo = value;
if (Child != null)
Child.RowNo = value;
}
}
/// <summary>
/// Gets an absolute row number (the same value returned by the "AbsRow#" system variable).
/// </summary>
[Browsable(false)]
public int AbsRowNo
{
get
{
return absRowNo;
}
set
{
absRowNo = value;
if (Child != null)
Child.AbsRowNo = value;
}
}
/// <summary>
/// Gets a value indicating that this is the first data row.
/// </summary>
[Browsable(false)]
public bool IsFirstRow
{
get { return isFirstRow; }
set { isFirstRow = value; }
}
/// <summary>
/// Gets a value indicating that this is the last data row.
/// </summary>
[Browsable(false)]
public bool IsLastRow
{
get { return isLastRow; }
set { isLastRow = value; }
}
internal bool HasBorder
{
get { return !Border.Equals(new Border()); }
}
internal bool HasFill
{
get { return !Fill.IsTransparent; }
}
internal DataBand ParentDataBand
{
get
{
Base c = Parent;
while (c != null)
{
if (c is DataBand)
return c as DataBand;
if (c is ReportPage && (c as ReportPage).Subreport != null)
c = (c as ReportPage).Subreport;
c = c.Parent;
}
return null;
}
}
internal bool FlagUseStartNewPage
{
get { return flagUseStartNewPage; }
set { flagUseStartNewPage = value; }
}
internal bool FlagCheckFreeSpace
{
get { return flagCheckFreeSpace; }
set
{
flagCheckFreeSpace = value;
// set flag for child bands as well
BandBase child = Child;
while (child != null)
{
child.FlagCheckFreeSpace = value;
child = child.Child;
}
}
}
internal bool FlagMustBreak
{
get { return flagMustBreak; }
set { flagMustBreak = value; }
}
internal float ReprintOffset
{
get { return reprintOffset; }
set { reprintOffset = value; }
}
internal float PageWidth
{
get
{
ReportPage page = Page as ReportPage;
if (page != null)
return page.WidthInPixels - (page.LeftMargin + page.RightMargin) * Units.Millimeters;
return 0;
}
}
#endregion
#region IParent Members
/// <inheritdoc/>
public virtual void GetChildObjects(ObjectCollection list)
{
foreach (ReportComponentBase obj in objects)
{
list.Add(obj);
}
if (!IsRunning)
list.Add(child);
}
/// <inheritdoc/>
public virtual bool CanContain(Base child)
{
if (IsRunning)
return child is ReportComponentBase;
return ((child is ReportComponentBase && !(child is BandBase)) || child is ChildBand);
}
/// <inheritdoc/>
public virtual void AddChild(Base child)
{
if (child is ChildBand && !IsRunning)
Child = child as ChildBand;
else
objects.Add(child as ReportComponentBase);
}
/// <inheritdoc/>
public virtual void RemoveChild(Base child)
{
if (child is ChildBand && this.child == child as ChildBand)
Child = null;
else
objects.Remove(child as ReportComponentBase);
}
/// <inheritdoc/>
public virtual int GetChildOrder(Base child)
{
return objects.IndexOf(child as ReportComponentBase);
}
/// <inheritdoc/>
public virtual void SetChildOrder(Base child, int order)
{
int oldOrder = child.ZOrder;
if (oldOrder != -1 && order != -1 && oldOrder != order)
{
if (order > objects.Count)
order = objects.Count;
if (oldOrder <= order)
order--;
objects.Remove(child as ReportComponentBase);
objects.Insert(order, child as ReportComponentBase);
UpdateLayout(0, 0);
}
}
/// <inheritdoc/>
public virtual void UpdateLayout(float dx, float dy)
{
if (updatingLayout)
return;
updatingLayout = true;
try
{
RectangleF remainingBounds = new RectangleF(0, 0, Width, Height);
remainingBounds.Width += dx;
remainingBounds.Height += dy;
foreach (ReportComponentBase c in Objects)
{
if ((c.Anchor & AnchorStyles.Right) != 0)
{
if ((c.Anchor & AnchorStyles.Left) != 0)
c.Width += dx;
else
c.Left += dx;
}
else if ((c.Anchor & AnchorStyles.Left) == 0)
{
c.Left += dx / 2;
}
if ((c.Anchor & AnchorStyles.Bottom) != 0)
{
if ((c.Anchor & AnchorStyles.Top) != 0)
c.Height += dy;
else
c.Top += dy;
}
else if ((c.Anchor & AnchorStyles.Top) == 0)
{
c.Top += dy / 2;
}
switch (c.Dock)
{
case DockStyle.Left:
c.Bounds = new RectangleF(remainingBounds.Left, remainingBounds.Top, c.Width, remainingBounds.Height);
remainingBounds.X += c.Width;
remainingBounds.Width -= c.Width;
break;
case DockStyle.Top:
c.Bounds = new RectangleF(remainingBounds.Left, remainingBounds.Top, remainingBounds.Width, c.Height);
remainingBounds.Y += c.Height;
remainingBounds.Height -= c.Height;
break;
case DockStyle.Right:
c.Bounds = new RectangleF(remainingBounds.Right - c.Width, remainingBounds.Top, c.Width, remainingBounds.Height);
remainingBounds.Width -= c.Width;
break;
case DockStyle.Bottom:
c.Bounds = new RectangleF(remainingBounds.Left, remainingBounds.Bottom - c.Height, remainingBounds.Width, c.Height);
remainingBounds.Height -= c.Height;
break;
case DockStyle.Fill:
c.Bounds = remainingBounds;
remainingBounds.Width = 0;
remainingBounds.Height = 0;
break;
}
}
}
finally
{
updatingLayout = false;
}
}
#endregion
#region Public Methods
/// <inheritdoc/>
public override void Assign(Base source)
{
base.Assign(source);
BandBase src = source as BandBase;
Guides.Assign(src.Guides);
StartNewPage = src.StartNewPage;
FirstRowStartsNewPage = src.FirstRowStartsNewPage;
PrintOnBottom = src.PrintOnBottom;
KeepChild = src.KeepChild;
OutlineExpression = src.OutlineExpression;
BeforeLayoutEvent = src.BeforeLayoutEvent;
AfterLayoutEvent = src.AfterLayoutEvent;
RepeatBandNTimes = src.RepeatBandNTimes;
IsLastRow = src.IsLastRow;
}
internal virtual void UpdateWidth()
{
// update band width. It is needed for anchor/dock
ReportPage page = Page as ReportPage;
if (page != null && !(page.UnlimitedWidth && IsDesigning))
{
if (page.Columns.Count <= 1 || !IsColumnDependentBand)
Width = PageWidth;
}
}
/// <inheritdoc/>
public override List<ValidationError> Validate()
{
return new List<ValidationError>();
}
/// <inheritdoc/>
public override void Serialize(FRWriter writer)
{
BandBase c = writer.DiffObject as BandBase;
base.Serialize(writer);
if (writer.SerializeTo == SerializeTo.Preview)
return;
if (StartNewPage != c.StartNewPage)
writer.WriteBool("StartNewPage", StartNewPage);
if (FirstRowStartsNewPage != c.FirstRowStartsNewPage)
writer.WriteBool("FirstRowStartsNewPage", FirstRowStartsNewPage);
if (PrintOnBottom != c.PrintOnBottom)
writer.WriteBool("PrintOnBottom", PrintOnBottom);
if (KeepChild != c.KeepChild)
writer.WriteBool("KeepChild", KeepChild);
if (OutlineExpression != c.OutlineExpression)
writer.WriteStr("OutlineExpression", OutlineExpression);
if (Guides.Count > 0)
writer.WriteValue("Guides", Guides);
if (BeforeLayoutEvent != c.BeforeLayoutEvent)
writer.WriteStr("BeforeLayoutEvent", BeforeLayoutEvent);
if (AfterLayoutEvent != c.AfterLayoutEvent)
writer.WriteStr("AfterLayoutEvent", AfterLayoutEvent);
if (RepeatBandNTimes != c.RepeatBandNTimes)
writer.WriteInt("RepeatBandNTimes", RepeatBandNTimes);
}
internal bool IsColumnDependentBand
{
get
{
BandBase b = this;
if (b is ChildBand)
{
while (b is ChildBand)
{
b = b.Parent as BandBase;
}
}
if (b is DataHeaderBand || b is DataBand || b is DataFooterBand ||
b is GroupHeaderBand || b is GroupFooterBand ||
b is ColumnHeaderBand || b is ColumnFooterBand || b is ReportSummaryBand)
return true;
return false;
}
}
#endregion
#region Report Engine
internal void SetUpdatingLayout(bool value)
{
updatingLayout = value;
}
/// <inheritdoc/>
public override string[] GetExpressions()
{
List<string> expressions = new List<string>();
expressions.AddRange(base.GetExpressions());
if (!String.IsNullOrEmpty(OutlineExpression))
expressions.Add(OutlineExpression);
return expressions.ToArray();
}
/// <inheritdoc/>
public override void SaveState()
{
base.SaveState();
savedOriginalObjectsCount = Objects.Count;
SetRunning(true);
SetDesigning(false);
OnBeforePrint(EventArgs.Empty);
foreach (ReportComponentBase obj in Objects)
{
obj.SaveState();
obj.SetRunning(true);
obj.SetDesigning(false);
obj.OnBeforePrint(EventArgs.Empty);
}
//Report.Engine.TranslatedObjectsToBand(this);
// apply even style
if (RowNo % 2 == 0)
{
ApplyEvenStyle();
foreach (ReportComponentBase obj in Objects)
{
obj.ApplyEvenStyle();
}
}
}
/// <inheritdoc/>
public override void RestoreState()
{
OnAfterPrint(EventArgs.Empty);
base.RestoreState();
while (Objects.Count > savedOriginalObjectsCount)
{
Objects[Objects.Count - 1].Dispose();
}
SetRunning(false);
ReportComponentCollection collection_clone = new ReportComponentCollection();
Objects.CopyTo(collection_clone);
foreach (ReportComponentBase obj in collection_clone)
{
obj.OnAfterPrint(EventArgs.Empty);
obj.RestoreState();
obj.SetRunning(false);
}
}
/// <inheritdoc/>
public override float CalcHeight()
{
OnBeforeLayout(EventArgs.Empty);
// sort objects by Top
ReportComponentCollection sortedObjects = Objects.SortByTop();
// calc height of each object
float[] heights = new float[sortedObjects.Count];
for (int i = 0; i < sortedObjects.Count; i++)
{
ReportComponentBase obj = sortedObjects[i];
float height = obj.Height;
if (obj.Visible && (obj.CanGrow || obj.CanShrink))
{
float height1 = obj.CalcHeight();
if ((obj.CanGrow && height1 > height) || (obj.CanShrink && height1 < height))
height = height1;
}
heights[i] = height;
}
// calc shift amounts
float[] shifts = new float[sortedObjects.Count];
for (int i = 0; i < sortedObjects.Count; i++)
{
ReportComponentBase parent = sortedObjects[i];
float shift = heights[i] - parent.Height;
if (shift == 0)
continue;
for (int j = i + 1; j < sortedObjects.Count; j++)
{
ReportComponentBase child = sortedObjects[j];
if (child.ShiftMode == ShiftMode.Never)
continue;
if (child.Top >= parent.Bottom - 1e-4)
{
if (child.ShiftMode == ShiftMode.WhenOverlapped &&
(child.Left > parent.Right - 1e-4 || parent.Left > child.Right - 1e-4))
continue;
float parentShift = shifts[i];
float childShift = shifts[j];
if (shift > 0)
childShift = Math.Max(shift + parentShift, childShift);
else
childShift = Math.Min(shift + parentShift, childShift);
shifts[j] = childShift;
}
}
}
// update location and size of each component, calc max height
float maxHeight = 0;
for (int i = 0; i < sortedObjects.Count; i++)
{
ReportComponentBase obj = sortedObjects[i];
DockStyle saveDock = obj.Dock;
obj.Dock = DockStyle.None;
obj.Height = heights[i];
obj.Top += shifts[i];
if (obj.Visible && obj.Bottom > maxHeight)
maxHeight = obj.Bottom;
obj.Dock = saveDock;
}
if ((CanGrow && maxHeight > Height) || (CanShrink && maxHeight < Height))
Height = maxHeight;
// perform grow to bottom
foreach (ReportComponentBase obj in Objects)
{
if (obj.GrowToBottom)
{
obj.Height = Height - obj.Top;
}
}
OnAfterLayout(EventArgs.Empty);
return Height;
}
/// <inheritdoc/>
public void AddLastToFooter(BreakableComponent breakTo)
{
float maxTop = (AllObjects[0] as ComponentBase).Top;
for (int i = 0; i < AllObjects.Count; i++)
{
if (AllObjects[i] is ComponentBase)
{
ComponentBase obj = AllObjects[i] as ComponentBase;
if (obj.Top > maxTop && !(obj is DataFooterBand))
maxTop = obj.Top;
}
}
float breakLine = maxTop;
List<ReportComponentBase> pasteList = new List<ReportComponentBase>();
foreach (ReportComponentBase obj in Objects)
if (obj.Bottom > breakLine)
pasteList.Add(obj);
int itemsBefore = breakTo.AllObjects.Count;
foreach (ReportComponentBase obj in pasteList)
{
if (obj.Top < breakLine)
{
BreakableComponent breakComp = Activator.CreateInstance(obj.GetType()) as BreakableComponent;
breakComp.AssignAll(obj);
breakComp.Parent = breakTo;
breakComp.CanGrow = true;
breakComp.CanShrink = false;
breakComp.Height -= breakLine - obj.Top;
breakComp.Top = 0;
obj.Height = breakLine - obj.Top;
(obj as BreakableComponent).Break(breakComp);
}
else
{
obj.Top -= breakLine;
obj.Parent = breakTo;
continue;
}
}
float minTop = (breakTo.AllObjects[0] as ComponentBase).Top;
float maxBottom = 0;
for (int i = itemsBefore; i < breakTo.AllObjects.Count; i++)
if (breakTo.AllObjects[i] is ComponentBase)
if ((breakTo.AllObjects[i] as ComponentBase).Top < minTop && breakTo.AllObjects[i] is ReportComponentBase && !(breakTo.AllObjects[i] is Table.TableCell))
minTop = (breakTo.AllObjects[i] as ComponentBase).Top;
for (int i = itemsBefore; i < breakTo.AllObjects.Count; i++)
if (breakTo.AllObjects[i] is ComponentBase)
if ((breakTo.AllObjects[i] as ComponentBase).Bottom > maxBottom && breakTo.AllObjects[i] is ReportComponentBase && !(breakTo.AllObjects[i] is Table.TableCell))
maxBottom = (breakTo.AllObjects[i] as ComponentBase).Bottom;
for (int i = 0; i < itemsBefore; i++)
if (breakTo.AllObjects[i] is ComponentBase)
(breakTo.AllObjects[i] as ComponentBase).Top += maxBottom - minTop;
breakTo.Height += maxBottom - minTop;
Height -= maxBottom - minTop;
}
/// <inheritdoc/>
public override bool Break(BreakableComponent breakTo)
{
// first we find the break line. It's a minimum Top coordinate of the object that cannot break.
float breakLine = Height;
bool breakLineFound = true;
do
{
breakLineFound = true;
foreach (ReportComponentBase obj in Objects)
{
bool canBreak = true;
if (obj.Top < breakLine && obj.Bottom > breakLine)
{
canBreak = false;
BreakableComponent breakable = obj as BreakableComponent;
if (breakable != null && breakable.CanBreak)
{
using (BreakableComponent clone = Activator.CreateInstance(breakable.GetType()) as BreakableComponent)
{
clone.AssignAll(breakable);
clone.Height = breakLine - clone.Top;
// to allow access to the Report
clone.Parent = breakTo;
canBreak = clone.Break(null);
}
}
}
if (!canBreak)
{
breakLine = Math.Min(obj.Top, breakLine);
// enumerate objects again
breakLineFound = false;
break;
}
}
}
while (!breakLineFound);
// now break the components
int i = 0;
while (i < Objects.Count)
{
ReportComponentBase obj = Objects[i];
if (obj.Bottom > breakLine)
{
if (obj.Top < breakLine)
{
BreakableComponent breakComp = Activator.CreateInstance(obj.GetType()) as BreakableComponent;
breakComp.AssignAll(obj);
breakComp.Parent = breakTo;
breakComp.CanGrow = true;
breakComp.CanShrink = false;
breakComp.Height -= breakLine - obj.Top;
breakComp.Top = 0;
obj.Height = breakLine - obj.Top;
(obj as BreakableComponent).Break(breakComp);
}
else
{
// (case: object with Anchor = bottom on a breakable band)
// in case of bottom anchor, do not move the object. It will be moved automatically when we decrease the band height
if ((obj.Anchor & AnchorStyles.Bottom) == 0)
obj.Top -= breakLine;
// add 0.01 to make sure we're below the breaked object. This is necessary due to rounding errors (in some rare cases)
obj.Top += 0.01f;
obj.Parent = breakTo;
continue;
}
}
i++;
}
Height = breakLine;
breakTo.Height -= breakLine;
return Objects.Count > 0;
}
/// <inheritdoc/>
public override void GetData()
{
base.GetData();
FRCollectionBase list = new FRCollectionBase();
Objects.CopyTo(list);
foreach (ReportComponentBase obj in list)
{
obj.GetData();
obj.OnAfterData();
// break the component if it is of BreakableComponent an has non-empty BreakTo property
if (obj is BreakableComponent && (obj as BreakableComponent).BreakTo != null &&
(obj as BreakableComponent).BreakTo.GetType() == obj.GetType())
(obj as BreakableComponent).Break((obj as BreakableComponent).BreakTo);
}
OnAfterData();
}
internal virtual bool IsEmpty()
{
return true;
}
private void AddBookmark(ReportComponentBase obj)
{
if (Report != null)
Report.Engine.AddBookmark(obj.Bookmark);
}
internal void AddBookmarks()
{
AddBookmark(this);
foreach (ReportComponentBase obj in Objects)
{
AddBookmark(obj);
}
}
/// <inheritdoc/>
public override void InitializeComponent()
{
base.InitializeComponent();
AbsRowNo = 0;
}
/// <summary>
/// This method fires the <b>BeforeLayout</b> event and the script code connected to the <b>BeforeLayoutEvent</b>.
/// </summary>
/// <param name="e">Event data.</param>
public void OnBeforeLayout(EventArgs e)
{
if (BeforeLayout != null)
BeforeLayout(this, e);
InvokeEvent(BeforeLayoutEvent, e);
}
/// <summary>
/// This method fires the <b>AfterLayout</b> event and the script code connected to the <b>AfterLayoutEvent</b>.
/// </summary>
/// <param name="e">Event data.</param>
public void OnAfterLayout(EventArgs e)
{
if (AfterLayout != null)
AfterLayout(this, e);
InvokeEvent(AfterLayoutEvent, e);
}
#endregion
/// <summary>
/// Initializes a new instance of the <see cref="BandBase"/> class with default settings.
/// </summary>
public BandBase()
{
objects = new ReportComponentCollection(this);
guides = new FloatCollection();
beforeLayoutEvent = "";
afterLayoutEvent = "";
outlineExpression = "";
CanBreak = false;
ShiftMode = ShiftMode.Never;
if (BaseName.EndsWith("Band"))
BaseName = ClassName.Remove(ClassName.IndexOf("Band"));
SetFlags(Flags.CanMove | Flags.CanChangeOrder | Flags.CanChangeParent | Flags.CanCopy | Flags.CanGroup, false);
FlagUseStartNewPage = true;
FlagCheckFreeSpace = true;
}
}
}