mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00
93 lines
2.4 KiB
Go
93 lines
2.4 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 CT_ThemeableLineStyle struct {
|
|
Ln *CT_LineProperties
|
|
LnRef *CT_StyleMatrixReference
|
|
}
|
|
|
|
func NewCT_ThemeableLineStyle() *CT_ThemeableLineStyle {
|
|
ret := &CT_ThemeableLineStyle{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_ThemeableLineStyle) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
if m.Ln != nil {
|
|
seln := xml.StartElement{Name: xml.Name{Local: "a:ln"}}
|
|
e.EncodeElement(m.Ln, seln)
|
|
}
|
|
if m.LnRef != nil {
|
|
selnRef := xml.StartElement{Name: xml.Name{Local: "a:lnRef"}}
|
|
e.EncodeElement(m.LnRef, selnRef)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_ThemeableLineStyle) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lCT_ThemeableLineStyle:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "ln":
|
|
m.Ln = NewCT_LineProperties()
|
|
if err := d.DecodeElement(m.Ln, &el); err != nil {
|
|
return err
|
|
}
|
|
case "lnRef":
|
|
m.LnRef = NewCT_StyleMatrixReference()
|
|
if err := d.DecodeElement(m.LnRef, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on CT_ThemeableLineStyle %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_ThemeableLineStyle
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_ThemeableLineStyle and its children
|
|
func (m *CT_ThemeableLineStyle) Validate() error {
|
|
return m.ValidateWithPath("CT_ThemeableLineStyle")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_ThemeableLineStyle and its children, prefixing error messages with path
|
|
func (m *CT_ThemeableLineStyle) ValidateWithPath(path string) error {
|
|
if m.Ln != nil {
|
|
if err := m.Ln.ValidateWithPath(path + "/Ln"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.LnRef != nil {
|
|
if err := m.LnRef.ValidateWithPath(path + "/LnRef"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|