-
Notifications
You must be signed in to change notification settings - Fork 42
/
div.go
408 lines (333 loc) · 9.36 KB
/
div.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
package gopdf
import (
"math"
"strings"
"github.com/tiechui1994/gopdf/core"
"github.com/tiechui1994/gopdf/util"
)
const (
DIV_STRAIGHT = 1 // 实线边框
DIV_DASHED = 2 // 虚线边框
DIV_DOTTED = 3 // 点状线的边框
DIV_NONE = 4 // 无边框
)
// 带有各种边框的内容, 可以自动换行
type Div struct {
pdf *core.Report
font core.Font
frameType int // 边框类型, 默认是无边框
contents []string
width, height float64
lineHeight float64
lineSpace float64
fontColor string // 字体颜色
backColor string // 背景颜色
margin core.Scope
border core.Scope
horizontalCentered bool // 水平居中
rightAlign bool // 局右显示, 默认是居左显示
}
func NewDiv(lineHeight, lineSpce float64, pdf *core.Report) *Div {
currX, _ := pdf.GetXY()
endX, _ := pdf.GetPageEndXY()
if endX-currX <= 0 {
panic("please modify current X")
}
f := &Div{
pdf: pdf,
frameType: DIV_NONE,
width: endX - currX,
height: lineHeight,
lineHeight: lineHeight,
lineSpace: lineSpce,
}
return f
}
func NewDivWithWidth(width float64, lineHeight, lineSpce float64, pdf *core.Report) *Div {
x, _ := pdf.GetXY()
endX, _ := pdf.GetPageEndXY()
if endX-x <= 0 {
panic("please modify current X")
}
if endX-x <= width {
width = endX - x
}
f := &Div{
pdf: pdf,
frameType: DIV_NONE,
width: width,
height: lineHeight,
lineHeight: lineHeight,
lineSpace: lineSpce,
}
return f
}
func (div *Div) Copy(content string) *Div {
f := &Div{
pdf: div.pdf,
frameType: div.frameType,
width: div.width,
lineHeight: div.lineHeight,
lineSpace: div.lineSpace,
fontColor: div.fontColor,
backColor: div.backColor,
}
f.SetMarign(div.margin)
f.SetBorder(div.border)
f.SetFont(div.font)
f.SetContent(content)
return f
}
func (div *Div) SetFrameType(frameType int) *Div {
if frameType < DIV_STRAIGHT || frameType > DIV_NONE {
return div
}
div.frameType = frameType
return div
}
func (div *Div) SetMarign(margin core.Scope) *Div {
margin.ReplaceMarign()
config := div.pdf.GetConfig()
_, height := config.GetWidthAndHeight()
x1, _ := config.GetStart()
x2, _ := config.GetEnd()
x, y := div.pdf.GetXY()
// X
if x+margin.Left > x2 || x+margin.Left < x1 {
return div
}
// Y
if y+margin.Top > height || y+margin.Top < 0 {
return div
}
// width
if x+margin.Left+div.border.Left+div.width+div.border.Right > x2 {
width := x2 - (x + margin.Left + div.border.Left + div.border.Right)
if width <= 0 {
return div
}
div.width = width
}
div.margin = margin
return div
}
func (div *Div) SetBorder(border core.Scope) *Div {
border.ReplaceBorder()
config := div.pdf.GetConfig()
x2, _ := config.GetEnd()
x, y := div.pdf.GetXY()
_, height := config.GetWidthAndHeight()
if y+div.margin.Top+border.Top+border.Bottom > height {
return div
}
// width
if x+div.margin.Left+border.Left+div.width+border.Right > x2 {
width := x2 - (x + div.margin.Left + border.Left + border.Right)
if width <= 0 {
return div
}
div.width = width
}
div.border = border
return div
}
func (div *Div) GetHeight() (height float64) {
return div.height
}
func (div *Div) GetWidth() (width float64) {
return div.width
}
func (div *Div) HorizontalCentered() *Div {
div.horizontalCentered = true
div.rightAlign = false
return div
}
func (div *Div) RightAlign() *Div {
div.rightAlign = true
div.horizontalCentered = false
return div
}
func (div *Div) SetFontColor(color string) *Div {
util.CheckColor(color)
div.fontColor = color
return div
}
func (div *Div) SetBackColor(color string) *Div {
util.CheckColor(color)
div.backColor = color
return div
}
func (div *Div) SetFont(font core.Font) *Div {
div.font = font
// 注册, 启动
div.pdf.Font(font.Family, font.Size, font.Style)
div.pdf.SetFontWithStyle(font.Family, font.Style, font.Size)
return div
}
func (div *Div) SetFontWithColor(font core.Font, color string) *Div {
div.SetFont(font)
div.SetFontColor(color)
return div
}
func (div *Div) SetContent(content string) *Div {
convertStr := strings.Replace(content, "\t", " ", -1)
var (
blocks = strings.Split(convertStr, "\n") // 分行
contentWidth = div.width
)
// 必须检查字体
if util.IsEmpty(div.font) {
panic("there no avliable font")
}
// 必须先进行注册, 才能设置
div.pdf.Font(div.font.Family, div.font.Size, div.font.Style)
div.pdf.SetFontWithStyle(div.font.Family, div.font.Style, div.font.Size)
if len(blocks) == 1 {
if div.pdf.MeasureTextWidth(convertStr) < contentWidth {
div.contents = []string{convertStr}
div.height = math.Abs(div.border.Top) + math.Abs(div.border.Bottom) + div.lineHeight
return div
}
}
for i := range blocks {
// 单独的一行
if div.pdf.MeasureTextWidth(convertStr) < contentWidth {
div.contents = append(div.contents, blocks[i])
continue
}
var (
line []rune
)
// 单独的一行需要拆分
for _, r := range []rune(blocks[i]) {
line = append(line, r)
lineLength := div.pdf.MeasureTextWidth(string(line))
if lineLength >= contentWidth {
if lineLength-contentWidth > 2 {
div.contents = append(div.contents, string(line[0:len(line)-1]))
line = line[len(line)-1:]
} else {
div.contents = append(div.contents, string(line))
line = []rune{}
}
}
}
// 剩余单独成行
if len(line) > 0 {
div.contents = append(div.contents, string(line))
}
}
// 重新计算 div 的高度
length := float64(len(div.contents))
div.height = div.border.Top + div.lineHeight*length + div.lineSpace*(length-1)
return div
}
// 自动分页
func (div *Div) GenerateAtomicCell() error {
var (
sx, sy = div.pdf.GetXY()
x, y float64
border core.Scope
_, pageEndY = div.pdf.GetPageEndXY()
)
if util.IsEmpty(div.font) {
panic("no font")
}
switch div.frameType {
case DIV_STRAIGHT:
div.pdf.LineType("straight", 0.01)
case DIV_DASHED:
div.pdf.LineType("dashed", 0.01)
case DIV_DOTTED:
div.pdf.LineType("dotted", 0.01)
}
div.drawLine(sx, sy)
div.pdf.Font(div.font.Family, div.font.Size, div.font.Style)
div.pdf.SetFontWithStyle(div.font.Family, div.font.Style, div.font.Size)
border = div.border
for i := 0; i < len(div.contents); i++ {
// 水平居中, 只是对当前的行设置新的 Border
if div.horizontalCentered {
width := div.pdf.MeasureTextWidth(div.contents[i])
if width < div.width {
left := (div.width - width) / 2
div.border = core.NewScope(left, border.Top, 0, border.Right)
}
}
// 水平居右, 只是对当前的行设置新的 Border
if div.rightAlign {
width := div.pdf.MeasureTextWidth(div.contents[i])
left := div.width - width
div.border = core.NewScope(left, border.Top, 0, border.Right)
}
x, y = div.getContentPosition(sx, sy, i)
// 换页
if y+div.lineHeight > pageEndY {
var newX, newY float64
div.margin = core.NewScope(div.margin.Left, 0, 0, 0)
div.border = core.NewScope(border.Left, div.lineHeight, border.Right, border.Bottom)
div.contents = div.contents[i:]
div.resetHeight()
newX, newY = div.pdf.GetPageStartXY()
div.pdf.AddNewPage(false)
div.pdf.SetXY(newX, newY)
return div.GenerateAtomicCell()
}
if !util.IsEmpty(div.fontColor) {
div.pdf.TextColor(util.RGB(div.fontColor))
}
div.pdf.Font(div.font.Family, div.font.Size, div.font.Style) // 添加设置
div.pdf.Cell(x, y, div.contents[i])
if !util.IsEmpty(div.fontColor) {
div.pdf.TextDefaultColor()
}
}
x, _ = div.pdf.GetPageStartXY()
div.pdf.SetXY(x, y+div.lineHeight+div.margin.Bottom) // 定格最终的位置
return nil
}
func (div *Div) drawLine(sx, sy float64) {
var (
x, y float64
_, pageEndY = div.pdf.GetPageEndXY()
)
if sy+div.height > pageEndY {
x, y = sx+div.margin.Left, sy+div.margin.Top
if !util.IsEmpty(div.backColor) {
div.pdf.BackgroundColor(x, y, div.width, pageEndY-y, div.backColor, "0000")
}
y = sy + div.margin.Top
// 两条竖线 + 一条横线
if div.frameType != DIV_NONE {
div.pdf.LineV(sx+div.margin.Left, y, pageEndY)
div.pdf.LineV(sx+div.margin.Left+div.border.Left+div.width+div.border.Right, y, pageEndY)
div.pdf.LineH(sx+div.margin.Left, y, sx+div.margin.Left+div.border.Left+div.width+div.border.Right)
div.pdf.LineH(sx+div.margin.Left, pageEndY, sx+div.margin.Left+div.border.Left+div.width+div.border.Right)
}
} else {
x, y = sx+div.margin.Left, sy+div.margin.Top
if !util.IsEmpty(div.backColor) {
div.pdf.BackgroundColor(x, y, div.width, div.height, div.backColor, "0000")
}
// 两条竖线 + 一条横线
if div.frameType != DIV_NONE {
div.pdf.LineV(sx+div.margin.Left, y, y+div.height)
div.pdf.LineV(sx+div.margin.Left+div.border.Left+div.width+div.border.Right, y, y+div.height)
div.pdf.LineH(sx+div.margin.Left, y, sx+div.margin.Left+div.border.Left+div.width+div.border.Right)
div.pdf.LineH(sx+div.margin.Left, y+div.height, sx+div.margin.Left+div.border.Left+div.width+div.border.Right)
}
}
}
func (div *Div) resetHeight() {
if len(div.contents) == 0 {
div.height = 0
}
length := float64(len(div.contents))
div.height = div.lineHeight*length + div.lineSpace*(length-1) + div.border.Top + div.border.Bottom
}
func (div *Div) getContentPosition(sx, sy float64, index int) (x, y float64) {
x = sx + div.margin.Left + div.border.Left
y = sy + div.margin.Top + div.border.Top
y += float64(index) * (div.lineHeight + div.lineSpace)
return x, y
}