mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-04 22:17:38 +08:00
97 lines
2.3 KiB
Go
97 lines
2.3 KiB
Go
// Copyright 2017 Baliance. All rights reserved.
|
|
//
|
|
// DO NOT EDIT: generated by gooxml ECMA-376 generator
|
|
//
|
|
// 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 vml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
)
|
|
|
|
type Textpath struct {
|
|
CT_TextPath
|
|
}
|
|
|
|
func NewTextpath() *Textpath {
|
|
ret := &Textpath{}
|
|
ret.CT_TextPath = *NewCT_TextPath()
|
|
return ret
|
|
}
|
|
|
|
func (m *Textpath) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
return m.CT_TextPath.MarshalXML(e, start)
|
|
}
|
|
|
|
func (m *Textpath) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
m.CT_TextPath = *NewCT_TextPath()
|
|
for _, attr := range start.Attr {
|
|
if attr.Name.Local == "on" {
|
|
m.OnAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "fitshape" {
|
|
m.FitshapeAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "fitpath" {
|
|
m.FitpathAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "trim" {
|
|
m.TrimAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "xscale" {
|
|
m.XscaleAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "string" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.StringAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "id" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.IdAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "style" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.StyleAttr = &parsed
|
|
}
|
|
}
|
|
// skip any extensions we may find, but don't support
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return fmt.Errorf("parsing Textpath: %s", err)
|
|
}
|
|
if el, ok := tok.(xml.EndElement); ok && el.Name == start.Name {
|
|
break
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the Textpath and its children
|
|
func (m *Textpath) Validate() error {
|
|
return m.ValidateWithPath("Textpath")
|
|
}
|
|
|
|
// ValidateWithPath validates the Textpath and its children, prefixing error messages with path
|
|
func (m *Textpath) ValidateWithPath(path string) error {
|
|
if err := m.CT_TextPath.ValidateWithPath(path); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|