mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-06 19:29:15 +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)
179 lines
5.5 KiB
Go
179 lines
5.5 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 presentationml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
"log"
|
|
"strconv"
|
|
)
|
|
|
|
type CT_NormalViewProperties struct {
|
|
// Show Outline Icons in Normal View
|
|
ShowOutlineIconsAttr *bool
|
|
// Snap Vertical Splitter
|
|
SnapVertSplitterAttr *bool
|
|
// State of the Vertical Splitter Bar
|
|
VertBarStateAttr ST_SplitterBarState
|
|
// State of the Horizontal Splitter Bar
|
|
HorzBarStateAttr ST_SplitterBarState
|
|
// Prefer Single View
|
|
PreferSingleViewAttr *bool
|
|
// Normal View Restored Left Properties
|
|
RestoredLeft *CT_NormalViewPortion
|
|
// Normal View Restored Top Properties
|
|
RestoredTop *CT_NormalViewPortion
|
|
ExtLst *CT_ExtensionList
|
|
}
|
|
|
|
func NewCT_NormalViewProperties() *CT_NormalViewProperties {
|
|
ret := &CT_NormalViewProperties{}
|
|
ret.RestoredLeft = NewCT_NormalViewPortion()
|
|
ret.RestoredTop = NewCT_NormalViewPortion()
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_NormalViewProperties) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m.ShowOutlineIconsAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "showOutlineIcons"},
|
|
Value: fmt.Sprintf("%d", b2i(*m.ShowOutlineIconsAttr))})
|
|
}
|
|
if m.SnapVertSplitterAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "snapVertSplitter"},
|
|
Value: fmt.Sprintf("%d", b2i(*m.SnapVertSplitterAttr))})
|
|
}
|
|
if m.VertBarStateAttr != ST_SplitterBarStateUnset {
|
|
attr, err := m.VertBarStateAttr.MarshalXMLAttr(xml.Name{Local: "vertBarState"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
start.Attr = append(start.Attr, attr)
|
|
}
|
|
if m.HorzBarStateAttr != ST_SplitterBarStateUnset {
|
|
attr, err := m.HorzBarStateAttr.MarshalXMLAttr(xml.Name{Local: "horzBarState"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
start.Attr = append(start.Attr, attr)
|
|
}
|
|
if m.PreferSingleViewAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "preferSingleView"},
|
|
Value: fmt.Sprintf("%d", b2i(*m.PreferSingleViewAttr))})
|
|
}
|
|
e.EncodeToken(start)
|
|
serestoredLeft := xml.StartElement{Name: xml.Name{Local: "p:restoredLeft"}}
|
|
e.EncodeElement(m.RestoredLeft, serestoredLeft)
|
|
serestoredTop := xml.StartElement{Name: xml.Name{Local: "p:restoredTop"}}
|
|
e.EncodeElement(m.RestoredTop, serestoredTop)
|
|
if m.ExtLst != nil {
|
|
seextLst := xml.StartElement{Name: xml.Name{Local: "p:extLst"}}
|
|
e.EncodeElement(m.ExtLst, seextLst)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_NormalViewProperties) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
m.RestoredLeft = NewCT_NormalViewPortion()
|
|
m.RestoredTop = NewCT_NormalViewPortion()
|
|
for _, attr := range start.Attr {
|
|
if attr.Name.Local == "showOutlineIcons" {
|
|
parsed, err := strconv.ParseBool(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.ShowOutlineIconsAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "snapVertSplitter" {
|
|
parsed, err := strconv.ParseBool(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.SnapVertSplitterAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "vertBarState" {
|
|
m.VertBarStateAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "horzBarState" {
|
|
m.HorzBarStateAttr.UnmarshalXMLAttr(attr)
|
|
}
|
|
if attr.Name.Local == "preferSingleView" {
|
|
parsed, err := strconv.ParseBool(attr.Value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.PreferSingleViewAttr = &parsed
|
|
}
|
|
}
|
|
lCT_NormalViewProperties:
|
|
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/presentationml/2006/main", Local: "restoredLeft"}:
|
|
if err := d.DecodeElement(m.RestoredLeft, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/presentationml/2006/main", Local: "restoredTop"}:
|
|
if err := d.DecodeElement(m.RestoredTop, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/presentationml/2006/main", Local: "extLst"}:
|
|
m.ExtLst = NewCT_ExtensionList()
|
|
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on CT_NormalViewProperties %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_NormalViewProperties
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_NormalViewProperties and its children
|
|
func (m *CT_NormalViewProperties) Validate() error {
|
|
return m.ValidateWithPath("CT_NormalViewProperties")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_NormalViewProperties and its children, prefixing error messages with path
|
|
func (m *CT_NormalViewProperties) ValidateWithPath(path string) error {
|
|
if err := m.VertBarStateAttr.ValidateWithPath(path + "/VertBarStateAttr"); err != nil {
|
|
return err
|
|
}
|
|
if err := m.HorzBarStateAttr.ValidateWithPath(path + "/HorzBarStateAttr"); err != nil {
|
|
return err
|
|
}
|
|
if err := m.RestoredLeft.ValidateWithPath(path + "/RestoredLeft"); err != nil {
|
|
return err
|
|
}
|
|
if err := m.RestoredTop.ValidateWithPath(path + "/RestoredTop"); err != nil {
|
|
return err
|
|
}
|
|
if m.ExtLst != nil {
|
|
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|