2017-08-28 20:56:18 -05:00
|
|
|
// Copyright 2017 Baliance. All rights reserved.
|
|
|
|
//
|
2017-09-09 10:21:47 -05:00
|
|
|
// DO NOT EDIT: generated by gooxml ECMA-376 generator
|
|
|
|
//
|
2017-08-28 20:56:18 -05:00
|
|
|
// 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.
|
|
|
|
|
2017-09-23 08:39:08 -05:00
|
|
|
package dml
|
2017-08-28 20:56:18 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
2017-09-29 20:52:19 -05:00
|
|
|
|
|
|
|
"baliance.com/gooxml"
|
2017-08-28 20:56:18 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type CT_EffectStyleItem struct {
|
|
|
|
EffectLst *CT_EffectList
|
|
|
|
EffectDag *CT_EffectContainer
|
|
|
|
Scene3d *CT_Scene3D
|
|
|
|
Sp3d *CT_Shape3D
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCT_EffectStyleItem() *CT_EffectStyleItem {
|
|
|
|
ret := &CT_EffectStyleItem{}
|
|
|
|
return ret
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_EffectStyleItem) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
|
|
e.EncodeToken(start)
|
|
|
|
if m.EffectLst != nil {
|
|
|
|
seeffectLst := xml.StartElement{Name: xml.Name{Local: "a:effectLst"}}
|
|
|
|
e.EncodeElement(m.EffectLst, seeffectLst)
|
|
|
|
}
|
|
|
|
if m.EffectDag != nil {
|
|
|
|
seeffectDag := xml.StartElement{Name: xml.Name{Local: "a:effectDag"}}
|
|
|
|
e.EncodeElement(m.EffectDag, seeffectDag)
|
|
|
|
}
|
|
|
|
if m.Scene3d != nil {
|
|
|
|
sescene3d := xml.StartElement{Name: xml.Name{Local: "a:scene3d"}}
|
|
|
|
e.EncodeElement(m.Scene3d, sescene3d)
|
|
|
|
}
|
|
|
|
if m.Sp3d != nil {
|
|
|
|
sesp3d := xml.StartElement{Name: xml.Name{Local: "a:sp3d"}}
|
|
|
|
e.EncodeElement(m.Sp3d, sesp3d)
|
|
|
|
}
|
|
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_EffectStyleItem) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
|
|
// initialize to default
|
|
|
|
lCT_EffectStyleItem:
|
|
|
|
for {
|
|
|
|
tok, err := d.Token()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch el := tok.(type) {
|
|
|
|
case xml.StartElement:
|
2017-09-10 10:02:39 -05:00
|
|
|
switch el.Name {
|
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "effectLst"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
m.EffectLst = NewCT_EffectList()
|
|
|
|
if err := d.DecodeElement(m.EffectLst, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "effectDag"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
m.EffectDag = NewCT_EffectContainer()
|
|
|
|
if err := d.DecodeElement(m.EffectDag, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "scene3d"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
m.Scene3d = NewCT_Scene3D()
|
|
|
|
if err := d.DecodeElement(m.Scene3d, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "sp3d"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
m.Sp3d = NewCT_Shape3D()
|
|
|
|
if err := d.DecodeElement(m.Sp3d, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
default:
|
2017-09-29 20:52:19 -05:00
|
|
|
gooxml.Log("skipping unsupported element on CT_EffectStyleItem %v", el.Name)
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.Skip(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case xml.EndElement:
|
|
|
|
break lCT_EffectStyleItem
|
|
|
|
case xml.CharData:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// Validate validates the CT_EffectStyleItem and its children
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_EffectStyleItem) Validate() error {
|
|
|
|
return m.ValidateWithPath("CT_EffectStyleItem")
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// ValidateWithPath validates the CT_EffectStyleItem and its children, prefixing error messages with path
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_EffectStyleItem) ValidateWithPath(path string) error {
|
|
|
|
if m.EffectLst != nil {
|
|
|
|
if err := m.EffectLst.ValidateWithPath(path + "/EffectLst"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.EffectDag != nil {
|
|
|
|
if err := m.EffectDag.ValidateWithPath(path + "/EffectDag"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.Scene3d != nil {
|
|
|
|
if err := m.Scene3d.ValidateWithPath(path + "/Scene3d"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.Sp3d != nil {
|
|
|
|
if err := m.Sp3d.ValidateWithPath(path + "/Sp3d"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|