-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathContainerObject.cs
392 lines (348 loc) · 13.3 KB
/
ContainerObject.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
using FastReport.Utils;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace FastReport
{
/// <summary>
/// Container object that may contain child objects.
/// </summary>
public partial class ContainerObject : ReportComponentBase, IParent
{
#region Fields
private ReportComponentCollection objects;
private bool updatingLayout;
private string beforeLayoutEvent;
private string afterLayoutEvent;
private int savedOriginalObjectsCount;
#endregion
#region Properties
/// <summary>
/// Gets the collection of child objects.
/// </summary>
[Browsable(false)]
public ReportComponentCollection Objects
{
get { return objects; }
}
/// <summary>
/// This event occurs before the container 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 script event name that will be fired before the container 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; }
}
#endregion
#region IParent
/// <inheritdoc/>
public virtual void GetChildObjects(ObjectCollection list)
{
foreach (ReportComponentBase c in objects)
{
list.Add(c);
}
}
/// <inheritdoc/>
public virtual bool CanContain(Base child)
{
return (child is ReportComponentBase) && (child is not SubreportObject);
}
/// <inheritdoc/>
public virtual void AddChild(Base child)
{
if (child is ReportComponentBase)
objects.Add(child as ReportComponentBase);
}
/// <inheritdoc/>
public virtual void RemoveChild(Base child)
{
if (child is ReportComponentBase)
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);
}
}
/// <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 Report engine
/// <inheritdoc/>
public override void SaveState()
{
base.SaveState();
savedOriginalObjectsCount = Objects.Count;
SetRunning(true);
SetDesigning(false);
foreach (ReportComponentBase obj in Objects)
{
obj.SaveState();
obj.SetRunning(true);
obj.SetDesigning(false);
obj.OnBeforePrint(EventArgs.Empty);
}
}
/// <inheritdoc/>
public override void RestoreState()
{
base.RestoreState();
while (Objects.Count > savedOriginalObjectsCount)
{
Objects[Objects.Count - 1].Dispose();
}
SetRunning(false);
foreach (ReportComponentBase obj in Objects)
{
obj.OnAfterPrint(EventArgs.Empty);
obj.RestoreState();
obj.SetRunning(false);
}
}
/// <inheritdoc/>
public override void GetData()
{
base.GetData();
var objArray = Objects.ToArray();
foreach (ReportComponentBase obj in objArray)
{
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);
}
}
/// <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;
}
// perform grow to bottom
foreach (ReportComponentBase obj in Objects)
{
if (obj.GrowToBottom || obj.Bottom > maxHeight)
obj.Height = maxHeight - obj.Top;
}
OnAfterLayout(EventArgs.Empty);
return maxHeight;
}
/// <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
#region Public methods
/// <inheritdoc/>
public override void Assign(Base source)
{
base.Assign(source);
ContainerObject src = source as ContainerObject;
BeforeLayoutEvent = src.BeforeLayoutEvent;
AfterLayoutEvent = src.AfterLayoutEvent;
}
/// <inheritdoc/>
public override void Serialize(FRWriter writer)
{
ContainerObject c = writer.DiffObject as ContainerObject;
base.Serialize(writer);
if (writer.SerializeTo == SerializeTo.Preview)
return;
if (BeforeLayoutEvent != c.BeforeLayoutEvent)
writer.WriteStr("BeforeLayoutEvent", BeforeLayoutEvent);
if (AfterLayoutEvent != c.AfterLayoutEvent)
writer.WriteStr("AfterLayoutEvent", AfterLayoutEvent);
}
/// <inheritdoc/>
public override void Draw(FRPaintEventArgs e)
{
DrawBackground(e);
DrawMarkers(e);
Border.Draw(e, new RectangleF(AbsLeft, AbsTop, Width, Height));
base.Draw(e);
}
#endregion
/// <summary>
/// Initializes a new instance of the <b>ContainerObject</b> class with default settings.
/// </summary>
public ContainerObject()
{
objects = new ReportComponentCollection(this);
beforeLayoutEvent = "";
afterLayoutEvent = "";
}
}
}