// 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 pml import ( "encoding/xml" "github.com/unidoc/unioffice" "github.com/unidoc/unioffice/schema/soo/dml" ) type CT_NotesMaster struct { // Common Slide Data CSld *CT_CommonSlideData // Color Scheme Map ClrMap *dml.CT_ColorMapping // Header/Footer Information for a Notes Master Hf *CT_HeaderFooter // Notes Text Style NotesStyle *dml.CT_TextListStyle ExtLst *CT_ExtensionListModify } func NewCT_NotesMaster() *CT_NotesMaster { ret := &CT_NotesMaster{} ret.CSld = NewCT_CommonSlideData() ret.ClrMap = dml.NewCT_ColorMapping() return ret } func (m *CT_NotesMaster) MarshalXML(e *xml.Encoder, start xml.StartElement) error { e.EncodeToken(start) secSld := xml.StartElement{Name: xml.Name{Local: "p:cSld"}} e.EncodeElement(m.CSld, secSld) seclrMap := xml.StartElement{Name: xml.Name{Local: "p:clrMap"}} e.EncodeElement(m.ClrMap, seclrMap) if m.Hf != nil { sehf := xml.StartElement{Name: xml.Name{Local: "p:hf"}} e.EncodeElement(m.Hf, sehf) } if m.NotesStyle != nil { senotesStyle := xml.StartElement{Name: xml.Name{Local: "p:notesStyle"}} e.EncodeElement(m.NotesStyle, senotesStyle) } 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_NotesMaster) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { // initialize to default m.CSld = NewCT_CommonSlideData() m.ClrMap = dml.NewCT_ColorMapping() lCT_NotesMaster: 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/presentationml/2006/main", Local: "cSld"}, xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/main", Local: "cSld"}: if err := d.DecodeElement(m.CSld, &el); err != nil { return err } case xml.Name{Space: "http://schemas.openxmlformats.org/presentationml/2006/main", Local: "clrMap"}, xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/main", Local: "clrMap"}: if err := d.DecodeElement(m.ClrMap, &el); err != nil { return err } case xml.Name{Space: "http://schemas.openxmlformats.org/presentationml/2006/main", Local: "hf"}, xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/main", Local: "hf"}: m.Hf = NewCT_HeaderFooter() if err := d.DecodeElement(m.Hf, &el); err != nil { return err } case xml.Name{Space: "http://schemas.openxmlformats.org/presentationml/2006/main", Local: "notesStyle"}, xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/main", Local: "notesStyle"}: m.NotesStyle = dml.NewCT_TextListStyle() if err := d.DecodeElement(m.NotesStyle, &el); err != nil { return err } case xml.Name{Space: "http://schemas.openxmlformats.org/presentationml/2006/main", Local: "extLst"}, xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/main", Local: "extLst"}: m.ExtLst = NewCT_ExtensionListModify() if err := d.DecodeElement(m.ExtLst, &el); err != nil { return err } default: unioffice.Log("skipping unsupported element on CT_NotesMaster %v", el.Name) if err := d.Skip(); err != nil { return err } } case xml.EndElement: break lCT_NotesMaster case xml.CharData: } } return nil } // Validate validates the CT_NotesMaster and its children func (m *CT_NotesMaster) Validate() error { return m.ValidateWithPath("CT_NotesMaster") } // ValidateWithPath validates the CT_NotesMaster and its children, prefixing error messages with path func (m *CT_NotesMaster) ValidateWithPath(path string) error { if err := m.CSld.ValidateWithPath(path + "/CSld"); err != nil { return err } if err := m.ClrMap.ValidateWithPath(path + "/ClrMap"); err != nil { return err } if m.Hf != nil { if err := m.Hf.ValidateWithPath(path + "/Hf"); err != nil { return err } } if m.NotesStyle != nil { if err := m.NotesStyle.ValidateWithPath(path + "/NotesStyle"); err != nil { return err } } if m.ExtLst != nil { if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil { return err } } return nil }