mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00
106 lines
2.6 KiB
Go
106 lines
2.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"
|
|
)
|
|
|
|
type EG_SlideListChoice struct {
|
|
// All Slides
|
|
SldAll *CT_Empty
|
|
// Slide Range
|
|
SldRg *CT_IndexRange
|
|
// Custom Show
|
|
CustShow *CT_CustomShowId
|
|
}
|
|
|
|
func NewEG_SlideListChoice() *EG_SlideListChoice {
|
|
ret := &EG_SlideListChoice{}
|
|
return ret
|
|
}
|
|
func (m *EG_SlideListChoice) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
if m.SldAll != nil {
|
|
sesldAll := xml.StartElement{Name: xml.Name{Local: "p:sldAll"}}
|
|
e.EncodeElement(m.SldAll, sesldAll)
|
|
}
|
|
if m.SldRg != nil {
|
|
sesldRg := xml.StartElement{Name: xml.Name{Local: "p:sldRg"}}
|
|
e.EncodeElement(m.SldRg, sesldRg)
|
|
}
|
|
if m.CustShow != nil {
|
|
secustShow := xml.StartElement{Name: xml.Name{Local: "p:custShow"}}
|
|
e.EncodeElement(m.CustShow, secustShow)
|
|
}
|
|
return nil
|
|
}
|
|
func (m *EG_SlideListChoice) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lEG_SlideListChoice:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "sldAll":
|
|
m.SldAll = NewCT_Empty()
|
|
if err := d.DecodeElement(m.SldAll, &el); err != nil {
|
|
return err
|
|
}
|
|
case "sldRg":
|
|
m.SldRg = NewCT_IndexRange()
|
|
if err := d.DecodeElement(m.SldRg, &el); err != nil {
|
|
return err
|
|
}
|
|
case "custShow":
|
|
m.CustShow = NewCT_CustomShowId()
|
|
if err := d.DecodeElement(m.CustShow, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lEG_SlideListChoice
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
func (m *EG_SlideListChoice) Validate() error {
|
|
return m.ValidateWithPath("EG_SlideListChoice")
|
|
}
|
|
func (m *EG_SlideListChoice) ValidateWithPath(path string) error {
|
|
if m.SldAll != nil {
|
|
if err := m.SldAll.ValidateWithPath(path + "/SldAll"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.SldRg != nil {
|
|
if err := m.SldRg.ValidateWithPath(path + "/SldRg"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.CustShow != nil {
|
|
if err := m.CustShow.ValidateWithPath(path + "/CustShow"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|