mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00
64 lines
1.4 KiB
Go
64 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 styles
|
||
|
|
||
|
import (
|
||
|
"baliance.com/gooxml/color"
|
||
|
sml "baliance.com/gooxml/schema/schemas.openxmlformats.org/spreadsheetml"
|
||
|
)
|
||
|
|
||
|
type Font struct {
|
||
|
font *sml.CT_Font
|
||
|
styles *sml.StyleSheet
|
||
|
}
|
||
|
|
||
|
func NewFont(font *sml.CT_Font, styles *sml.StyleSheet) Font {
|
||
|
return Font{font, styles}
|
||
|
}
|
||
|
|
||
|
func (f Font) X() *sml.CT_Font {
|
||
|
return f.font
|
||
|
}
|
||
|
func (f Font) Index() uint32 {
|
||
|
for i, sf := range f.styles.Fonts.Font {
|
||
|
if f.font == sf {
|
||
|
return uint32(i)
|
||
|
}
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (f Font) SetBold(b bool) {
|
||
|
if b {
|
||
|
f.font.B = []*sml.CT_BooleanProperty{{}}
|
||
|
} else {
|
||
|
f.font.B = nil
|
||
|
}
|
||
|
}
|
||
|
func (f Font) SetItalic(b bool) {
|
||
|
if b {
|
||
|
f.font.I = []*sml.CT_BooleanProperty{{}}
|
||
|
} else {
|
||
|
f.font.I = nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (f Font) SetName(name string) {
|
||
|
f.font.Name = []*sml.CT_FontName{{ValAttr: name}}
|
||
|
}
|
||
|
|
||
|
func (f Font) SetSize(size float64) {
|
||
|
f.font.Sz = []*sml.CT_FontSize{{ValAttr: size}}
|
||
|
}
|
||
|
|
||
|
func (f Font) SetColor(c color.Color) {
|
||
|
clr := sml.NewCT_Color()
|
||
|
clr.RgbAttr = c.AsRGBString()
|
||
|
f.font.Color = []*sml.CT_Color{clr}
|
||
|
}
|