2017-08-28 20:56:18 -05:00
|
|
|
// 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 spreadsheet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"baliance.com/gooxml"
|
2017-09-03 18:39:35 -05:00
|
|
|
"baliance.com/gooxml/common"
|
2017-09-03 11:05:27 -05:00
|
|
|
sml "baliance.com/gooxml/schema/schemas.openxmlformats.org/spreadsheetml"
|
2017-08-28 20:56:18 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Sheet is a single sheet within a workbook.
|
|
|
|
type Sheet struct {
|
|
|
|
w *Workbook
|
2017-09-03 11:05:27 -05:00
|
|
|
x *sml.CT_Sheet
|
|
|
|
ws *sml.Worksheet
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddRow adds a new row to a sheet.
|
|
|
|
func (s Sheet) AddRow() Row {
|
2017-09-03 11:05:27 -05:00
|
|
|
r := sml.NewCT_Row()
|
2017-08-28 20:56:18 -05:00
|
|
|
r.RAttr = gooxml.Uint32(uint32(len(s.ws.SheetData.Row) + 1))
|
|
|
|
s.ws.SheetData.Row = append(s.ws.SheetData.Row, r)
|
|
|
|
return Row{s.w, r}
|
|
|
|
}
|
|
|
|
|
2017-09-02 14:54:17 -05:00
|
|
|
// Name returns the sheet name
|
|
|
|
func (s Sheet) Name() string {
|
|
|
|
return s.x.NameAttr
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetName sets the sheet name.
|
|
|
|
func (s Sheet) SetName(name string) {
|
|
|
|
s.x.NameAttr = name
|
|
|
|
}
|
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
// Validate validates the sheet, returning an error if it is found to be invalid.
|
|
|
|
func (s Sheet) Validate() error {
|
|
|
|
return s.x.Validate()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateWithPath validates the sheet passing path informaton for a better
|
|
|
|
// error message
|
|
|
|
func (s Sheet) ValidateWithPath(path string) error {
|
|
|
|
return s.x.ValidateWithPath(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rows returns all of the rows in a sheet.
|
|
|
|
func (s Sheet) Rows() []Row {
|
|
|
|
ret := []Row{}
|
|
|
|
for _, r := range s.ws.SheetData.Row {
|
|
|
|
ret = append(ret, Row{s.w, r})
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2017-09-03 18:39:35 -05:00
|
|
|
|
|
|
|
// SetDrawing sets the worksheet drawing. A worksheet can have a reference to a
|
|
|
|
// single drawing, but the drawing can have many charts.
|
|
|
|
func (s Sheet) SetDrawing(d Drawing) {
|
|
|
|
var rel common.Relationships
|
|
|
|
for i, wks := range s.w.xws {
|
|
|
|
if wks == s.ws {
|
|
|
|
rel = s.w.xwsRels[i]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// add relationship from drawing to the sheet
|
|
|
|
var drawingID string
|
|
|
|
for i, dr := range d.wb.drawings {
|
|
|
|
if dr == d.x {
|
|
|
|
rel := rel.AddAutoRelationship(gooxml.DocTypeSpreadsheet, i+1, gooxml.DrawingType)
|
|
|
|
drawingID = rel.ID()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s.ws.Drawing = sml.NewCT_Drawing()
|
|
|
|
s.ws.Drawing.IdAttr = drawingID
|
|
|
|
}
|