forked from unidoc/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
patternfill.go
52 lines (43 loc) · 1.37 KB
/
patternfill.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
// Copyright 2017 Baliance. All rights reserved.
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased by contacting sales@baliance.com.
package spreadsheet
import (
"baliance.com/gooxml/color"
"baliance.com/gooxml/schema/soo/sml"
)
type PatternFill struct {
x *sml.CT_PatternFill
f *sml.CT_Fill
}
func NewPatternFill(fills *sml.CT_Fills) PatternFill {
x := sml.NewCT_Fill()
x.PatternFill = sml.NewCT_PatternFill()
return PatternFill{x.PatternFill, x}
}
func (f PatternFill) X() *sml.CT_PatternFill {
return f.x
}
// SetPattern sets the pattern of the fill.
func (f PatternFill) SetPattern(p sml.ST_PatternType) {
f.x.PatternTypeAttr = p
}
func (f PatternFill) ClearBgColor() {
f.x.BgColor = nil
}
func (f PatternFill) SetBgColor(c color.Color) {
f.x.BgColor = sml.NewCT_Color()
f.x.BgColor.RgbAttr = c.AsRGBAString()
}
func (f PatternFill) ClearFgColor() {
f.x.FgColor = nil
}
// SetFgColor sets the *fill* foreground color. As an example, the solid pattern foreground color becomes the
// background color of the cell when applied.
func (f PatternFill) SetFgColor(c color.Color) {
f.x.FgColor = sml.NewCT_Color()
f.x.FgColor.RgbAttr = c.AsRGBAString()
}