1
yomichan-import/gui.go

147 lines
4.0 KiB
Go
Raw Normal View History

2017-04-10 00:53:44 +00:00
/*
* Copyright (c) 2017 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* 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 (
2017-04-10 01:31:34 +00:00
"log"
2017-04-14 04:15:40 +00:00
"path/filepath"
2017-04-14 04:25:19 +00:00
"strings"
2017-04-10 01:15:19 +00:00
2017-04-10 00:53:44 +00:00
"github.com/andlabs/ui"
)
2017-04-10 01:31:34 +00:00
type logger struct {
2017-04-14 16:28:50 +00:00
entry *ui.Entry
2017-04-10 01:31:34 +00:00
}
2017-04-14 04:15:40 +00:00
func (l *logger) Write(p []byte) (n int, err error) {
2017-04-10 01:45:03 +00:00
ui.QueueMain(func() {
2017-04-14 16:28:50 +00:00
l.entry.SetText(strings.Trim(string(p), "\n"))
2017-04-10 01:45:03 +00:00
})
2017-04-10 01:31:34 +00:00
return len(p), nil
}
2017-04-10 00:53:44 +00:00
func gui() error {
return ui.Main(func() {
pathEntry := ui.NewEntry()
2017-04-10 03:12:42 +00:00
browseButton := ui.NewButton("Browse...")
2017-04-10 00:53:44 +00:00
pathBox := ui.NewHorizontalBox()
pathBox.Append(pathEntry, true)
pathBox.Append(browseButton, false)
portSpin := ui.NewSpinbox(0, 65535)
2017-04-10 01:15:19 +00:00
portSpin.SetValue(DEFAULT_PORT)
2017-04-10 00:53:44 +00:00
formatCombo := ui.NewCombobox()
formatCombo.Append("EPWING")
formatCombo.Append("EDICT")
formatCombo.Append("ENAMDICT")
formatCombo.Append("KANJIDIC")
formatCombo.SetSelected(0)
titleEntry := ui.NewEntry()
2017-04-14 16:28:50 +00:00
outputEntry := ui.NewEntry()
2017-04-12 03:40:53 +00:00
importButton := ui.NewButton("Import dictionary...")
2017-04-10 00:53:44 +00:00
mainBox := ui.NewVerticalBox()
mainBox.Append(ui.NewLabel("Path to dictionary source (CATALOGS file for EPWING):"), false)
mainBox.Append(pathBox, false)
mainBox.Append(ui.NewLabel("Dictionary title (leave blank for default):"), false)
mainBox.Append(titleEntry, false)
2017-04-10 01:45:03 +00:00
mainBox.Append(ui.NewLabel("Network port for extension server:"), false)
mainBox.Append(portSpin, false)
2017-04-10 00:53:44 +00:00
mainBox.Append(ui.NewLabel("Dictionary format:"), false)
mainBox.Append(formatCombo, false)
mainBox.Append(ui.NewLabel("Application output:"), false)
2017-04-14 16:28:50 +00:00
mainBox.Append(outputEntry, false)
mainBox.Append(ui.NewVerticalBox(), true)
2017-04-10 00:53:44 +00:00
mainBox.Append(importButton, false)
2017-04-14 16:28:50 +00:00
window := ui.NewWindow("Yomichan Import", 640, 320, false)
2017-04-10 00:53:44 +00:00
window.SetMargined(true)
window.SetChild(mainBox)
browseButton.OnClicked(func(*ui.Button) {
if path := ui.OpenFile(window); len(path) > 0 {
pathEntry.SetText(path)
}
})
2017-04-14 16:28:50 +00:00
log.SetOutput(&logger{outputEntry})
2017-04-14 04:15:40 +00:00
2017-04-10 01:15:19 +00:00
importButton.OnClicked(func(*ui.Button) {
importButton.Disable()
2017-04-14 16:28:50 +00:00
outputEntry.SetText("")
2017-04-10 01:15:19 +00:00
var (
outputDir string
err error
)
if outputDir, err = makeTmpDir(); err != nil {
ui.MsgBoxError(window, "Error", err.Error())
return
}
inputPath := pathEntry.Text()
if len(inputPath) == 0 {
ui.MsgBoxError(window, "Error", "You must specify a dictionary source path.")
2017-04-10 01:45:03 +00:00
importButton.Enable()
2017-04-10 01:15:19 +00:00
return
}
2017-04-14 04:30:21 +00:00
format := []string{"epwing", "edict", "enamdict", "kanjidic"}[formatCombo.Selected()]
if format == "epwing" {
inputPath = filepath.Dir(inputPath)
}
title := titleEntry.Text()
port := portSpin.Value()
2017-04-10 01:45:03 +00:00
go func() {
defer ui.QueueMain(func() {
importButton.Enable()
})
if err := exportDb(inputPath, outputDir, format, "english", title, DEFAULT_STRIDE, false); err != nil {
2017-04-10 01:45:03 +00:00
log.Print(err)
return
}
2017-04-14 04:30:21 +00:00
if err := serveDb(outputDir, port); err != nil {
2017-04-10 01:45:03 +00:00
log.Print(err)
return
}
}()
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()
})
}