unioffice/spreadsheet/patternfill.go
2017-09-23 10:01:17 -04:00

53 lines
1.4 KiB
Go

// 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()
}