1
yomichan-import/yomichan-gtk/main.go

129 lines
3.2 KiB
Go
Raw Normal View History

2017-04-10 00:53:44 +00:00
package main
import (
2021-01-02 00:18:55 +00:00
"fmt"
2017-04-14 04:15:40 +00:00
"path/filepath"
2017-04-10 01:15:19 +00:00
2017-04-10 00:53:44 +00:00
"github.com/andlabs/ui"
2020-12-06 04:46:12 +00:00
_ "github.com/andlabs/ui/winmanifest"
2021-01-01 22:31:58 +00:00
2022-07-04 03:59:33 +00:00
yomichan "foosoft.net/projects/yomichan-import"
2017-04-10 00:53:44 +00:00
)
2021-01-02 00:18:55 +00:00
func main() {
ui.Main(func() {
2017-06-26 00:36:56 +00:00
pathSourceEntry := ui.NewEntry()
pathSourceButton := ui.NewButton("Browse...")
pathSourceBox := ui.NewHorizontalBox()
pathSourceBox.Append(pathSourceEntry, true)
pathSourceBox.Append(pathSourceButton, false)
pathTargetEntry := ui.NewEntry()
pathTargetButton := ui.NewButton("Browse...")
pathTargetBox := ui.NewHorizontalBox()
pathTargetBox.Append(pathTargetEntry, true)
pathTargetBox.Append(pathTargetButton, false)
2017-04-10 00:53:44 +00:00
2021-01-02 00:18:55 +00:00
importButton := ui.NewButton("Import dictionary...")
2017-04-10 00:53:44 +00:00
titleEntry := ui.NewEntry()
2021-01-01 22:31:58 +00:00
titleEntry.SetText(yomichan.DefaultTitle)
2017-06-26 01:06:41 +00:00
languageEntry := ui.NewEntry()
2021-01-01 22:31:58 +00:00
languageEntry.SetText(yomichan.DefaultLanguage)
2017-04-10 00:53:44 +00:00
mainBox := ui.NewVerticalBox()
2017-06-26 01:06:41 +00:00
mainBox.Append(ui.NewLabel("Path to dictionary source (CATALOGS file for EPWING)"), false)
2017-06-26 00:36:56 +00:00
mainBox.Append(pathSourceBox, false)
mainBox.Append(ui.NewLabel("Path to dictionary target ZIP file"), false)
mainBox.Append(pathTargetBox, false)
2017-06-26 01:06:41 +00:00
mainBox.Append(ui.NewLabel("Dictionary display title (blank for default)"), false)
2017-04-10 00:53:44 +00:00
mainBox.Append(titleEntry, false)
2017-06-26 01:06:41 +00:00
mainBox.Append(ui.NewLabel("Dictionary glossary language (blank for English)"), false)
mainBox.Append(languageEntry, false)
2017-04-14 16:28:50 +00:00
mainBox.Append(ui.NewVerticalBox(), true)
2017-04-10 00:53:44 +00:00
mainBox.Append(importButton, false)
2021-01-02 00:18:55 +00:00
window := ui.NewWindow("Yomichan Import", 640, 280, false)
2017-04-10 00:53:44 +00:00
window.SetMargined(true)
window.SetChild(mainBox)
2017-06-26 00:36:56 +00:00
pathSourceButton.OnClicked(func(*ui.Button) {
2017-04-10 00:53:44 +00:00
if path := ui.OpenFile(window); len(path) > 0 {
2017-06-26 00:36:56 +00:00
pathSourceEntry.SetText(path)
}
})
pathTargetButton.OnClicked(func(*ui.Button) {
if path := ui.SaveFile(window); len(path) > 0 {
if len(filepath.Ext(path)) == 0 {
path += ".zip"
}
pathTargetEntry.SetText(path)
2017-04-10 00:53:44 +00:00
}
})
2021-01-02 00:24:58 +00:00
setBusyState := func(busy bool) {
if busy {
importButton.Disable()
importButton.SetText("Importing, please wait...")
} else {
importButton.SetText("Start dictionary import")
importButton.Enable()
}
}
2017-04-10 01:15:19 +00:00
importButton.OnClicked(func(*ui.Button) {
2021-01-02 00:24:58 +00:00
setBusyState(true)
2017-04-10 01:15:19 +00:00
2017-06-26 00:36:56 +00:00
inputPath := pathSourceEntry.Text()
2021-01-02 00:18:55 +00:00
if filepath.Base(inputPath) == "CATALOGS" {
inputPath = filepath.Dir(inputPath)
}
2017-06-26 00:36:56 +00:00
if len(inputPath) == 0 {
2017-06-26 01:06:41 +00:00
ui.MsgBoxError(window, "Error", "You must specify a dictionary source path")
2021-01-02 00:24:58 +00:00
setBusyState(false)
2017-04-10 01:15:19 +00:00
return
}
2017-06-26 00:36:56 +00:00
outputPath := pathTargetEntry.Text()
if len(outputPath) == 0 {
2017-06-26 01:06:41 +00:00
ui.MsgBoxError(window, "Error", "You must specify a dictionary target path")
2021-01-02 00:24:58 +00:00
setBusyState(false)
2017-06-26 01:06:41 +00:00
return
}
2017-04-10 01:45:03 +00:00
go func() {
2021-01-02 00:18:55 +00:00
err := yomichan.ExportDb(
2021-01-01 22:31:58 +00:00
inputPath,
outputPath,
yomichan.DefaultFormat,
languageEntry.Text(),
titleEntry.Text(),
yomichan.DefaultStride,
yomichan.DefaultPretty,
)
2021-01-02 00:18:55 +00:00
ui.QueueMain(func() {
2021-01-02 00:24:58 +00:00
setBusyState(false)
2021-01-02 00:18:55 +00:00
if err == nil {
2021-01-02 00:24:58 +00:00
ui.MsgBox(window, "Success", "Conversion process complete!")
2021-01-02 00:18:55 +00:00
} else {
2021-01-02 01:18:22 +00:00
ui.MsgBox(window, "Error", fmt.Sprintf("Conversion process failed: %s", err.Error()))
2021-01-02 00:18:55 +00:00
}
})
2017-04-10 01:45:03 +00:00
}()
2017-04-10 01:15:19 +00:00
})
2017-04-10 00:53:44 +00:00
window.OnClosing(func(*ui.Window) bool {
ui.Quit()
return true
})
window.Show()
})
}