mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-02 22:17:07 +08:00
117 lines
3.2 KiB
Go
117 lines
3.2 KiB
Go
// Copyright 2017 Baliance. All rights reserved.
|
|
//
|
|
// DO NOT EDIT: generated by gooxml ECMA-376 generator
|
|
//
|
|
// 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 wml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
"log"
|
|
)
|
|
|
|
type CT_Styles struct {
|
|
// Document Default Paragraph and Run Properties
|
|
DocDefaults *CT_DocDefaults
|
|
// Latent Style Information
|
|
LatentStyles *CT_LatentStyles
|
|
// Style Definition
|
|
Style []*CT_Style
|
|
}
|
|
|
|
func NewCT_Styles() *CT_Styles {
|
|
ret := &CT_Styles{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_Styles) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
if m.DocDefaults != nil {
|
|
sedocDefaults := xml.StartElement{Name: xml.Name{Local: "w:docDefaults"}}
|
|
e.EncodeElement(m.DocDefaults, sedocDefaults)
|
|
}
|
|
if m.LatentStyles != nil {
|
|
selatentStyles := xml.StartElement{Name: xml.Name{Local: "w:latentStyles"}}
|
|
e.EncodeElement(m.LatentStyles, selatentStyles)
|
|
}
|
|
if m.Style != nil {
|
|
sestyle := xml.StartElement{Name: xml.Name{Local: "w:style"}}
|
|
for _, c := range m.Style {
|
|
e.EncodeElement(c, sestyle)
|
|
}
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_Styles) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lCT_Styles:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name {
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "docDefaults"}:
|
|
m.DocDefaults = NewCT_DocDefaults()
|
|
if err := d.DecodeElement(m.DocDefaults, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "latentStyles"}:
|
|
m.LatentStyles = NewCT_LatentStyles()
|
|
if err := d.DecodeElement(m.LatentStyles, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "style"}:
|
|
tmp := NewCT_Style()
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
return err
|
|
}
|
|
m.Style = append(m.Style, tmp)
|
|
default:
|
|
log.Printf("skipping unsupported element on CT_Styles %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_Styles
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_Styles and its children
|
|
func (m *CT_Styles) Validate() error {
|
|
return m.ValidateWithPath("CT_Styles")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_Styles and its children, prefixing error messages with path
|
|
func (m *CT_Styles) ValidateWithPath(path string) error {
|
|
if m.DocDefaults != nil {
|
|
if err := m.DocDefaults.ValidateWithPath(path + "/DocDefaults"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.LatentStyles != nil {
|
|
if err := m.LatentStyles.ValidateWithPath(path + "/LatentStyles"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for i, v := range m.Style {
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/Style[%d]", path, i)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|