mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-14 19:29:48 +08:00

* update license and terms * Fixes * Create ACKNOWLEDGEMENTS.md * Update ACKNOWLEDGEMENTS.md * Revert go.mod changes and remove go1.11 tests
341 lines
12 KiB
Go
341 lines
12 KiB
Go
// Copyright 2020 FoxyUtils ehf. All rights reserved.
|
|
//
|
|
// DO NOT EDIT: generated by unioffice ECMA-376 generator
|
|
//
|
|
// Use of this software package and source code is governed by the terms of the
|
|
// UniDoc End User License Agreement (EULA) that is available at:
|
|
// https://unidoc.io/eula/
|
|
// A trial license code for evaluation can be obtained at https://unidoc.io website.
|
|
|
|
package wml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
|
|
"github.com/unidoc/unioffice"
|
|
)
|
|
|
|
type CT_SdtPr struct {
|
|
// Run Properties For Structured Document Tag Contents
|
|
RPr *CT_RPr
|
|
// Friendly Name
|
|
Alias *CT_String
|
|
// Programmatic Tag
|
|
Tag *CT_String
|
|
// Unique ID
|
|
Id *CT_DecimalNumber
|
|
// Locking Setting
|
|
Lock *CT_Lock
|
|
// Structured Document Tag Placeholder Text
|
|
Placeholder *CT_Placeholder
|
|
// Remove Structured Document Tag When Contents Are Edited
|
|
Temporary *CT_OnOff
|
|
// Current Contents Are Placeholder Text
|
|
ShowingPlcHdr *CT_OnOff
|
|
// XML Mapping
|
|
DataBinding *CT_DataBinding
|
|
// Structured Document Tag Label
|
|
Label *CT_DecimalNumber
|
|
// Structured Document Tag Navigation Order Index
|
|
TabIndex *CT_UnsignedDecimalNumber
|
|
Choice *CT_SdtPrChoice
|
|
Extra []unioffice.Any
|
|
}
|
|
|
|
func NewCT_SdtPr() *CT_SdtPr {
|
|
ret := &CT_SdtPr{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_SdtPr) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
if m.RPr != nil {
|
|
serPr := xml.StartElement{Name: xml.Name{Local: "w:rPr"}}
|
|
e.EncodeElement(m.RPr, serPr)
|
|
}
|
|
if m.Alias != nil {
|
|
sealias := xml.StartElement{Name: xml.Name{Local: "w:alias"}}
|
|
e.EncodeElement(m.Alias, sealias)
|
|
}
|
|
if m.Tag != nil {
|
|
setag := xml.StartElement{Name: xml.Name{Local: "w:tag"}}
|
|
e.EncodeElement(m.Tag, setag)
|
|
}
|
|
if m.Id != nil {
|
|
seid := xml.StartElement{Name: xml.Name{Local: "w:id"}}
|
|
e.EncodeElement(m.Id, seid)
|
|
}
|
|
if m.Lock != nil {
|
|
selock := xml.StartElement{Name: xml.Name{Local: "w:lock"}}
|
|
e.EncodeElement(m.Lock, selock)
|
|
}
|
|
if m.Placeholder != nil {
|
|
seplaceholder := xml.StartElement{Name: xml.Name{Local: "w:placeholder"}}
|
|
e.EncodeElement(m.Placeholder, seplaceholder)
|
|
}
|
|
if m.Temporary != nil {
|
|
setemporary := xml.StartElement{Name: xml.Name{Local: "w:temporary"}}
|
|
e.EncodeElement(m.Temporary, setemporary)
|
|
}
|
|
if m.ShowingPlcHdr != nil {
|
|
seshowingPlcHdr := xml.StartElement{Name: xml.Name{Local: "w:showingPlcHdr"}}
|
|
e.EncodeElement(m.ShowingPlcHdr, seshowingPlcHdr)
|
|
}
|
|
if m.DataBinding != nil {
|
|
sedataBinding := xml.StartElement{Name: xml.Name{Local: "w:dataBinding"}}
|
|
e.EncodeElement(m.DataBinding, sedataBinding)
|
|
}
|
|
if m.Label != nil {
|
|
selabel := xml.StartElement{Name: xml.Name{Local: "w:label"}}
|
|
e.EncodeElement(m.Label, selabel)
|
|
}
|
|
if m.TabIndex != nil {
|
|
setabIndex := xml.StartElement{Name: xml.Name{Local: "w:tabIndex"}}
|
|
e.EncodeElement(m.TabIndex, setabIndex)
|
|
}
|
|
if m.Choice != nil {
|
|
m.Choice.MarshalXML(e, xml.StartElement{})
|
|
}
|
|
for _, any := range m.Extra {
|
|
if err := any.MarshalXML(e, xml.StartElement{}); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_SdtPr) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lCT_SdtPr:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name {
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "rPr"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "rPr"}:
|
|
m.RPr = NewCT_RPr()
|
|
if err := d.DecodeElement(m.RPr, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "alias"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "alias"}:
|
|
m.Alias = NewCT_String()
|
|
if err := d.DecodeElement(m.Alias, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "tag"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "tag"}:
|
|
m.Tag = NewCT_String()
|
|
if err := d.DecodeElement(m.Tag, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "id"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "id"}:
|
|
m.Id = NewCT_DecimalNumber()
|
|
if err := d.DecodeElement(m.Id, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "lock"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "lock"}:
|
|
m.Lock = NewCT_Lock()
|
|
if err := d.DecodeElement(m.Lock, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "placeholder"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "placeholder"}:
|
|
m.Placeholder = NewCT_Placeholder()
|
|
if err := d.DecodeElement(m.Placeholder, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "temporary"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "temporary"}:
|
|
m.Temporary = NewCT_OnOff()
|
|
if err := d.DecodeElement(m.Temporary, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "showingPlcHdr"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "showingPlcHdr"}:
|
|
m.ShowingPlcHdr = NewCT_OnOff()
|
|
if err := d.DecodeElement(m.ShowingPlcHdr, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "dataBinding"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "dataBinding"}:
|
|
m.DataBinding = NewCT_DataBinding()
|
|
if err := d.DecodeElement(m.DataBinding, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "label"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "label"}:
|
|
m.Label = NewCT_DecimalNumber()
|
|
if err := d.DecodeElement(m.Label, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "tabIndex"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "tabIndex"}:
|
|
m.TabIndex = NewCT_UnsignedDecimalNumber()
|
|
if err := d.DecodeElement(m.TabIndex, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "equation"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "equation"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.Equation, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "comboBox"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "comboBox"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.ComboBox, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "date"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "date"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.Date, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "docPartObj"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "docPartObj"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.DocPartObj, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "docPartList"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "docPartList"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.DocPartList, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "dropDownList"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "dropDownList"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.DropDownList, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "picture"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "picture"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.Picture, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "richText"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "richText"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.RichText, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "text"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "text"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.Text, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "citation"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "citation"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.Citation, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "group"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "group"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.Group, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "bibliography"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "bibliography"}:
|
|
m.Choice = NewCT_SdtPrChoice()
|
|
if err := d.DecodeElement(&m.Choice.Bibliography, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
any := &unioffice.XSDAny{}
|
|
if err := d.DecodeElement(any, &el); err != nil {
|
|
return err
|
|
}
|
|
m.Extra = append(m.Extra, any)
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_SdtPr
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_SdtPr and its children
|
|
func (m *CT_SdtPr) Validate() error {
|
|
return m.ValidateWithPath("CT_SdtPr")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_SdtPr and its children, prefixing error messages with path
|
|
func (m *CT_SdtPr) ValidateWithPath(path string) error {
|
|
if m.RPr != nil {
|
|
if err := m.RPr.ValidateWithPath(path + "/RPr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Alias != nil {
|
|
if err := m.Alias.ValidateWithPath(path + "/Alias"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Tag != nil {
|
|
if err := m.Tag.ValidateWithPath(path + "/Tag"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Id != nil {
|
|
if err := m.Id.ValidateWithPath(path + "/Id"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Lock != nil {
|
|
if err := m.Lock.ValidateWithPath(path + "/Lock"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Placeholder != nil {
|
|
if err := m.Placeholder.ValidateWithPath(path + "/Placeholder"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Temporary != nil {
|
|
if err := m.Temporary.ValidateWithPath(path + "/Temporary"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.ShowingPlcHdr != nil {
|
|
if err := m.ShowingPlcHdr.ValidateWithPath(path + "/ShowingPlcHdr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.DataBinding != nil {
|
|
if err := m.DataBinding.ValidateWithPath(path + "/DataBinding"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Label != nil {
|
|
if err := m.Label.ValidateWithPath(path + "/Label"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.TabIndex != nil {
|
|
if err := m.TabIndex.ValidateWithPath(path + "/TabIndex"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Choice != nil {
|
|
if err := m.Choice.ValidateWithPath(path + "/Choice"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|