1 Star 0 Fork 1

青大叔/gooxml

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CT_Shape.go 4.85 KB
一键复制 编辑 原始数据 按行查看 历史
qwj 提交于 2021-09-03 14:09 +08:00 . 修改包名
// 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 chartDrawing
import (
"encoding/xml"
"fmt"
"strconv"
"gitee.com/jiewen/gooxml"
"gitee.com/jiewen/gooxml/schema/soo/dml"
)
type CT_Shape struct {
MacroAttr *string
TextlinkAttr *string
FLocksTextAttr *bool
FPublishedAttr *bool
NvSpPr *CT_ShapeNonVisual
SpPr *dml.CT_ShapeProperties
Style *dml.CT_ShapeStyle
TxBody *dml.CT_TextBody
}
func NewCT_Shape() *CT_Shape {
ret := &CT_Shape{}
ret.NvSpPr = NewCT_ShapeNonVisual()
ret.SpPr = dml.NewCT_ShapeProperties()
return ret
}
func (m *CT_Shape) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.MacroAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "macro"},
Value: fmt.Sprintf("%v", *m.MacroAttr)})
}
if m.TextlinkAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "textlink"},
Value: fmt.Sprintf("%v", *m.TextlinkAttr)})
}
if m.FLocksTextAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "fLocksText"},
Value: fmt.Sprintf("%d", b2i(*m.FLocksTextAttr))})
}
if m.FPublishedAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "fPublished"},
Value: fmt.Sprintf("%d", b2i(*m.FPublishedAttr))})
}
e.EncodeToken(start)
senvSpPr := xml.StartElement{Name: xml.Name{Local: "nvSpPr"}}
e.EncodeElement(m.NvSpPr, senvSpPr)
sespPr := xml.StartElement{Name: xml.Name{Local: "spPr"}}
e.EncodeElement(m.SpPr, sespPr)
if m.Style != nil {
sestyle := xml.StartElement{Name: xml.Name{Local: "style"}}
e.EncodeElement(m.Style, sestyle)
}
if m.TxBody != nil {
setxBody := xml.StartElement{Name: xml.Name{Local: "txBody"}}
e.EncodeElement(m.TxBody, setxBody)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_Shape) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
m.NvSpPr = NewCT_ShapeNonVisual()
m.SpPr = dml.NewCT_ShapeProperties()
for _, attr := range start.Attr {
if attr.Name.Local == "macro" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.MacroAttr = &parsed
continue
}
if attr.Name.Local == "textlink" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.TextlinkAttr = &parsed
continue
}
if attr.Name.Local == "fLocksText" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.FLocksTextAttr = &parsed
continue
}
if attr.Name.Local == "fPublished" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.FPublishedAttr = &parsed
continue
}
}
lCT_Shape:
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/drawingml/2006/chartDrawing", Local: "nvSpPr"}:
if err := d.DecodeElement(m.NvSpPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chartDrawing", Local: "spPr"}:
if err := d.DecodeElement(m.SpPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chartDrawing", Local: "style"}:
m.Style = dml.NewCT_ShapeStyle()
if err := d.DecodeElement(m.Style, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chartDrawing", Local: "txBody"}:
m.TxBody = dml.NewCT_TextBody()
if err := d.DecodeElement(m.TxBody, &el); err != nil {
return err
}
default:
gooxml.Log("skipping unsupported element on CT_Shape %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_Shape
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_Shape and its children
func (m *CT_Shape) Validate() error {
return m.ValidateWithPath("CT_Shape")
}
// ValidateWithPath validates the CT_Shape and its children, prefixing error messages with path
func (m *CT_Shape) ValidateWithPath(path string) error {
if err := m.NvSpPr.ValidateWithPath(path + "/NvSpPr"); err != nil {
return err
}
if err := m.SpPr.ValidateWithPath(path + "/SpPr"); err != nil {
return err
}
if m.Style != nil {
if err := m.Style.ValidateWithPath(path + "/Style"); err != nil {
return err
}
}
if m.TxBody != nil {
if err := m.TxBody.ValidateWithPath(path + "/TxBody"); err != nil {
return err
}
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiewen/gooxml.git
git@gitee.com:jiewen/gooxml.git
jiewen
gooxml
gooxml
c517a803bade

搜索帮助