mirror of
https://github.com/fumiama/go-docx.git
synced 2026-06-05 07:40:24 +08:00
125 lines
3.3 KiB
Go
125 lines
3.3 KiB
Go
package docxlib
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"io"
|
|
)
|
|
|
|
// Run is part of a paragraph that has its own style. It could be
|
|
// a piece of text in bold, or a link
|
|
type Run struct {
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main r,omitempty"`
|
|
RunProperties *RunProperties `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main rPr,omitempty"`
|
|
InstrText string `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main instrText,omitempty"`
|
|
Text *Text
|
|
Drawing *Drawing
|
|
}
|
|
|
|
func (r *Run) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
for {
|
|
t, err := d.Token()
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
|
|
switch tt := t.(type) {
|
|
case xml.StartElement:
|
|
switch tt.Name.Local {
|
|
case "rPr":
|
|
var value RunProperties
|
|
d.DecodeElement(&value, &start)
|
|
r.RunProperties = &value
|
|
case "instrText":
|
|
var value string
|
|
d.DecodeElement(&value, &start)
|
|
r.InstrText = value
|
|
case "t":
|
|
var value Text
|
|
d.DecodeElement(&value, &start)
|
|
r.Text = &value
|
|
case "drawing":
|
|
var value Drawing
|
|
d.DecodeElement(&value, &start)
|
|
r.Drawing = &value
|
|
default:
|
|
continue
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// RunProperties encapsulates visual properties of a run
|
|
type RunProperties struct {
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main rPr,omitempty"`
|
|
Color *Color `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main color,omitempty"`
|
|
Size *Size `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main sz,omitempty"`
|
|
RunStyle *RunStyle `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main rStyle,omitempty"`
|
|
Style *Style `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main pStyle,omitempty"`
|
|
}
|
|
|
|
func (r *RunProperties) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
for {
|
|
t, err := d.Token()
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
|
|
switch tt := t.(type) {
|
|
case xml.StartElement:
|
|
switch tt.Name.Local {
|
|
case "color":
|
|
var value Color
|
|
value.Val = getAtt(tt.Attr, "val")
|
|
r.Color = &value
|
|
case "sz":
|
|
var value Size
|
|
value.Val = getAtt(tt.Attr, "val")
|
|
r.Size = &value
|
|
case "rStyle":
|
|
var value RunStyle
|
|
value.Val = getAtt(tt.Attr, "val")
|
|
r.RunStyle = &value
|
|
case "pStyle":
|
|
var value Style
|
|
value.Val = getAtt(tt.Attr, "val")
|
|
r.Style = &value
|
|
default:
|
|
continue
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// RunStyle contains styling for a run
|
|
type RunStyle struct {
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main rStyle,omitempty"`
|
|
Val string `xml:"w:val,attr"`
|
|
}
|
|
|
|
// Style contains styling for a paragraph
|
|
type Style struct {
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main pStyle,omitempty"`
|
|
Val string `xml:"w:val,attr"`
|
|
}
|
|
|
|
// Color contains the sound of music. :D
|
|
// I'm kidding. It contains the color
|
|
type Color struct {
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main color"`
|
|
Val string `xml:"w:val,attr"`
|
|
}
|
|
|
|
// Size contains the font size
|
|
type Size struct {
|
|
XMLName xml.Name `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main sz"`
|
|
Val string `xml:"w:val,attr"`
|
|
}
|