Todd e83404616d Revert "schema: apply more default values"
This caused problems with Libre.

This reverts commit 59b2711e1b87be534c9cd3d155710d13cfe7743b.
2017-09-05 06:33:38 -05:00

121 lines
3.3 KiB
Go

// Copyright 2017 Baliance. All rights reserved.
//
// 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 spreadsheetml
import (
"encoding/xml"
"fmt"
"strconv"
)
type CT_PrintOptions struct {
// Horizontal Centered
HorizontalCenteredAttr *bool
// Vertical Centered
VerticalCenteredAttr *bool
// Print Headings
HeadingsAttr *bool
// Print Grid Lines
GridLinesAttr *bool
// Grid Lines Set
GridLinesSetAttr *bool
}
func NewCT_PrintOptions() *CT_PrintOptions {
ret := &CT_PrintOptions{}
return ret
}
func (m *CT_PrintOptions) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.HorizontalCenteredAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "horizontalCentered"},
Value: fmt.Sprintf("%d", b2i(*m.HorizontalCenteredAttr))})
}
if m.VerticalCenteredAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "verticalCentered"},
Value: fmt.Sprintf("%d", b2i(*m.VerticalCenteredAttr))})
}
if m.HeadingsAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "headings"},
Value: fmt.Sprintf("%d", b2i(*m.HeadingsAttr))})
}
if m.GridLinesAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "gridLines"},
Value: fmt.Sprintf("%d", b2i(*m.GridLinesAttr))})
}
if m.GridLinesSetAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "gridLinesSet"},
Value: fmt.Sprintf("%d", b2i(*m.GridLinesSetAttr))})
}
e.EncodeToken(start)
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_PrintOptions) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
for _, attr := range start.Attr {
if attr.Name.Local == "horizontalCentered" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.HorizontalCenteredAttr = &parsed
}
if attr.Name.Local == "verticalCentered" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.VerticalCenteredAttr = &parsed
}
if attr.Name.Local == "headings" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.HeadingsAttr = &parsed
}
if attr.Name.Local == "gridLines" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.GridLinesAttr = &parsed
}
if attr.Name.Local == "gridLinesSet" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.GridLinesSetAttr = &parsed
}
}
// skip any extensions we may find, but don't support
for {
tok, err := d.Token()
if err != nil {
return fmt.Errorf("parsing CT_PrintOptions: %s", err)
}
if el, ok := tok.(xml.EndElement); ok && el.Name == start.Name {
break
}
}
return nil
}
// Validate validates the CT_PrintOptions and its children
func (m *CT_PrintOptions) Validate() error {
return m.ValidateWithPath("CT_PrintOptions")
}
// ValidateWithPath validates the CT_PrintOptions and its children, prefixing error messages with path
func (m *CT_PrintOptions) ValidateWithPath(path string) error {
return nil
}