mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00
212 lines
5.5 KiB
Go
212 lines
5.5 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 wordprocessingml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"baliance.com/gooxml/schema/schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
|
)
|
|
|
|
type CT_PageBorder struct {
|
|
IdAttr *string
|
|
// Border Style
|
|
ValAttr ST_Border
|
|
// Border Color
|
|
ColorAttr *ST_HexColor
|
|
// Border Theme Color
|
|
ThemeColorAttr ST_ThemeColor
|
|
// Border Theme Color Tint
|
|
ThemeTintAttr *string
|
|
// Border Theme Color Shade
|
|
ThemeShadeAttr *string
|
|
// Border Width
|
|
SzAttr *uint64
|
|
// Border Spacing Measurement
|
|
SpaceAttr *uint64
|
|
// Border Shadow
|
|
ShadowAttr *sharedTypes.ST_OnOff
|
|
// Create Frame Effect
|
|
FrameAttr *sharedTypes.ST_OnOff
|
|
}
|
|
|
|
func NewCT_PageBorder() *CT_PageBorder {
|
|
ret := &CT_PageBorder{}
|
|
ret.ValAttr = ST_Border(1)
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_PageBorder) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
if m.IdAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "r:id"},
|
|
Value: fmt.Sprintf("%v", *m.IdAttr)})
|
|
}
|
|
attr, err := m.ValAttr.MarshalXMLAttr(xml.Name{Local: "w:val"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
start.Attr = append(start.Attr, attr)
|
|
if m.ColorAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:color"},
|
|
Value: fmt.Sprintf("%v", *m.ColorAttr)})
|
|
}
|
|
if m.ThemeColorAttr != ST_ThemeColorUnset {
|
|
attr, err := m.ThemeColorAttr.MarshalXMLAttr(xml.Name{Local: "w:themeColor"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
start.Attr = append(start.Attr, attr)
|
|
}
|
|
if m.ThemeTintAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:themeTint"},
|
|
Value: fmt.Sprintf("%v", *m.ThemeTintAttr)})
|
|
}
|
|
if m.ThemeShadeAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:themeShade"},
|
|
Value: fmt.Sprintf("%v", *m.ThemeShadeAttr)})
|
|
}
|
|
if m.SzAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:sz"},
|
|
Value: fmt.Sprintf("%v", *m.SzAttr)})
|
|
}
|
|
if m.SpaceAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:space"},
|
|
Value: fmt.Sprintf("%v", *m.SpaceAttr)})
|
|
}
|
|
if m.ShadowAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:shadow"},
|
|
Value: fmt.Sprintf("%v", *m.ShadowAttr)})
|
|
}
|
|
if m.FrameAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:frame"},
|
|
Value: fmt.Sprintf("%v", *m.FrameAttr)})
|
|
}
|
|
e.EncodeToken(start)
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_PageBorder) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
m.ValAttr = ST_Border(1)
|
|
for _, attr := range start.Attr {
|
|
if attr.Name.Local == "id" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.IdAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "val" {
|
|
m.ValAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "color" {
|
|
parsed, err := ParseUnionST_HexColor(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.ColorAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "themeColor" {
|
|
m.ThemeColorAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "themeTint" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.ThemeTintAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "themeShade" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.ThemeShadeAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "sz" {
|
|
parsed, err := strconv.ParseUint(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.SzAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "space" {
|
|
parsed, err := strconv.ParseUint(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.SpaceAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "shadow" {
|
|
parsed, err := ParseUnionST_OnOff(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.ShadowAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "frame" {
|
|
parsed, err := ParseUnionST_OnOff(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.FrameAttr = &parsed
|
|
}
|
|
}
|
|
// skip any extensions we may find, but don't support
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return fmt.Errorf("parsing CT_PageBorder: %s", err)
|
|
}
|
|
if el, ok := tok.(xml.EndElement); ok && el.Name == start.Name {
|
|
break
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_PageBorder and its children
|
|
func (m *CT_PageBorder) Validate() error {
|
|
return m.ValidateWithPath("CT_PageBorder")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_PageBorder and its children, prefixing error messages with path
|
|
func (m *CT_PageBorder) ValidateWithPath(path string) error {
|
|
if m.ValAttr == ST_BorderUnset {
|
|
return fmt.Errorf("%s/ValAttr is a mandatory field", path)
|
|
}
|
|
if err := m.ValAttr.ValidateWithPath(path + "/ValAttr"); err != nil {
|
|
return err
|
|
}
|
|
if m.ColorAttr != nil {
|
|
if err := m.ColorAttr.ValidateWithPath(path + "/ColorAttr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if err := m.ThemeColorAttr.ValidateWithPath(path + "/ThemeColorAttr"); err != nil {
|
|
return err
|
|
}
|
|
if m.ShadowAttr != nil {
|
|
if err := m.ShadowAttr.ValidateWithPath(path + "/ShadowAttr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.FrameAttr != nil {
|
|
if err := m.FrameAttr.ValidateWithPath(path + "/FrameAttr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|