mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-02 22:17:07 +08:00

- check for namespaces when decoding - merge wordprocessingDrawing into wordprocessingml, this fixes some issues with cyclic import paths (XML namespaces don't translate to to valid go namespaces due to this)
322 lines
9.1 KiB
Go
322 lines
9.1 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 drawingml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
"log"
|
|
"strconv"
|
|
)
|
|
|
|
type CT_OuterShadowEffect struct {
|
|
BlurRadAttr *int64
|
|
DistAttr *int64
|
|
DirAttr *int32
|
|
SxAttr *ST_Percentage
|
|
SyAttr *ST_Percentage
|
|
KxAttr *int32
|
|
KyAttr *int32
|
|
AlgnAttr ST_RectAlignment
|
|
RotWithShapeAttr *bool
|
|
ScrgbClr *CT_ScRgbColor
|
|
SrgbClr *CT_SRgbColor
|
|
HslClr *CT_HslColor
|
|
SysClr *CT_SystemColor
|
|
SchemeClr *CT_SchemeColor
|
|
PrstClr *CT_PresetColor
|
|
}
|
|
|
|
func NewCT_OuterShadowEffect() *CT_OuterShadowEffect {
|
|
ret := &CT_OuterShadowEffect{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_OuterShadowEffect) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m.BlurRadAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "blurRad"},
|
|
Value: fmt.Sprintf("%v", *m.BlurRadAttr)})
|
|
}
|
|
if m.DistAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "dist"},
|
|
Value: fmt.Sprintf("%v", *m.DistAttr)})
|
|
}
|
|
if m.DirAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "dir"},
|
|
Value: fmt.Sprintf("%v", *m.DirAttr)})
|
|
}
|
|
if m.SxAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "sx"},
|
|
Value: fmt.Sprintf("%v", *m.SxAttr)})
|
|
}
|
|
if m.SyAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "sy"},
|
|
Value: fmt.Sprintf("%v", *m.SyAttr)})
|
|
}
|
|
if m.KxAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "kx"},
|
|
Value: fmt.Sprintf("%v", *m.KxAttr)})
|
|
}
|
|
if m.KyAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "ky"},
|
|
Value: fmt.Sprintf("%v", *m.KyAttr)})
|
|
}
|
|
if m.AlgnAttr != ST_RectAlignmentUnset {
|
|
attr, err := m.AlgnAttr.MarshalXMLAttr(xml.Name{Local: "algn"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
start.Attr = append(start.Attr, attr)
|
|
}
|
|
if m.RotWithShapeAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "rotWithShape"},
|
|
Value: fmt.Sprintf("%d", b2i(*m.RotWithShapeAttr))})
|
|
}
|
|
e.EncodeToken(start)
|
|
if m.ScrgbClr != nil {
|
|
sescrgbClr := xml.StartElement{Name: xml.Name{Local: "a:scrgbClr"}}
|
|
e.EncodeElement(m.ScrgbClr, sescrgbClr)
|
|
}
|
|
if m.SrgbClr != nil {
|
|
sesrgbClr := xml.StartElement{Name: xml.Name{Local: "a:srgbClr"}}
|
|
e.EncodeElement(m.SrgbClr, sesrgbClr)
|
|
}
|
|
if m.HslClr != nil {
|
|
sehslClr := xml.StartElement{Name: xml.Name{Local: "a:hslClr"}}
|
|
e.EncodeElement(m.HslClr, sehslClr)
|
|
}
|
|
if m.SysClr != nil {
|
|
sesysClr := xml.StartElement{Name: xml.Name{Local: "a:sysClr"}}
|
|
e.EncodeElement(m.SysClr, sesysClr)
|
|
}
|
|
if m.SchemeClr != nil {
|
|
seschemeClr := xml.StartElement{Name: xml.Name{Local: "a:schemeClr"}}
|
|
e.EncodeElement(m.SchemeClr, seschemeClr)
|
|
}
|
|
if m.PrstClr != nil {
|
|
seprstClr := xml.StartElement{Name: xml.Name{Local: "a:prstClr"}}
|
|
e.EncodeElement(m.PrstClr, seprstClr)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_OuterShadowEffect) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
for _, attr := range start.Attr {
|
|
if attr.Name.Local == "blurRad" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.BlurRadAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "dist" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.DistAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "dir" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 32)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pt := int32(parsed)
|
|
m.DirAttr = &pt
|
|
}
|
|
if attr.Name.Local == "sx" {
|
|
parsed, err := ParseUnionST_Percentage(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.SxAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "sy" {
|
|
parsed, err := ParseUnionST_Percentage(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.SyAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "kx" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 32)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pt := int32(parsed)
|
|
m.KxAttr = &pt
|
|
}
|
|
if attr.Name.Local == "ky" {
|
|
parsed, err := strconv.ParseInt(attr.Value, 10, 32)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pt := int32(parsed)
|
|
m.KyAttr = &pt
|
|
}
|
|
if attr.Name.Local == "algn" {
|
|
m.AlgnAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "rotWithShape" {
|
|
parsed, err := strconv.ParseBool(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.RotWithShapeAttr = &parsed
|
|
}
|
|
}
|
|
lCT_OuterShadowEffect:
|
|
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/main", Local: "scrgbClr"}:
|
|
m.ScrgbClr = NewCT_ScRgbColor()
|
|
if err := d.DecodeElement(m.ScrgbClr, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "srgbClr"}:
|
|
m.SrgbClr = NewCT_SRgbColor()
|
|
if err := d.DecodeElement(m.SrgbClr, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "hslClr"}:
|
|
m.HslClr = NewCT_HslColor()
|
|
if err := d.DecodeElement(m.HslClr, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "sysClr"}:
|
|
m.SysClr = NewCT_SystemColor()
|
|
if err := d.DecodeElement(m.SysClr, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "schemeClr"}:
|
|
m.SchemeClr = NewCT_SchemeColor()
|
|
if err := d.DecodeElement(m.SchemeClr, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "prstClr"}:
|
|
m.PrstClr = NewCT_PresetColor()
|
|
if err := d.DecodeElement(m.PrstClr, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on CT_OuterShadowEffect %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_OuterShadowEffect
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_OuterShadowEffect and its children
|
|
func (m *CT_OuterShadowEffect) Validate() error {
|
|
return m.ValidateWithPath("CT_OuterShadowEffect")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_OuterShadowEffect and its children, prefixing error messages with path
|
|
func (m *CT_OuterShadowEffect) ValidateWithPath(path string) error {
|
|
if m.BlurRadAttr != nil {
|
|
if *m.BlurRadAttr < 0 {
|
|
return fmt.Errorf("%s/m.BlurRadAttr must be >= 0 (have %v)", path, *m.BlurRadAttr)
|
|
}
|
|
if *m.BlurRadAttr > 27273042316900 {
|
|
return fmt.Errorf("%s/m.BlurRadAttr must be <= 27273042316900 (have %v)", path, *m.BlurRadAttr)
|
|
}
|
|
}
|
|
if m.DistAttr != nil {
|
|
if *m.DistAttr < 0 {
|
|
return fmt.Errorf("%s/m.DistAttr must be >= 0 (have %v)", path, *m.DistAttr)
|
|
}
|
|
if *m.DistAttr > 27273042316900 {
|
|
return fmt.Errorf("%s/m.DistAttr must be <= 27273042316900 (have %v)", path, *m.DistAttr)
|
|
}
|
|
}
|
|
if m.DirAttr != nil {
|
|
if *m.DirAttr < 0 {
|
|
return fmt.Errorf("%s/m.DirAttr must be >= 0 (have %v)", path, *m.DirAttr)
|
|
}
|
|
if *m.DirAttr >= 21600000 {
|
|
return fmt.Errorf("%s/m.DirAttr must be < 21600000 (have %v)", path, *m.DirAttr)
|
|
}
|
|
}
|
|
if m.SxAttr != nil {
|
|
if err := m.SxAttr.ValidateWithPath(path + "/SxAttr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.SyAttr != nil {
|
|
if err := m.SyAttr.ValidateWithPath(path + "/SyAttr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.KxAttr != nil {
|
|
if *m.KxAttr <= -5400000 {
|
|
return fmt.Errorf("%s/m.KxAttr must be > -5400000 (have %v)", path, *m.KxAttr)
|
|
}
|
|
if *m.KxAttr >= 5400000 {
|
|
return fmt.Errorf("%s/m.KxAttr must be < 5400000 (have %v)", path, *m.KxAttr)
|
|
}
|
|
}
|
|
if m.KyAttr != nil {
|
|
if *m.KyAttr <= -5400000 {
|
|
return fmt.Errorf("%s/m.KyAttr must be > -5400000 (have %v)", path, *m.KyAttr)
|
|
}
|
|
if *m.KyAttr >= 5400000 {
|
|
return fmt.Errorf("%s/m.KyAttr must be < 5400000 (have %v)", path, *m.KyAttr)
|
|
}
|
|
}
|
|
if err := m.AlgnAttr.ValidateWithPath(path + "/AlgnAttr"); err != nil {
|
|
return err
|
|
}
|
|
if m.ScrgbClr != nil {
|
|
if err := m.ScrgbClr.ValidateWithPath(path + "/ScrgbClr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.SrgbClr != nil {
|
|
if err := m.SrgbClr.ValidateWithPath(path + "/SrgbClr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.HslClr != nil {
|
|
if err := m.HslClr.ValidateWithPath(path + "/HslClr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.SysClr != nil {
|
|
if err := m.SysClr.ValidateWithPath(path + "/SysClr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.SchemeClr != nil {
|
|
if err := m.SchemeClr.ValidateWithPath(path + "/SchemeClr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.PrstClr != nil {
|
|
if err := m.PrstClr.ValidateWithPath(path + "/PrstClr"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|