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

150 lines
4.3 KiB
Go
Raw Normal View History

2017-04-10 00:53:44 +00:00
/*
2021-01-02 00:28:06 +00:00
* Copyright (c) 2017-2021 Alex Yatskov <alex@foosoft.net>
2017-04-10 00:53:44 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
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
yomichan "github.com/FooSoft/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 {
ui.MsgBox(window, "Error", fmt.Sprintf("Conversion process failed:\n%e", err))
}
})
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()
})
}