mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-14 19:29:48 +08:00
126 lines
3.8 KiB
Go
126 lines
3.8 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 chart
|
|
|
|
import (
|
|
"encoding/xml"
|
|
|
|
"baliance.com/gooxml"
|
|
)
|
|
|
|
type CT_PrintSettings struct {
|
|
HeaderFooter *CT_HeaderFooter
|
|
PageMargins *CT_PageMargins
|
|
PageSetup *CT_PageSetup
|
|
LegacyDrawingHF *CT_RelId
|
|
}
|
|
|
|
func NewCT_PrintSettings() *CT_PrintSettings {
|
|
ret := &CT_PrintSettings{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_PrintSettings) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
if m.HeaderFooter != nil {
|
|
seheaderFooter := xml.StartElement{Name: xml.Name{Local: "c:headerFooter"}}
|
|
e.EncodeElement(m.HeaderFooter, seheaderFooter)
|
|
}
|
|
if m.PageMargins != nil {
|
|
sepageMargins := xml.StartElement{Name: xml.Name{Local: "c:pageMargins"}}
|
|
e.EncodeElement(m.PageMargins, sepageMargins)
|
|
}
|
|
if m.PageSetup != nil {
|
|
sepageSetup := xml.StartElement{Name: xml.Name{Local: "c:pageSetup"}}
|
|
e.EncodeElement(m.PageSetup, sepageSetup)
|
|
}
|
|
if m.LegacyDrawingHF != nil {
|
|
selegacyDrawingHF := xml.StartElement{Name: xml.Name{Local: "c:legacyDrawingHF"}}
|
|
e.EncodeElement(m.LegacyDrawingHF, selegacyDrawingHF)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_PrintSettings) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lCT_PrintSettings:
|
|
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/drawingml/2006/chart", Local: "headerFooter"}:
|
|
m.HeaderFooter = NewCT_HeaderFooter()
|
|
if err := d.DecodeElement(m.HeaderFooter, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "pageMargins"}:
|
|
m.PageMargins = NewCT_PageMargins()
|
|
if err := d.DecodeElement(m.PageMargins, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "pageSetup"}:
|
|
m.PageSetup = NewCT_PageSetup()
|
|
if err := d.DecodeElement(m.PageSetup, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "legacyDrawingHF"}:
|
|
m.LegacyDrawingHF = NewCT_RelId()
|
|
if err := d.DecodeElement(m.LegacyDrawingHF, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
gooxml.Log("skipping unsupported element on CT_PrintSettings %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_PrintSettings
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_PrintSettings and its children
|
|
func (m *CT_PrintSettings) Validate() error {
|
|
return m.ValidateWithPath("CT_PrintSettings")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_PrintSettings and its children, prefixing error messages with path
|
|
func (m *CT_PrintSettings) ValidateWithPath(path string) error {
|
|
if m.HeaderFooter != nil {
|
|
if err := m.HeaderFooter.ValidateWithPath(path + "/HeaderFooter"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.PageMargins != nil {
|
|
if err := m.PageMargins.ValidateWithPath(path + "/PageMargins"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.PageSetup != nil {
|
|
if err := m.PageSetup.ValidateWithPath(path + "/PageSetup"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.LegacyDrawingHF != nil {
|
|
if err := m.LegacyDrawingHF.ValidateWithPath(path + "/LegacyDrawingHF"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|