unioffice/spreadsheet/datavalidationcompare.go

59 lines
2.3 KiB
Go
Raw Normal View History

// 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 (
sml "baliance.com/gooxml/schema/schemas.openxmlformats.org/spreadsheetml"
)
// DVCompareType is a comparison type for a data validation rule. This restricts
// the input format of the cell.
type DVCompareType byte
const (
DVCompareTypeWholeNumber = DVCompareType(sml.ST_DataValidationTypeWhole)
DVCompareTypeDecimal = DVCompareType(sml.ST_DataValidationTypeDecimal)
DVCompareTypeDate = DVCompareType(sml.ST_DataValidationTypeDate)
DVCompareTypeTime = DVCompareType(sml.ST_DataValidationTypeTime)
DVompareTypeTextLength = DVCompareType(sml.ST_DataValidationTypeTextLength)
)
// DVCompareOp is a comparison operator for a data validation rule.
type DVCompareOp byte
const (
DVCompareOpEqual = DVCompareOp(sml.ST_DataValidationOperatorEqual)
DVCompareOpBetween = DVCompareOp(sml.ST_DataValidationOperatorBetween)
DVCompareOpNotBetween = DVCompareOp(sml.ST_DataValidationOperatorNotBetween)
DVCompareOpNotEqual = DVCompareOp(sml.ST_DataValidationOperatorNotEqual)
DVCompareOpGreater = DVCompareOp(sml.ST_DataValidationOperatorGreaterThan)
DVCompareOpGreaterEqual = DVCompareOp(sml.ST_DataValidationOperatorGreaterThanOrEqual)
DVCompareOpLess = DVCompareOp(sml.ST_DataValidationOperatorLessThan)
DVCompareOpLessEqual = DVCompareOp(sml.ST_DataValidationOperatorLessThanOrEqual)
)
const (
DVOpGreater = sml.ST_DataValidationOperatorGreaterThanOrEqual
)
// DataValidationCompare is a view on a data validation rule that is oriented
// towards value comparisons.
type DataValidationCompare struct {
x *sml.CT_DataValidation
}
// SetValue sets the first value to be used in the comparison. For comparisons
// that need only one value, this is the only value used. For comparisons like
// 'between' that require two values, SetValue2 must also be used.
func (d DataValidationCompare) SetValue(v string) {
d.x.Formula1 = &v
}
func (d DataValidationCompare) SetValue2(v string) {
d.x.Formula2 = &v
}