Skip to content

Commit 8646665

Browse files
committed
- Unify the index row number index of functions SetRowHeight() and GetRowHeight() relate issue qax-os#68;
- Unify the return value data type of functions `SetColWidth()` and `GetColWidth()`; - go test updated
1 parent 14eca84 commit 8646665

File tree

4 files changed

+76
-39
lines changed

4 files changed

+76
-39
lines changed

col.go

+31-26
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ package excelize
22

33
import (
44
"math"
5-
"strconv"
65
"strings"
76
)
87

98
// Define the default cell size and EMU unit of measurement.
109
const (
11-
defaultColWidthPixels int = 64
12-
defaultRowHeightPixels int = 20
13-
EMU int = 9525
10+
defaultColWidthPixels float64 = 64
11+
defaultRowHeightPixels float64 = 20
12+
EMU int = 9525
1413
)
1514

1615
// GetColVisible provides a function to get visible of a single column by given
@@ -157,26 +156,26 @@ func (f *File) positionObjectPixels(sheet string, colStart, rowStart, x1, y1, wi
157156

158157
// Calculate the absolute x offset of the top-left vertex.
159158
for colID := 1; colID <= colStart; colID++ {
160-
xAbs += f.GetColWidth(sheet, colID)
159+
xAbs += f.getColWidth(sheet, colID)
161160
}
162161
xAbs += x1
163162

164163
// Calculate the absolute y offset of the top-left vertex.
165164
// Store the column change to allow optimisations.
166165
for rowID := 1; rowID <= rowStart; rowID++ {
167-
yAbs += f.GetRowHeight(sheet, rowID)
166+
yAbs += f.getRowHeight(sheet, rowID)
168167
}
169168
yAbs += y1
170169

171170
// Adjust start column for offsets that are greater than the col width.
172-
for x1 >= f.GetColWidth(sheet, colStart) {
173-
x1 -= f.GetColWidth(sheet, colStart)
171+
for x1 >= f.getColWidth(sheet, colStart) {
172+
x1 -= f.getColWidth(sheet, colStart)
174173
colStart++
175174
}
176175

177176
// Adjust start row for offsets that are greater than the row height.
178-
for y1 >= f.GetRowHeight(sheet, rowStart) {
179-
y1 -= f.GetRowHeight(sheet, rowStart)
177+
for y1 >= f.getRowHeight(sheet, rowStart) {
178+
y1 -= f.getRowHeight(sheet, rowStart)
180179
rowStart++
181180
}
182181

@@ -188,15 +187,15 @@ func (f *File) positionObjectPixels(sheet string, colStart, rowStart, x1, y1, wi
188187
height += y1
189188

190189
// Subtract the underlying cell widths to find end cell of the object.
191-
for width >= f.GetColWidth(sheet, colEnd) {
190+
for width >= f.getColWidth(sheet, colEnd) {
192191
colEnd++
193-
width -= f.GetColWidth(sheet, colEnd)
192+
width -= f.getColWidth(sheet, colEnd)
194193
}
195194

196195
// Subtract the underlying cell heights to find end cell of the object.
197-
for height >= f.GetRowHeight(sheet, rowEnd) {
196+
for height >= f.getRowHeight(sheet, rowEnd) {
198197
rowEnd++
199-
height -= f.GetRowHeight(sheet, rowEnd)
198+
height -= f.getRowHeight(sheet, rowEnd)
200199
}
201200

202201
// The end vertices are whatever is left from the width and height.
@@ -205,9 +204,9 @@ func (f *File) positionObjectPixels(sheet string, colStart, rowStart, x1, y1, wi
205204
return colStart, rowStart, xAbs, yAbs, colEnd, rowEnd, x2, y2
206205
}
207206

208-
// GetColWidth provides function to get column width in pixels by given sheet
207+
// getColWidth provides function to get column width in pixels by given sheet
209208
// name and column index.
210-
func (f *File) GetColWidth(sheet string, col int) int {
209+
func (f *File) getColWidth(sheet string, col int) int {
211210
xlsx := f.workSheetReader(sheet)
212211
if xlsx.Cols != nil {
213212
var width float64
@@ -221,21 +220,27 @@ func (f *File) GetColWidth(sheet string, col int) int {
221220
}
222221
}
223222
// Optimisation for when the column widths haven't changed.
224-
return defaultColWidthPixels
223+
return int(defaultColWidthPixels)
225224
}
226225

227-
// GetRowHeight provides function to get row height in pixels by given sheet
228-
// name and row index.
229-
func (f *File) GetRowHeight(sheet string, row int) int {
226+
// GetColWidth provides function to get column width by given sheet name and
227+
// column index.
228+
func (f *File) GetColWidth(sheet, column string) float64 {
229+
col := TitleToNumber(strings.ToUpper(column)) + 1
230230
xlsx := f.workSheetReader(sheet)
231-
for _, v := range xlsx.SheetData.Row {
232-
if v.R == row && v.Ht != "" {
233-
ht, _ := strconv.ParseFloat(v.Ht, 64)
234-
return int(convertRowHeightToPixels(ht))
231+
if xlsx.Cols != nil {
232+
var width float64
233+
for _, v := range xlsx.Cols.Col {
234+
if v.Min <= col && col <= v.Max {
235+
width = v.Width
236+
}
237+
}
238+
if width != 0 {
239+
return width
235240
}
236241
}
237-
// Optimisation for when the row heights haven't changed.
238-
return defaultRowHeightPixels
242+
// Optimisation for when the column widths haven't changed.
243+
return defaultColWidthPixels
239244
}
240245

241246
// convertColWidthToPixels provieds function to convert the width of a cell from

excelize_test.go

+17-11
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,30 @@ func TestNewFile(t *testing.T) {
177177
}
178178
}
179179

180-
func TestSetColWidth(t *testing.T) {
180+
func TestColWidth(t *testing.T) {
181181
xlsx := NewFile()
182182
xlsx.SetColWidth("sheet1", "B", "A", 12)
183183
xlsx.SetColWidth("sheet1", "A", "B", 12)
184+
xlsx.GetColWidth("sheet1", "A")
185+
xlsx.GetColWidth("sheet1", "C")
184186
err := xlsx.SaveAs("./test/Workbook_4.xlsx")
185187
if err != nil {
186188
t.Log(err)
187189
}
190+
convertRowHeightToPixels(0)
191+
}
192+
193+
func TestRowHeight(t *testing.T) {
194+
xlsx := NewFile()
195+
xlsx.SetRowHeight("Sheet1", 0, 50)
196+
xlsx.SetRowHeight("Sheet1", 3, 90)
197+
t.Log(xlsx.GetRowHeight("Sheet1", 1))
198+
t.Log(xlsx.GetRowHeight("Sheet1", 3))
199+
err := xlsx.SaveAs("./test/Workbook_5.xlsx")
200+
if err != nil {
201+
t.Log(err)
202+
}
203+
convertColWidthToPixels(0)
188204
}
189205

190206
func TestSetCellHyperLink(t *testing.T) {
@@ -268,16 +284,6 @@ func TestMergeCell(t *testing.T) {
268284
}
269285
}
270286

271-
func TestSetRowHeight(t *testing.T) {
272-
xlsx := NewFile()
273-
xlsx.SetRowHeight("Sheet1", 0, 50)
274-
xlsx.SetRowHeight("Sheet1", 3, 90)
275-
err := xlsx.SaveAs("./test/Workbook_5.xlsx")
276-
if err != nil {
277-
t.Log(err)
278-
}
279-
}
280-
281287
func TestSetCellStyleAlignment(t *testing.T) {
282288
xlsx, err := OpenFile("./test/Workbook_2.xlsx")
283289
if err != nil {

rows.go

+27-1
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,36 @@ func (f *File) SetRowHeight(sheet string, rowIndex int, height float64) {
116116
rows := rowIndex + 1
117117
cells := 0
118118
completeRow(xlsx, rows, cells)
119-
xlsx.SheetData.Row[rowIndex].Ht = strconv.FormatFloat(height, 'f', -1, 64)
119+
xlsx.SheetData.Row[rowIndex].Ht = height
120120
xlsx.SheetData.Row[rowIndex].CustomHeight = true
121121
}
122122

123+
// getRowHeight provides function to get row height in pixels by given sheet
124+
// name and row index.
125+
func (f *File) getRowHeight(sheet string, row int) int {
126+
xlsx := f.workSheetReader(sheet)
127+
for _, v := range xlsx.SheetData.Row {
128+
if v.R == row+1 && v.Ht != 0 {
129+
return int(convertRowHeightToPixels(v.Ht))
130+
}
131+
}
132+
// Optimisation for when the row heights haven't changed.
133+
return int(defaultRowHeightPixels)
134+
}
135+
136+
// GetRowHeight provides function to get row height by given worksheet name and
137+
// row index.
138+
func (f *File) GetRowHeight(sheet string, row int) float64 {
139+
xlsx := f.workSheetReader(sheet)
140+
for _, v := range xlsx.SheetData.Row {
141+
if v.R == row+1 && v.Ht != 0 {
142+
return v.Ht
143+
}
144+
}
145+
// Optimisation for when the row heights haven't changed.
146+
return defaultRowHeightPixels
147+
}
148+
123149
// readXMLSST read xmlSST simple function.
124150
func readXMLSST(f *File) (*xlsxSST, error) {
125151
shardStrings := xlsxSST{}

xmlWorksheet.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ type xlsxRow struct {
263263
CustomFormat bool `xml:"customFormat,attr,omitempty"`
264264
CustomHeight bool `xml:"customHeight,attr,omitempty"`
265265
Hidden bool `xml:"hidden,attr,omitempty"`
266-
Ht string `xml:"ht,attr,omitempty"`
266+
Ht float64 `xml:"ht,attr,omitempty"`
267267
OutlineLevel uint8 `xml:"outlineLevel,attr,omitempty"`
268268
Ph bool `xml:"ph,attr,omitempty"`
269269
R int `xml:"r,attr,omitempty"`

0 commit comments

Comments
 (0)