// 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 drawingml import ( "encoding/xml" "fmt" "log" "strconv" ) type CT_TableProperties struct { RtlAttr *bool FirstRowAttr *bool FirstColAttr *bool LastRowAttr *bool LastColAttr *bool BandRowAttr *bool BandColAttr *bool NoFill *CT_NoFillProperties SolidFill *CT_SolidColorFillProperties GradFill *CT_GradientFillProperties BlipFill *CT_BlipFillProperties PattFill *CT_PatternFillProperties GrpFill *CT_GroupFillProperties EffectLst *CT_EffectList EffectDag *CT_EffectContainer Choice *CT_TablePropertiesChoice ExtLst *CT_OfficeArtExtensionList } func NewCT_TableProperties() *CT_TableProperties { ret := &CT_TableProperties{} return ret } func (m *CT_TableProperties) MarshalXML(e *xml.Encoder, start xml.StartElement) error { if m.RtlAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "rtl"}, Value: fmt.Sprintf("%v", *m.RtlAttr)}) } if m.FirstRowAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "firstRow"}, Value: fmt.Sprintf("%v", *m.FirstRowAttr)}) } if m.FirstColAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "firstCol"}, Value: fmt.Sprintf("%v", *m.FirstColAttr)}) } if m.LastRowAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "lastRow"}, Value: fmt.Sprintf("%v", *m.LastRowAttr)}) } if m.LastColAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "lastCol"}, Value: fmt.Sprintf("%v", *m.LastColAttr)}) } if m.BandRowAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "bandRow"}, Value: fmt.Sprintf("%v", *m.BandRowAttr)}) } if m.BandColAttr != nil { start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "bandCol"}, Value: fmt.Sprintf("%v", *m.BandColAttr)}) } e.EncodeToken(start) if m.NoFill != nil { senoFill := xml.StartElement{Name: xml.Name{Local: "a:noFill"}} e.EncodeElement(m.NoFill, senoFill) } if m.SolidFill != nil { sesolidFill := xml.StartElement{Name: xml.Name{Local: "a:solidFill"}} e.EncodeElement(m.SolidFill, sesolidFill) } if m.GradFill != nil { segradFill := xml.StartElement{Name: xml.Name{Local: "a:gradFill"}} e.EncodeElement(m.GradFill, segradFill) } if m.BlipFill != nil { seblipFill := xml.StartElement{Name: xml.Name{Local: "a:blipFill"}} e.EncodeElement(m.BlipFill, seblipFill) } if m.PattFill != nil { sepattFill := xml.StartElement{Name: xml.Name{Local: "a:pattFill"}} e.EncodeElement(m.PattFill, sepattFill) } if m.GrpFill != nil { segrpFill := xml.StartElement{Name: xml.Name{Local: "a:grpFill"}} e.EncodeElement(m.GrpFill, segrpFill) } if m.EffectLst != nil { seeffectLst := xml.StartElement{Name: xml.Name{Local: "a:effectLst"}} e.EncodeElement(m.EffectLst, seeffectLst) } if m.EffectDag != nil { seeffectDag := xml.StartElement{Name: xml.Name{Local: "a:effectDag"}} e.EncodeElement(m.EffectDag, seeffectDag) } if m.Choice != nil { m.Choice.MarshalXML(e, start) } if m.ExtLst != nil { seextLst := xml.StartElement{Name: xml.Name{Local: "a:extLst"}} e.EncodeElement(m.ExtLst, seextLst) } e.EncodeToken(xml.EndElement{Name: start.Name}) return nil } func (m *CT_TableProperties) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { // initialize to default for _, attr := range start.Attr { if attr.Name.Local == "rtl" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.RtlAttr = &parsed } if attr.Name.Local == "firstRow" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.FirstRowAttr = &parsed } if attr.Name.Local == "firstCol" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.FirstColAttr = &parsed } if attr.Name.Local == "lastRow" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.LastRowAttr = &parsed } if attr.Name.Local == "lastCol" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.LastColAttr = &parsed } if attr.Name.Local == "bandRow" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.BandRowAttr = &parsed } if attr.Name.Local == "bandCol" { parsed, err := strconv.ParseBool(attr.Value) if err != nil { return err } m.BandColAttr = &parsed } } lCT_TableProperties: for { tok, err := d.Token() if err != nil { return err } switch el := tok.(type) { case xml.StartElement: switch el.Name.Local { case "noFill": m.NoFill = NewCT_NoFillProperties() if err := d.DecodeElement(m.NoFill, &el); err != nil { return err } case "solidFill": m.SolidFill = NewCT_SolidColorFillProperties() if err := d.DecodeElement(m.SolidFill, &el); err != nil { return err } case "gradFill": m.GradFill = NewCT_GradientFillProperties() if err := d.DecodeElement(m.GradFill, &el); err != nil { return err } case "blipFill": m.BlipFill = NewCT_BlipFillProperties() if err := d.DecodeElement(m.BlipFill, &el); err != nil { return err } case "pattFill": m.PattFill = NewCT_PatternFillProperties() if err := d.DecodeElement(m.PattFill, &el); err != nil { return err } case "grpFill": m.GrpFill = NewCT_GroupFillProperties() if err := d.DecodeElement(m.GrpFill, &el); err != nil { return err } case "effectLst": m.EffectLst = NewCT_EffectList() if err := d.DecodeElement(m.EffectLst, &el); err != nil { return err } case "effectDag": m.EffectDag = NewCT_EffectContainer() if err := d.DecodeElement(m.EffectDag, &el); err != nil { return err } case "tableStyle": m.Choice = NewCT_TablePropertiesChoice() if err := d.DecodeElement(&m.Choice.TableStyle, &el); err != nil { return err } case "tableStyleId": m.Choice = NewCT_TablePropertiesChoice() if err := d.DecodeElement(&m.Choice.TableStyleId, &el); err != nil { return err } case "extLst": m.ExtLst = NewCT_OfficeArtExtensionList() if err := d.DecodeElement(m.ExtLst, &el); err != nil { return err } default: log.Printf("skipping unsupported element on CT_TableProperties %v", el.Name) if err := d.Skip(); err != nil { return err } } case xml.EndElement: break lCT_TableProperties case xml.CharData: } } return nil } // Validate validates the CT_TableProperties and its children func (m *CT_TableProperties) Validate() error { return m.ValidateWithPath("CT_TableProperties") } // ValidateWithPath validates the CT_TableProperties and its children, prefixing error messages with path func (m *CT_TableProperties) ValidateWithPath(path string) error { if m.NoFill != nil { if err := m.NoFill.ValidateWithPath(path + "/NoFill"); err != nil { return err } } if m.SolidFill != nil { if err := m.SolidFill.ValidateWithPath(path + "/SolidFill"); err != nil { return err } } if m.GradFill != nil { if err := m.GradFill.ValidateWithPath(path + "/GradFill"); err != nil { return err } } if m.BlipFill != nil { if err := m.BlipFill.ValidateWithPath(path + "/BlipFill"); err != nil { return err } } if m.PattFill != nil { if err := m.PattFill.ValidateWithPath(path + "/PattFill"); err != nil { return err } } if m.GrpFill != nil { if err := m.GrpFill.ValidateWithPath(path + "/GrpFill"); err != nil { return err } } if m.EffectLst != nil { if err := m.EffectLst.ValidateWithPath(path + "/EffectLst"); err != nil { return err } } if m.EffectDag != nil { if err := m.EffectDag.ValidateWithPath(path + "/EffectDag"); err != nil { return err } } if m.Choice != nil { if err := m.Choice.ValidateWithPath(path + "/Choice"); err != nil { return err } } if m.ExtLst != nil { if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil { return err } } return nil }