mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00

This caused problems with Libre. This reverts commit 59b2711e1b87be534c9cd3d155710d13cfe7743b.
114 lines
2.9 KiB
Go
114 lines
2.9 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 presentationml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"log"
|
|
|
|
"baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml"
|
|
)
|
|
|
|
type CT_Background struct {
|
|
// Black and White Mode
|
|
BwModeAttr drawingml.ST_BlackWhiteMode
|
|
// Background Properties
|
|
BgPr *CT_BackgroundProperties
|
|
// Background Style Reference
|
|
BgRef *drawingml.CT_StyleMatrixReference
|
|
}
|
|
|
|
func NewCT_Background() *CT_Background {
|
|
ret := &CT_Background{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_Background) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m.BwModeAttr != drawingml.ST_BlackWhiteModeUnset {
|
|
attr, err := m.BwModeAttr.MarshalXMLAttr(xml.Name{Local: "bwMode"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
start.Attr = append(start.Attr, attr)
|
|
}
|
|
e.EncodeToken(start)
|
|
if m.BgPr != nil {
|
|
sebgPr := xml.StartElement{Name: xml.Name{Local: "p:bgPr"}}
|
|
e.EncodeElement(m.BgPr, sebgPr)
|
|
}
|
|
if m.BgRef != nil {
|
|
sebgRef := xml.StartElement{Name: xml.Name{Local: "p:bgRef"}}
|
|
e.EncodeElement(m.BgRef, sebgRef)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_Background) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
for _, attr := range start.Attr {
|
|
if attr.Name.Local == "bwMode" {
|
|
m.BwModeAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
}
|
|
lCT_Background:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "bgPr":
|
|
m.BgPr = NewCT_BackgroundProperties()
|
|
if err := d.DecodeElement(m.BgPr, &el); err != nil {
|
|
return err
|
|
}
|
|
case "bgRef":
|
|
m.BgRef = drawingml.NewCT_StyleMatrixReference()
|
|
if err := d.DecodeElement(m.BgRef, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on CT_Background %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_Background
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_Background and its children
|
|
func (m *CT_Background) Validate() error {
|
|
return m.ValidateWithPath("CT_Background")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_Background and its children, prefixing error messages with path
|
|
func (m *CT_Background) ValidateWithPath(path string) error {
|
|
if err := m.BwModeAttr.ValidateWithPath(path + "/BwModeAttr"); err != nil {
|
|
return err
|
|
}
|
|
if m.BgPr != nil {
|
|
if err := m.BgPr.ValidateWithPath(path + "/BgPr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.BgRef != nil {
|
|
if err := m.BgRef.ValidateWithPath(path + "/BgRef"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|