mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00
133 lines
3.6 KiB
Go
133 lines
3.6 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_Picture struct {
|
|
// Non-Visual Properties for a Picture
|
|
NvPicPr *CT_PictureNonVisual
|
|
// Picture Fill
|
|
BlipFill *drawingml.CT_BlipFillProperties
|
|
SpPr *drawingml.CT_ShapeProperties
|
|
Style *drawingml.CT_ShapeStyle
|
|
ExtLst *CT_ExtensionListModify
|
|
}
|
|
|
|
func NewCT_Picture() *CT_Picture {
|
|
ret := &CT_Picture{}
|
|
ret.NvPicPr = NewCT_PictureNonVisual()
|
|
ret.BlipFill = drawingml.NewCT_BlipFillProperties()
|
|
ret.SpPr = drawingml.NewCT_ShapeProperties()
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_Picture) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
senvPicPr := xml.StartElement{Name: xml.Name{Local: "p:nvPicPr"}}
|
|
e.EncodeElement(m.NvPicPr, senvPicPr)
|
|
seblipFill := xml.StartElement{Name: xml.Name{Local: "p:blipFill"}}
|
|
e.EncodeElement(m.BlipFill, seblipFill)
|
|
sespPr := xml.StartElement{Name: xml.Name{Local: "p:spPr"}}
|
|
e.EncodeElement(m.SpPr, sespPr)
|
|
if m.Style != nil {
|
|
sestyle := xml.StartElement{Name: xml.Name{Local: "p:style"}}
|
|
e.EncodeElement(m.Style, sestyle)
|
|
}
|
|
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_Picture) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
m.NvPicPr = NewCT_PictureNonVisual()
|
|
m.BlipFill = drawingml.NewCT_BlipFillProperties()
|
|
m.SpPr = drawingml.NewCT_ShapeProperties()
|
|
lCT_Picture:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "nvPicPr":
|
|
if err := d.DecodeElement(m.NvPicPr, &el); err != nil {
|
|
return err
|
|
}
|
|
case "blipFill":
|
|
if err := d.DecodeElement(m.BlipFill, &el); err != nil {
|
|
return err
|
|
}
|
|
case "spPr":
|
|
if err := d.DecodeElement(m.SpPr, &el); err != nil {
|
|
return err
|
|
}
|
|
case "style":
|
|
m.Style = drawingml.NewCT_ShapeStyle()
|
|
if err := d.DecodeElement(m.Style, &el); err != nil {
|
|
return err
|
|
}
|
|
case "extLst":
|
|
m.ExtLst = NewCT_ExtensionListModify()
|
|
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on CT_Picture %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_Picture
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_Picture and its children
|
|
func (m *CT_Picture) Validate() error {
|
|
return m.ValidateWithPath("CT_Picture")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_Picture and its children, prefixing error messages with path
|
|
func (m *CT_Picture) ValidateWithPath(path string) error {
|
|
if err := m.NvPicPr.ValidateWithPath(path + "/NvPicPr"); err != nil {
|
|
return err
|
|
}
|
|
if err := m.BlipFill.ValidateWithPath(path + "/BlipFill"); err != nil {
|
|
return err
|
|
}
|
|
if err := m.SpPr.ValidateWithPath(path + "/SpPr"); err != nil {
|
|
return err
|
|
}
|
|
if m.Style != nil {
|
|
if err := m.Style.ValidateWithPath(path + "/Style"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.ExtLst != nil {
|
|
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|