|
|
|
@ -9,16 +9,16 @@ import (
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"gioui.org/app"
|
|
|
|
|
"gioui.org/font/gofont"
|
|
|
|
|
"gioui.org/op"
|
|
|
|
|
"gioui.org/text"
|
|
|
|
|
"gioui.org/layout"
|
|
|
|
|
"gioui.org/unit"
|
|
|
|
|
"gioui.org/font/gofont"
|
|
|
|
|
"gioui.org/layout"
|
|
|
|
|
"gioui.org/op"
|
|
|
|
|
"gioui.org/text"
|
|
|
|
|
"gioui.org/unit"
|
|
|
|
|
"gioui.org/widget"
|
|
|
|
|
"gioui.org/widget/material"
|
|
|
|
|
"gioui.org/widget/material"
|
|
|
|
|
|
|
|
|
|
"github.com/unidoc/unioffice/common/license"
|
|
|
|
|
"github.com/unidoc/unioffice/document"
|
|
|
|
|
"github.com/unidoc/unioffice/common/license"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
@ -33,7 +33,7 @@ func init() {
|
|
|
|
|
func main() {
|
|
|
|
|
go func() {
|
|
|
|
|
w := new(app.Window)
|
|
|
|
|
w.Option(app.Title("Fusionner DOCX"), app.Size(unit.Dp(800), unit.Dp(600)))
|
|
|
|
|
w.Option(app.Title("Fusionner DOCX"), app.Size(unit.Dp(800), unit.Dp(600)))
|
|
|
|
|
if err := loop(w); err != nil {
|
|
|
|
|
log.Fatal(err)
|
|
|
|
|
}
|
|
|
|
@ -43,23 +43,23 @@ func main() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func loop(w *app.Window) error {
|
|
|
|
|
var ops op.Ops
|
|
|
|
|
var ops op.Ops
|
|
|
|
|
|
|
|
|
|
th := material.NewTheme()
|
|
|
|
|
th.Shaper = text.NewShaper(text.WithCollection(gofont.Collection()))
|
|
|
|
|
th := material.NewTheme()
|
|
|
|
|
th.Shaper = text.NewShaper(text.WithCollection(gofont.Collection()))
|
|
|
|
|
var input widget.Editor
|
|
|
|
|
input.SingleLine = true
|
|
|
|
|
var button widget.Clickable
|
|
|
|
|
var button widget.Clickable
|
|
|
|
|
|
|
|
|
|
for {
|
|
|
|
|
evt := w.Event()
|
|
|
|
|
switch e := evt.(type) {
|
|
|
|
|
evt := w.Event()
|
|
|
|
|
switch e := evt.(type) {
|
|
|
|
|
case app.DestroyEvent:
|
|
|
|
|
return e.Err
|
|
|
|
|
case app.FrameEvent:
|
|
|
|
|
gtx := app.NewContext(&ops, e)
|
|
|
|
|
layout.Flex{
|
|
|
|
|
Axis: layout.Vertical,
|
|
|
|
|
Axis: layout.Vertical,
|
|
|
|
|
Alignment: layout.Middle,
|
|
|
|
|
}.Layout(gtx,
|
|
|
|
|
layout.Rigid(material.H1(th, "Sélectionner un dossier").Layout),
|
|
|
|
@ -92,7 +92,7 @@ func fusionnerDocx(dossier string) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, fichier := range fichiers {
|
|
|
|
|
if filepath.Ext(fichier.Name()) == ".doc" {
|
|
|
|
|
if filepath.Ext(fichier.Name()) == ".docx" {
|
|
|
|
|
cheminFichier := filepath.Join(dossier, fichier.Name())
|
|
|
|
|
doc, err := document.Open(cheminFichier)
|
|
|
|
|
if err != nil {
|
|
|
|
@ -102,12 +102,12 @@ func fusionnerDocx(dossier string) {
|
|
|
|
|
|
|
|
|
|
for _, para := range doc.Paragraphs() {
|
|
|
|
|
newPara := docFusionne.AddParagraph()
|
|
|
|
|
// newPara.Properties().SetAlignment(para.Properties().Alignment())
|
|
|
|
|
// newPara.Properties().SetAlignment(para.Properties().Alignment())
|
|
|
|
|
for _, run := range para.Runs() {
|
|
|
|
|
newRun := newPara.AddRun()
|
|
|
|
|
newRun.Properties().SetBold(run.Properties().IsBold())
|
|
|
|
|
newRun.Properties().SetItalic(run.Properties().IsItalic())
|
|
|
|
|
// newRun.Properties().SetUnderline(run.Properties().IsUnderline())
|
|
|
|
|
// newRun.Properties().SetUnderline(run.Properties().IsUnderline())
|
|
|
|
|
newRun.AddText(run.Text())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -123,4 +123,3 @@ func fusionnerDocx(dossier string) {
|
|
|
|
|
|
|
|
|
|
fmt.Printf("Documents fusionnés dans %s\n", nomFichierSortie)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|