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-10 10:02:39 -05:00
|
|
|
package wordprocessingml
|
2017-08-28 20:56:18 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml/2006/picture"
|
|
|
|
)
|
|
|
|
|
2017-09-10 10:02:39 -05:00
|
|
|
type WdCT_WordprocessingCanvasChoice struct {
|
|
|
|
Wsp []*WdWsp
|
2017-08-28 20:56:18 -05:00
|
|
|
Pic []*picture.Pic
|
2017-09-10 10:02:39 -05:00
|
|
|
ContentPart []*WdCT_WordprocessingContentPart
|
|
|
|
Wgp []*WdWgp
|
|
|
|
GraphicFrame []*WdCT_GraphicFrame
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
|
2017-09-10 10:02:39 -05:00
|
|
|
func NewWdCT_WordprocessingCanvasChoice() *WdCT_WordprocessingCanvasChoice {
|
|
|
|
ret := &WdCT_WordprocessingCanvasChoice{}
|
2017-08-28 20:56:18 -05:00
|
|
|
return ret
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-09-10 10:02:39 -05:00
|
|
|
func (m *WdCT_WordprocessingCanvasChoice) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
2017-08-28 20:56:18 -05:00
|
|
|
if m.Wsp != nil {
|
|
|
|
sewsp := xml.StartElement{Name: xml.Name{Local: "wp:wsp"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.Wsp {
|
|
|
|
e.EncodeElement(c, sewsp)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.Pic != nil {
|
|
|
|
sepic := xml.StartElement{Name: xml.Name{Local: "pic:pic"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.Pic {
|
|
|
|
e.EncodeElement(c, sepic)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.ContentPart != nil {
|
|
|
|
secontentPart := xml.StartElement{Name: xml.Name{Local: "wp:contentPart"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.ContentPart {
|
|
|
|
e.EncodeElement(c, secontentPart)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.Wgp != nil {
|
|
|
|
sewgp := xml.StartElement{Name: xml.Name{Local: "wp:wgp"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.Wgp {
|
|
|
|
e.EncodeElement(c, sewgp)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.GraphicFrame != nil {
|
|
|
|
segraphicFrame := xml.StartElement{Name: xml.Name{Local: "wp:graphicFrame"}}
|
2017-09-10 10:02:39 -05:00
|
|
|
for _, c := range m.GraphicFrame {
|
|
|
|
e.EncodeElement(c, segraphicFrame)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-09-10 10:02:39 -05:00
|
|
|
func (m *WdCT_WordprocessingCanvasChoice) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
2017-08-28 20:56:18 -05:00
|
|
|
// initialize to default
|
2017-09-10 10:02:39 -05:00
|
|
|
lWdCT_WordprocessingCanvasChoice:
|
2017-08-28 20:56:18 -05:00
|
|
|
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/wordprocessingDrawing", Local: "wsp"}:
|
|
|
|
tmp := NewWdWsp()
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Wsp = append(m.Wsp, tmp)
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/picture", Local: "pic"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
tmp := picture.NewPic()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Pic = append(m.Pic, tmp)
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "contentPart"}:
|
|
|
|
tmp := NewWdCT_WordprocessingContentPart()
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.ContentPart = append(m.ContentPart, tmp)
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "wgp"}:
|
|
|
|
tmp := NewWdWgp()
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.Wgp = append(m.Wgp, tmp)
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "graphicFrame"}:
|
|
|
|
tmp := NewWdCT_GraphicFrame()
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.GraphicFrame = append(m.GraphicFrame, tmp)
|
|
|
|
default:
|
2017-09-10 10:02:39 -05:00
|
|
|
log.Printf("skipping unsupported element on WdCT_WordprocessingCanvasChoice %v", el.Name)
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.Skip(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case xml.EndElement:
|
2017-09-10 10:02:39 -05:00
|
|
|
break lWdCT_WordprocessingCanvasChoice
|
2017-08-28 20:56:18 -05:00
|
|
|
case xml.CharData:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-09-10 10:02:39 -05:00
|
|
|
// Validate validates the WdCT_WordprocessingCanvasChoice and its children
|
|
|
|
func (m *WdCT_WordprocessingCanvasChoice) Validate() error {
|
|
|
|
return m.ValidateWithPath("WdCT_WordprocessingCanvasChoice")
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-09-10 10:02:39 -05:00
|
|
|
// ValidateWithPath validates the WdCT_WordprocessingCanvasChoice and its children, prefixing error messages with path
|
|
|
|
func (m *WdCT_WordprocessingCanvasChoice) ValidateWithPath(path string) error {
|
2017-08-28 20:56:18 -05:00
|
|
|
for i, v := range m.Wsp {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/Wsp[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.Pic {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/Pic[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.ContentPart {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/ContentPart[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.Wgp {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/Wgp[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.GraphicFrame {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/GraphicFrame[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|