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

This caused problems with Libre. This reverts commit 59b2711e1b87be534c9cd3d155710d13cfe7743b.
95 lines
2.5 KiB
Go
95 lines
2.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 presentationml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"log"
|
|
)
|
|
|
|
type CT_OleObjectEmbed struct {
|
|
// Color Scheme Properties for Embedded object
|
|
FollowColorSchemeAttr ST_OleObjectFollowColorScheme
|
|
ExtLst *CT_ExtensionList
|
|
}
|
|
|
|
func NewCT_OleObjectEmbed() *CT_OleObjectEmbed {
|
|
ret := &CT_OleObjectEmbed{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_OleObjectEmbed) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m.FollowColorSchemeAttr != ST_OleObjectFollowColorSchemeUnset {
|
|
attr, err := m.FollowColorSchemeAttr.MarshalXMLAttr(xml.Name{Local: "followColorScheme"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
start.Attr = append(start.Attr, attr)
|
|
}
|
|
e.EncodeToken(start)
|
|
if m.ExtLst != nil {
|
|
seextLst := xml.StartElement{Name: xml.Name{Local: "p:extLst"}}
|
|
e.EncodeElement(m.ExtLst, seextLst)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_OleObjectEmbed) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
for _, attr := range start.Attr {
|
|
if attr.Name.Local == "followColorScheme" {
|
|
m.FollowColorSchemeAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
}
|
|
lCT_OleObjectEmbed:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "extLst":
|
|
m.ExtLst = NewCT_ExtensionList()
|
|
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on CT_OleObjectEmbed %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_OleObjectEmbed
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_OleObjectEmbed and its children
|
|
func (m *CT_OleObjectEmbed) Validate() error {
|
|
return m.ValidateWithPath("CT_OleObjectEmbed")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_OleObjectEmbed and its children, prefixing error messages with path
|
|
func (m *CT_OleObjectEmbed) ValidateWithPath(path string) error {
|
|
if err := m.FollowColorSchemeAttr.ValidateWithPath(path + "/FollowColorSchemeAttr"); err != nil {
|
|
return err
|
|
}
|
|
if m.ExtLst != nil {
|
|
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|