mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00

- support character spacing and kerning in run style - support contextual spacing in paragraph style - add title style to new documents - fix en-us -> en-US typo
131 lines
3.2 KiB
Go
131 lines
3.2 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 document
|
|
|
|
import (
|
|
"baliance.com/gooxml"
|
|
"baliance.com/gooxml/measurement"
|
|
wml "baliance.com/gooxml/schema/schemas.openxmlformats.org/wordprocessingml"
|
|
)
|
|
|
|
// RunStyleProperties controls run styling properties
|
|
type RunStyleProperties struct {
|
|
x *wml.CT_RPr
|
|
}
|
|
|
|
// X returns the inner wrapped XML type.
|
|
func (r RunStyleProperties) X() *wml.CT_RPr {
|
|
return r.x
|
|
}
|
|
|
|
// SetSize sets the font size for a run.
|
|
func (r RunStyleProperties) SetSize(size measurement.Distance) {
|
|
var sz *wml.CT_HpsMeasure
|
|
var szCs *wml.CT_HpsMeasure
|
|
|
|
for _, b := range r.x.EG_RPrBase {
|
|
if b.Sz != nil {
|
|
sz = b.Sz
|
|
}
|
|
if b.SzCs != nil {
|
|
szCs = b.SzCs
|
|
}
|
|
}
|
|
if sz == nil {
|
|
b := wml.NewEG_RPrBase()
|
|
b.Sz = wml.NewCT_HpsMeasure()
|
|
sz = b.Sz
|
|
if szCs == nil {
|
|
b.SzCs = wml.NewCT_HpsMeasure()
|
|
szCs = b.SzCs
|
|
}
|
|
r.x.EG_RPrBase = append(r.x.EG_RPrBase, b)
|
|
}
|
|
if szCs == nil {
|
|
b := wml.NewEG_RPrBase()
|
|
b.SzCs = wml.NewCT_HpsMeasure()
|
|
szCs = b.SzCs
|
|
r.x.EG_RPrBase = append(r.x.EG_RPrBase, b)
|
|
}
|
|
|
|
sz.ValAttr.ST_UnsignedDecimalNumber = gooxml.Uint64(uint64(size / measurement.HalfPoint))
|
|
szCs.ValAttr.ST_UnsignedDecimalNumber = gooxml.Uint64(uint64(size / measurement.HalfPoint))
|
|
}
|
|
|
|
// SetKerning sets the run's font kerning.
|
|
func (r RunStyleProperties) SetKerning(size measurement.Distance) {
|
|
var kern *wml.CT_HpsMeasure
|
|
for _, b := range r.x.EG_RPrBase {
|
|
if b.Kern != nil {
|
|
kern = b.Kern
|
|
}
|
|
}
|
|
if kern == nil {
|
|
b := wml.NewEG_RPrBase()
|
|
b.Kern = wml.NewCT_HpsMeasure()
|
|
kern = b.Kern
|
|
r.x.EG_RPrBase = append(r.x.EG_RPrBase, b)
|
|
}
|
|
kern.ValAttr.ST_UnsignedDecimalNumber = gooxml.Uint64(uint64(size / measurement.HalfPoint))
|
|
}
|
|
|
|
// SetCharacterSpacing sets the run's Character Spacing Adjustment.
|
|
func (r RunStyleProperties) SetCharacterSpacing(size measurement.Distance) {
|
|
var spacing *wml.CT_SignedTwipsMeasure
|
|
for _, b := range r.x.EG_RPrBase {
|
|
if b.Spacing != nil {
|
|
spacing = b.Spacing
|
|
}
|
|
}
|
|
if spacing == nil {
|
|
b := wml.NewEG_RPrBase()
|
|
b.Spacing = wml.NewCT_SignedTwipsMeasure()
|
|
spacing = b.Spacing
|
|
r.x.EG_RPrBase = append(r.x.EG_RPrBase, b)
|
|
}
|
|
spacing.ValAttr.Int64 = gooxml.Int64(int64(size / measurement.Twips))
|
|
}
|
|
|
|
// Fonts returns the style's Fonts.
|
|
func (r RunStyleProperties) Fonts() Fonts {
|
|
var ctf *wml.CT_Fonts
|
|
for _, b := range r.x.EG_RPrBase {
|
|
if b.RFonts != nil {
|
|
ctf = b.RFonts
|
|
break
|
|
}
|
|
}
|
|
if ctf == nil {
|
|
ctf = wml.NewCT_Fonts()
|
|
|
|
b := wml.NewEG_RPrBase()
|
|
b.RFonts = ctf
|
|
r.x.EG_RPrBase = append(r.x.EG_RPrBase, b)
|
|
}
|
|
return Fonts{ctf}
|
|
}
|
|
|
|
// Color returns the style's Color.
|
|
func (r RunStyleProperties) Color() Color {
|
|
var ctc *wml.CT_Color
|
|
for _, b := range r.x.EG_RPrBase {
|
|
if b.Color != nil {
|
|
ctc = b.Color
|
|
break
|
|
}
|
|
}
|
|
if ctc == nil {
|
|
ctc = wml.NewCT_Color()
|
|
|
|
b := wml.NewEG_RPrBase()
|
|
b.Color = ctc
|
|
r.x.EG_RPrBase = append(r.x.EG_RPrBase, b)
|
|
}
|
|
return Color{ctc}
|
|
}
|