mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-04 22:17:38 +08:00
138 lines
4.0 KiB
Go
138 lines
4.0 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"
|
|
"log"
|
|
"strconv"
|
|
)
|
|
|
|
type OfcDiagram struct {
|
|
OfcCT_Diagram
|
|
}
|
|
|
|
func NewOfcDiagram() *OfcDiagram {
|
|
ret := &OfcDiagram{}
|
|
ret.OfcCT_Diagram = *NewOfcCT_Diagram()
|
|
return ret
|
|
}
|
|
|
|
func (m *OfcDiagram) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "xmlns"}, Value: "urn:schemas-microsoft-com:office:office"})
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "xmlns:o"}, Value: "urn:schemas-microsoft-com:office:office"})
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "xmlns:r"}, Value: "http://schemas.openxmlformats.org/officeDocument/2006/relationships"})
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "xmlns:s"}, Value: "http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"})
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "xmlns:v"}, Value: "urn:schemas-microsoft-com:vml"})
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "xmlns:xml"}, Value: "http://www.w3.org/XML/1998/namespace"})
|
|
start.Name.Local = "o:diagram"
|
|
return m.OfcCT_Diagram.MarshalXML(e, start)
|
|
}
|
|
|
|
func (m *OfcDiagram) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
m.OfcCT_Diagram = *NewOfcCT_Diagram()
|
|
for _, attr := range start.Attr {
|
|
if attr.Name.Local == "dgmstyle" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.DgmstyleAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "autoformat" {
|
|
m.AutoformatAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "reverse" {
|
|
m.ReverseAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "autolayout" {
|
|
m.AutolayoutAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "dgmscalex" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.DgmscalexAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "dgmscaley" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.DgmscaleyAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "dgmfontsize" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.DgmfontsizeAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "constrainbounds" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.ConstrainboundsAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "dgmbasetextscale" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.DgmbasetextscaleAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "ext" {
|
|
m.ExtAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
}
|
|
lOfcDiagram:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name {
|
|
case xml.Name{Space: "urn:schemas-microsoft-com:office:office", Local: "relationtable"}:
|
|
m.Relationtable = NewOfcCT_RelationTable()
|
|
if err := d.DecodeElement(m.Relationtable, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on OfcDiagram %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lOfcDiagram
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the OfcDiagram and its children
|
|
func (m *OfcDiagram) Validate() error {
|
|
return m.ValidateWithPath("OfcDiagram")
|
|
}
|
|
|
|
// ValidateWithPath validates the OfcDiagram and its children, prefixing error messages with path
|
|
func (m *OfcDiagram) ValidateWithPath(path string) error {
|
|
if err := m.OfcCT_Diagram.ValidateWithPath(path); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|