-
Notifications
You must be signed in to change notification settings - Fork 8
/
table.go
670 lines (589 loc) · 16.1 KB
/
table.go
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
package rtfdoc
import (
"fmt"
"strings"
)
// SetDefaultFontSize sets default font size of Table
func (t *Table) SetDefaultFontSize(size int) *Table {
t.defaultFontSize = size
return t
}
// SetMarginLeft function sets Table left margin
func (t *Table) SetMarginLeft(value int) *Table {
t.marginLeft = value
return t
}
// SetMarginRight function sets Table right margin
func (t *Table) SetMarginRight(value int) *Table {
t.marginRight = value
return t
}
// SetMarginTop function sets Table top margin
func (t *Table) SetMarginTop(value int) *Table {
t.marginTop = value
return t
}
// SetMarginBottom function sets Table bottom margin
func (t *Table) SetMarginBottom(value int) *Table {
t.marginBottom = value
//tp.margins += fmt.Sprintf(" \\trpaddb%d", value)
return t
}
// SetPaddingLeft function sets Table left margin
func (t *Table) SetPaddingLeft(value int) *Table {
t.paddingLeft = value
return t
}
// SetPaddingRight function sets Table right padding
func (t *Table) SetPaddingRight(value int) *Table {
t.paddingRight = value
return t
}
// SetPaddingTop function sets Table top padding
func (t *Table) SetPaddingTop(value int) *Table {
t.paddingTop = value
return t
}
// SetPaddingBottom function sets Table bottom padding
func (t *Table) SetPaddingBottom(value int) *Table {
t.paddingBottom = value
//tp.paddings += fmt.Sprintf(" \\trpaddb%d", value)
return t
}
// SetPadding function sets all Table paddings
func (t *Table) SetPadding(value int) *Table {
return t.SetPaddingBottom(value).SetPaddingLeft(value).SetPaddingRight(value).SetPaddingTop(value)
}
// SetAlign sets Table aligning (c/center, l/left, r/right)
func (t *Table) SetAlign(align string) *Table {
for _, i := range []string{AlignCenter, AlignLeft, AlignRight} {
if i == align {
t.align = i
}
}
return t
}
// AddTable returns Table instance
func (doc *Document) AddTable() *Table {
t := Table{
align: AlignCenter,
docWidth: doc.maxWidth,
}
t.SetMarginLeft(100).SetMarginRight(100).SetMarginTop(100).SetMarginBottom(100)
t.colorTable = doc.colorTable
t.fontColor = doc.fontColor
t.SetBorderLeft(true).
SetBorderRight(true).
SetBorderTop(true).
SetBorderBottom(true).
SetBorderStyle(BorderSingleThickness).
SetBorderColor(ColorBlack).
SetBorderWidth(15)
t.updateMaxWidth()
doc.content = append(doc.content, &t)
return &t
}
func (t *Table) updateMaxWidth() *Table {
t.maxWidth = t.docWidth - t.marginLeft - t.marginRight
return t
}
func (t Table) compose() string {
var res strings.Builder
var align = ""
if t.align != "" {
align = fmt.Sprintf("\\trq%s", t.align)
}
for _, tr := range t.data {
res.WriteString(fmt.Sprintf("\n{\\trowd %s", align))
if t.defaultFontSize > 0 {
res.WriteString(fmt.Sprintf("\\fs%d", 2*t.defaultFontSize))
}
res.WriteString(fmt.Sprintf("\n\\trpaddl%d \\trpaddr%d \\trpaddt%d \\trpaddb%d\n", t.paddingLeft, t.paddingRight, t.paddingTop, t.paddingBottom))
//res += t.getMargins()
res.WriteString(tr.encode())
res.WriteString("\\row}")
}
return res.String()
}
// AddTableRow returns new Table row instance
func (t *Table) AddTableRow() *TableRow {
tr := TableRow{
generalSettings: generalSettings{
fontColor: t.fontColor,
colorTable: t.colorTable,
},
tableWidth: t.maxWidth,
}
tr.SetBorderLeft(t.borderLeft).
SetBorderRight(t.borderRight).
SetBorderTop(t.borderTop).
SetBorderBottom(t.borderBottom).
SetBorderStyle(t.borderStyle).
SetBorderColor(t.borderColor).
SetBorderWidth(t.borderWidth)
t.updateMaxWidth()
t.data = append(t.data, &tr)
return &tr
}
func (tr *TableRow) updateMaxWidth() *TableRow {
tr.maxWidth = tr.tableWidth
return tr
}
// SetBorderLeft function sets Table left border presence
func (t *Table) SetBorderLeft(isBorder bool) *Table {
t.borderLeft = isBorder
return t
}
// SetBorderRight function sets Table right border presence
func (t *Table) SetBorderRight(isBorder bool) *Table {
t.borderRight = isBorder
return t
}
// SetBorderTop function sets Table top border presence
func (t *Table) SetBorderTop(isBorder bool) *Table {
t.borderTop = isBorder
return t
}
// SetBorderBottom function sets Table bottom border presence
func (t *Table) SetBorderBottom(isBorder bool) *Table {
t.borderBottom = isBorder
return t
}
// SetBorder function sets Table bottom border presence
func (t *Table) SetBorder(isBorder bool) *Table {
t.borderBottom = isBorder
return t.SetBorderBottom(isBorder).SetBorderTop(isBorder).SetBorderLeft(isBorder).SetBorderRight(isBorder)
}
// SetBorderStyle function sets Table left border style
func (t *Table) SetBorderStyle(bStyle string) *Table {
for _, i := range []string{
BorderDashSmall,
BorderDashed,
BorderDotDash,
BorderDotDotDash,
BorderDotted,
BorderDouble,
BorderDoubleThickness,
BorderWavyDouble,
BorderEmboss,
BorderEngrave,
BorderHairline,
BorderInset,
BorderOutset,
BorderShadowed,
BorderSingleThickness,
BorderStripped,
BorderThickThinLarge,
BorderThickThinMedium,
BorderThickThinSmall,
BorderThinThickLarge,
BorderThinThickMedium,
BorderThinThickSmall,
BorderThinThickThinLarge,
BorderThinThickThinMedium,
BorderTriple,
BorderWavy,
} {
if bStyle == i {
t.borderStyle = i
for tr := range t.data {
t.data[tr].SetBorderStyle(i)
}
break
}
}
return t
}
// SetBorderColor function sets color of the Table's border and it's rows and cells
func (t *Table) SetBorderColor(color string) *Table {
t.borderColor = color
for tr := range t.data {
t.data[tr].SetBorderColor(color)
}
return t
}
// SetBorderWidth function sets width of the Table's border and it's rows and cells
func (t *Table) SetBorderWidth(value int) *Table {
t.borderWidth = value
for tr := range t.data {
t.data[tr].SetBorderWidth(value)
}
return t
}
// SetWidth sets width of Table
func (t *Table) SetWidth(width int) *Table {
t.width = width
return t
}
// SetBorderLeft function sets left border presence
func (tr *TableRow) SetBorderLeft(isBorder bool) *TableRow {
tr.borderLeft = isBorder
return tr
}
// SetBorderRight function sets right border presence
func (tr *TableRow) SetBorderRight(isBorder bool) *TableRow {
tr.borderRight = isBorder
return tr
}
// SetBorderTop function sets top border presence
func (tr *TableRow) SetBorderTop(isBorder bool) *TableRow {
tr.borderTop = isBorder
return tr
}
// SetBorderBottom function sets bottom border presence
func (tr *TableRow) SetBorderBottom(isBorder bool) *TableRow {
tr.borderBottom = isBorder
return tr
}
// SetBorder function sets bottom borders
func (tr *TableRow) SetBorder(isBorder bool) *TableRow {
return tr.SetBorderBottom(isBorder).SetBorderTop(isBorder).SetBorderLeft(isBorder).SetBorderRight(isBorder)
}
// SetBorderStyle function sets border style
func (tr *TableRow) SetBorderStyle(bStyle string) *TableRow {
for _, i := range []string{
BorderDashSmall,
BorderDashed,
BorderDotDash,
BorderDotDotDash,
BorderDotted,
BorderDouble,
BorderDoubleThickness,
BorderWavyDouble,
BorderEmboss,
BorderEngrave,
BorderHairline,
BorderInset,
BorderOutset,
BorderShadowed,
BorderSingleThickness,
BorderStripped,
BorderThickThinLarge,
BorderThickThinMedium,
BorderThickThinSmall,
BorderThinThickLarge,
BorderThinThickMedium,
BorderThinThickSmall,
BorderThinThickThinLarge,
BorderThinThickThinMedium,
BorderTriple,
BorderWavy,
} {
if bStyle == i {
tr.borderStyle = i
for c := range tr.cells {
tr.cells[c].SetBorderStyle(i)
}
break
}
}
return tr
}
// SetBorderColor sets border color of the row (and recursevely on its cells)
func (tr *TableRow) SetBorderColor(color string) *TableRow {
tr.borderColor = color
for c := range tr.cells {
tr.cells[c].SetBorderColor(color)
}
return tr
}
// SetBorderWidth sets border width (and recursevely on its cells)
func (tr *TableRow) SetBorderWidth(value int) *TableRow {
tr.borderWidth = value
for c := range tr.cells {
tr.cells[c].SetBorderWidth(value)
}
return tr
}
func (tr *TableRow) encode() string {
var res strings.Builder
// Border settings
bTempl := "\n\\trbrdr%s\\brdrw%d\\brdr%s"
for c := range *tr.colorTable {
if ((*tr.colorTable)[c]).name == tr.borderColor {
bTempl += fmt.Sprintf("\\brdrcf%d", c+1)
}
}
if tr.borderLeft {
res.WriteString(fmt.Sprintf(bTempl, "l", tr.borderWidth, tr.borderStyle))
}
if tr.borderRight {
res.WriteString(fmt.Sprintf(bTempl, "r", tr.borderWidth, tr.borderStyle))
}
if tr.borderTop {
res.WriteString(fmt.Sprintf(bTempl, "t", tr.borderWidth, tr.borderStyle))
}
if tr.borderBottom {
res.WriteString(fmt.Sprintf(bTempl, "b", tr.borderWidth, tr.borderStyle))
}
if len(tr.cells) != 0 {
cellLengthPosition := 0
for _, tc := range tr.cells {
cellLengthPosition += tc.getCellWidth()
res.WriteString(tc.cellComposeProperties())
res.WriteString(fmt.Sprintf("\\cellx%d", cellLengthPosition))
}
res.WriteString("\n")
for _, tc := range tr.cells {
res.WriteString(tc.cellComposeData())
}
}
return res.String()
}
// AddDataCell returns new DataCell for current Table row
func (tr *TableRow) AddDataCell(width int) *TableCell {
dc := TableCell{
cellWidth: width,
maxWidth: width,
}
dc.fontColor = tr.fontColor
dc.colorTable = tr.colorTable
dc.SetBorderLeft(tr.borderLeft).
SetBorderRight(tr.borderRight).
SetBorderTop(tr.borderTop).
SetBorderBottom(tr.borderBottom).
SetBorderStyle(tr.borderStyle).
SetBorderColor(tr.borderColor).
SetBorderWidth(tr.borderWidth)
dc.updateMaxWidth()
tr.cells = append(tr.cells, &dc)
return &dc
}
func (dc *TableCell) updateMaxWidth() *TableCell {
dc.maxWidth = dc.cellWidth - dc.marginLeft - dc.marginRight
return dc
}
// SetWidth sets width of the cell
func (dc *TableCell) SetWidth(cellWidth int) *TableCell {
dc.cellWidth = cellWidth
return dc
}
// AddParagraph creates cell's paragraph
func (dc *TableCell) AddParagraph() *Paragraph {
p := Paragraph{
isTable: true,
align: "l",
indent: "\\fl360",
generalSettings: generalSettings{
colorTable: dc.colorTable,
fontColor: dc.fontColor,
},
allowedWidth: dc.maxWidth,
}
p.updateMaxWidth()
dc.content = append(dc.content, &p)
return &p
}
func (dc TableCell) cellComposeProperties() string {
var res strings.Builder
// Тута свойства ячейки (границы, все дела...)
bTempl := "\n\\clbrdr%s\\brdrw%d\\brdr%s"
for c := range *dc.colorTable {
if ((*dc.colorTable)[c]).name == dc.borderColor {
bTempl += fmt.Sprintf("\\brdrcf%d", c+1)
}
}
if dc.borderLeft {
res.WriteString(fmt.Sprintf(bTempl, "l", dc.borderWidth, dc.borderStyle))
}
if dc.borderRight {
res.WriteString(fmt.Sprintf(bTempl, "r", dc.borderWidth, dc.borderStyle))
}
if dc.borderTop {
res.WriteString(fmt.Sprintf(bTempl, "t", dc.borderWidth, dc.borderStyle))
}
if dc.borderBottom {
res.WriteString(fmt.Sprintf(bTempl, "b", dc.borderWidth, dc.borderStyle))
}
// Margins
res.WriteString(fmt.Sprintf("\n\\clpadl%d\\clpadr%d\\clpadt%d\\clpadb%d",
dc.paddingLeft, dc.paddingRight, dc.paddingTop, dc.paddingBottom,
))
// Vertical Merged
if dc.verticalMerged != "" {
res.WriteString(fmt.Sprintf("\\clvm%s", dc.verticalMerged))
}
// Aligning insite cell
res.WriteString(fmt.Sprintf("\\clvertal%s", dc.vTextAlign))
// Background Color
if dc.backgroundColor != "" {
for c := range *dc.colorTable {
if ((*dc.colorTable)[c]).name == dc.backgroundColor {
res.WriteString(fmt.Sprintf("\\clcbpat%d", c+1))
}
}
}
return res.String()
}
func (dc TableCell) cellComposeData() string {
var res strings.Builder
if len(dc.content) == 0 {
dc.AddParagraph()
}
for _, p := range dc.content {
res.WriteString(fmt.Sprintf("%s\n", p.compose()))
}
res.WriteString("\\cell")
return res.String()
}
func (dc TableCell) getCellWidth() int {
return dc.cellWidth
}
// SetBorders sets borders to
// datacell
// SetBorderLeft function set left border to be visible
func (dc *TableCell) SetBorderLeft(value bool) *TableCell {
dc.borderLeft = value
return dc
}
// SetBorderRight function sets right border to be visible
func (dc *TableCell) SetBorderRight(value bool) *TableCell {
dc.borderRight = value
return dc
}
// SetBorderTop function sets top border to be visible
func (dc *TableCell) SetBorderTop(value bool) *TableCell {
dc.borderTop = value
return dc
}
// SetBorderBottom function sets bottom border to be visible
func (dc *TableCell) SetBorderBottom(value bool) *TableCell {
dc.borderBottom = value
return dc
}
// SetBorder function sets bottom borders
func (dc *TableCell) SetBorder(isBorder bool) *TableCell {
return dc.SetBorderBottom(isBorder).SetBorderTop(isBorder).SetBorderLeft(isBorder).SetBorderRight(isBorder)
}
// SetBorderWidth function sets cell's border width px
func (dc *TableCell) SetBorderWidth(value int) *TableCell {
dc.borderWidth = value
return dc
}
// SetBorderStyle function sets cell's border style
func (dc *TableCell) SetBorderStyle(bStyle string) *TableCell {
bStyle = BorderSingleThickness
for _, i := range []string{
BorderDashSmall,
BorderDashed,
BorderDotDash,
BorderDotDotDash,
BorderDotted,
BorderDouble,
BorderDoubleThickness,
BorderWavyDouble,
BorderEmboss,
BorderEngrave,
BorderHairline,
BorderInset,
BorderOutset,
BorderShadowed,
BorderSingleThickness,
BorderStripped,
BorderThickThinLarge,
BorderThickThinMedium,
BorderThickThinSmall,
BorderThinThickLarge,
BorderThinThickMedium,
BorderThinThickSmall,
BorderThinThickThinLarge,
BorderThinThickThinMedium,
BorderTriple,
BorderWavy,
} {
if bStyle == i {
dc.borderStyle = i
break
}
}
return dc
}
// GetTableCellWidthByRatio returns slice of cell widths
func (t *Table) GetTableCellWidthByRatio(ratio ...float64) []int {
cellRatioSum := 0.0
for _, cellRatio := range ratio {
cellRatioSum += cellRatio
}
var cellWidth = make([]int, len(ratio))
for i := range ratio {
cellWidth[i] = int(ratio[i] * (float64(t.width) / cellRatioSum))
}
return cellWidth
}
// SetVerticalMergedFirst sets this cell to be first in vertical merging.
func (dc *TableCell) SetVerticalMergedFirst() *TableCell {
dc.verticalMerged = "gf"
return dc
}
// SetVerticalMergedNext sets this cell to be not first cell in vertical merging.
func (dc *TableCell) SetVerticalMergedNext() *TableCell {
dc.verticalMerged = "rg"
return dc
}
// func (dc TableCell) getVerticalMergedProperty() string {
// return dc.verticalMerged
// }
// SetMarginLeft function sets this cell's left margin
func (dc *TableCell) SetMarginLeft(value int) *TableCell {
dc.marginLeft = value
return dc
}
// SetMarginRight function sets this cell's right margin
func (dc *TableCell) SetMarginRight(value int) *TableCell {
dc.marginRight = value
return dc
}
// SetMarginTop function sets this cell's top margin
func (dc *TableCell) SetMarginTop(value int) *TableCell {
dc.marginTop = value
return dc
}
// SetMarginBottom function sets this cell's bottom margin
func (dc *TableCell) SetMarginBottom(value int) *TableCell {
dc.marginBottom = value
return dc
}
// SetPaddingLeft function sets this cell's left padding
func (dc *TableCell) SetPaddingLeft(value int) *TableCell {
dc.paddingLeft = value
return dc
}
// SetPaddingRight function sets this cell's right padding
func (dc *TableCell) SetPaddingRight(value int) *TableCell {
dc.paddingRight = value
return dc
}
// SetPaddingTop function sets this cell's top padding
func (dc *TableCell) SetPaddingTop(value int) *TableCell {
dc.paddingTop = value
return dc
}
// SetPaddingBottom function sets this cell's bottom padding
func (dc *TableCell) SetPaddingBottom(value int) *TableCell {
dc.paddingBottom = value
return dc
}
// SetPadding - function sets all paddings to value
func (dc *TableCell) SetPadding(value int) *TableCell {
return dc.SetPaddingBottom(value).SetPaddingLeft(value).SetPaddingRight(value).SetPaddingTop(value)
}
// SetVAlign sets align
func (dc *TableCell) SetVAlign(valign string) *TableCell {
dc.vTextAlign = "t"
for _, i := range []string{VAlignBottom, VAlignMiddle, VAlignTop} {
if valign == i {
dc.vTextAlign = i
}
}
return dc
}
// SetBorderColor function sets cell's border color
func (dc *TableCell) SetBorderColor(color string) *TableCell {
dc.borderColor = color
return dc
}
// SetBackgroundColor function sets cell's background color
func (dc *TableCell) SetBackgroundColor(color string) *TableCell {
dc.backgroundColor = color
return dc
}