forked from unidoc/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshapeproperties.go
125 lines (107 loc) · 3.16 KB
/
shapeproperties.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// Copyright 2017 FoxyUtils ehf. 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 on https://unidoc.io.
package drawing
import (
"github.com/unidoc/unioffice"
"github.com/unidoc/unioffice/color"
"github.com/unidoc/unioffice/measurement"
"github.com/unidoc/unioffice/schema/soo/dml"
)
type ShapeProperties struct {
x *dml.CT_ShapeProperties
}
func MakeShapeProperties(x *dml.CT_ShapeProperties) ShapeProperties {
return ShapeProperties{x}
}
// X returns the inner wrapped XML type.
func (s ShapeProperties) X() *dml.CT_ShapeProperties {
return s.x
}
func (s ShapeProperties) clearFill() {
s.x.NoFill = nil
s.x.BlipFill = nil
s.x.GradFill = nil
s.x.GrpFill = nil
s.x.SolidFill = nil
s.x.PattFill = nil
}
func (s ShapeProperties) SetNoFill() {
s.clearFill()
s.x.NoFill = dml.NewCT_NoFillProperties()
}
func (s ShapeProperties) SetSolidFill(c color.Color) {
s.clearFill()
s.x.SolidFill = dml.NewCT_SolidColorFillProperties()
s.x.SolidFill.SrgbClr = dml.NewCT_SRgbColor()
s.x.SolidFill.SrgbClr.ValAttr = *c.AsRGBString()
}
func (s ShapeProperties) LineProperties() LineProperties {
if s.x.Ln == nil {
s.x.Ln = dml.NewCT_LineProperties()
}
return LineProperties{s.x.Ln}
}
func (s ShapeProperties) ensureXfrm() {
if s.x.Xfrm == nil {
s.x.Xfrm = dml.NewCT_Transform2D()
}
}
// SetWidth sets the width of the shape.
func (s ShapeProperties) SetWidth(w measurement.Distance) {
s.ensureXfrm()
if s.x.Xfrm.Ext == nil {
s.x.Xfrm.Ext = dml.NewCT_PositiveSize2D()
}
s.x.Xfrm.Ext.CxAttr = int64(w / measurement.EMU)
}
// SetHeight sets the height of the shape.
func (s ShapeProperties) SetHeight(h measurement.Distance) {
s.ensureXfrm()
if s.x.Xfrm.Ext == nil {
s.x.Xfrm.Ext = dml.NewCT_PositiveSize2D()
}
s.x.Xfrm.Ext.CyAttr = int64(h / measurement.EMU)
}
// SetSize sets the width and height of the shape.
func (s ShapeProperties) SetSize(w, h measurement.Distance) {
s.SetWidth(w)
s.SetHeight(h)
}
// SetPosition sets the position of the shape.
func (s ShapeProperties) SetPosition(x, y measurement.Distance) {
s.ensureXfrm()
if s.x.Xfrm.Off == nil {
s.x.Xfrm.Off = dml.NewCT_Point2D()
}
s.x.Xfrm.Off.XAttr.ST_CoordinateUnqualified = unioffice.Int64(int64(x / measurement.EMU))
s.x.Xfrm.Off.YAttr.ST_CoordinateUnqualified = unioffice.Int64(int64(y / measurement.EMU))
}
// SetGeometry sets the shape type of the shape
func (s ShapeProperties) SetGeometry(g dml.ST_ShapeType) {
if s.x.PrstGeom == nil {
s.x.PrstGeom = dml.NewCT_PresetGeometry2D()
}
s.x.PrstGeom.PrstAttr = g
}
// SetFlipHorizontal controls if the shape is flipped horizontally.
func (s ShapeProperties) SetFlipHorizontal(b bool) {
s.ensureXfrm()
if !b {
s.x.Xfrm.FlipHAttr = nil
} else {
s.x.Xfrm.FlipHAttr = unioffice.Bool(true)
}
}
// SetFlipVertical controls if the shape is flipped vertically.
func (s ShapeProperties) SetFlipVertical(b bool) {
s.ensureXfrm()
if !b {
s.x.Xfrm.FlipVAttr = nil
} else {
s.x.Xfrm.FlipVAttr = unioffice.Bool(true)
}
}