unioffice/schema/soo/pml/CT_NormalViewProperties.go
Gunnsteinn Hall 5335bf249b
License update (#426)
* update license and terms

* Fixes

* Create ACKNOWLEDGEMENTS.md

* Update ACKNOWLEDGEMENTS.md

* Revert go.mod changes and remove go1.11 tests
2020-08-08 01:01:05 +00:00

188 lines
5.8 KiB
Go

// Copyright 2020 FoxyUtils ehf. All rights reserved.
//
// DO NOT EDIT: generated by unioffice ECMA-376 generator
//
// Use of this software package and source code is governed by the terms of the
// UniDoc End User License Agreement (EULA) that is available at:
// https://unidoc.io/eula/
// A trial license code for evaluation can be obtained at https://unidoc.io website.
package pml
import (
"encoding/xml"
"fmt"
"strconv"
"github.com/unidoc/unioffice"
)
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
continue
}
if attr.Name.Local == "snapVertSplitter" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.SnapVertSplitterAttr = &parsed
continue
}
if attr.Name.Local == "vertBarState" {
m.VertBarStateAttr.UnmarshalXMLAttr(attr)
continue
}
if attr.Name.Local == "horzBarState" {
m.HorzBarStateAttr.UnmarshalXMLAttr(attr)
continue
}
if attr.Name.Local == "preferSingleView" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.PreferSingleViewAttr = &parsed
continue
}
}
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"},
xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/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"},
xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/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"},
xml.Name{Space: "http://purl.oclc.org/ooxml/presentationml/main", Local: "extLst"}:
m.ExtLst = NewCT_ExtensionList()
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
return err
}
default:
unioffice.Log("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
}