91 lines
2.3 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 drawingml
import (
"encoding/xml"
"log"
)
type EG_ThemeableFontStyles struct {
Font *CT_FontCollection
FontRef *CT_FontReference
}
func NewEG_ThemeableFontStyles() *EG_ThemeableFontStyles {
ret := &EG_ThemeableFontStyles{}
return ret
}
func (m *EG_ThemeableFontStyles) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.Font != nil {
sefont := xml.StartElement{Name: xml.Name{Local: "a:font"}}
e.EncodeElement(m.Font, sefont)
}
if m.FontRef != nil {
sefontRef := xml.StartElement{Name: xml.Name{Local: "a:fontRef"}}
e.EncodeElement(m.FontRef, sefontRef)
}
return nil
}
func (m *EG_ThemeableFontStyles) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lEG_ThemeableFontStyles:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch el := tok.(type) {
case xml.StartElement:
switch el.Name.Local {
case "font":
m.Font = NewCT_FontCollection()
if err := d.DecodeElement(m.Font, &el); err != nil {
return err
}
case "fontRef":
m.FontRef = NewCT_FontReference()
if err := d.DecodeElement(m.FontRef, &el); err != nil {
return err
}
default:
log.Printf("skipping unsupported element on EG_ThemeableFontStyles %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lEG_ThemeableFontStyles
case xml.CharData:
}
}
return nil
}
// Validate validates the EG_ThemeableFontStyles and its children
func (m *EG_ThemeableFontStyles) Validate() error {
return m.ValidateWithPath("EG_ThemeableFontStyles")
}
// ValidateWithPath validates the EG_ThemeableFontStyles and its children, prefixing error messages with path
func (m *EG_ThemeableFontStyles) ValidateWithPath(path string) error {
if m.Font != nil {
if err := m.Font.ValidateWithPath(path + "/Font"); err != nil {
return err
}
}
if m.FontRef != nil {
if err := m.FontRef.ValidateWithPath(path + "/FontRef"); err != nil {
return err
}
}
return nil
}