-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
ui.py
251 lines (220 loc) · 8.75 KB
/
ui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
from calibre.gui2.actions import InterfaceAction
from . import EbookTranslator
from .lib.utils import uid
from .lib.ebook import Ebooks
from .lib.config import get_config, upgrade_config
from .lib.conversion import ConversionWorker
from .batch import BatchTranslation
from .setting import TranslationSetting
from .cache import CacheManager
from .about import AboutDialog
from .components import AlertMessage, ModeSelection
from .advanced import CreateTranslationProject, AdvancedTranslation
try:
from calibre.ebooks.conversion.config import get_input_format_for_book
except ImportError:
from calibre.gui2.convert.single import get_input_format_for_book
try:
from qt.core import QMenu, QCoreApplication, QSettings
except ImportError:
from PyQt5.Qt import QMenu, QCoreApplication, QSettings
load_translations()
QCoreApplication.setOrganizationName(EbookTranslator.author)
QCoreApplication.setOrganizationDomain(EbookTranslator.author)
QCoreApplication.setApplicationName(EbookTranslator.identifier)
class EbookTranslatorGui(InterfaceAction):
name = EbookTranslator.name
action_spec = (
_('Translate Book'), None, _('Translate Ebook Content'), None)
title = '%s - %s' % (EbookTranslator.title, EbookTranslator.__version__)
settings = QSettings()
class Status:
jobs = {}
windows = {}
def genesis(self):
try:
self.icon = get_icons('images/icon.png', self.name)
except Exception:
self.icon = get_icons('images/icon.png')
menu = QMenu(self.gui)
menu.addAction(
_('Advanced Mode'), self.show_advanced_translation)
menu.addAction(_('Batch Mode'), self.show_batch_translation)
menu.addSeparator()
menu.addAction(_('Cache'), self.show_cache)
menu.addSeparator()
menu.addAction(_('Setting'), self.show_setting)
menu.addAction(_('About'), self.show_about)
self.qaction.setMenu(menu)
self.qaction.setIcon(self.icon)
self.qaction.triggered.connect(self.select_preferred_mode)
self.alert = AlertMessage(self.gui)
if not getattr(self.gui, 'bookfere_ebook_translator', None):
self.gui.bookfere_ebook_translator = self.Status()
upgrade_config()
def advanced_translation_window(self, ebook):
name = 'advanced_' + uid(ebook.get_input_path())
if self.show_window(name):
return
worker = ConversionWorker(self.gui, self.icon)
window = AdvancedTranslation(
self.gui, self.qaction.icon(), worker, ebook)
window.setMinimumWidth(1200)
window.setMinimumHeight(680)
window.setWindowTitle(
'%s - %s' % (_('Advanced Mode'), self.title))
window.show()
self.add_window(name, window)
def show_advanced_translation(self):
ebooks = self.get_selected_ebooks()
if len(ebooks) < 1:
return self.alert.pop(
_('Please choose one single book.'), 'warning')
window = CreateTranslationProject(self.gui, ebooks.first())
window.start_translation.connect(self.advanced_translation_window)
window.setModal(True)
window.setWindowTitle(self.title)
window.show()
def show_batch_translation(self):
if self.show_window('batch'):
return
ebooks = self.get_selected_ebooks()
if len(ebooks) < 1:
return self.alert.pop(
_('Please choose at least one book.'), 'warning')
worker = ConversionWorker(self.gui, self.icon)
window = BatchTranslation(self.gui, worker, ebooks)
window.setMinimumWidth(1000)
window.setMinimumHeight(600)
window.setWindowTitle(
'%s - %s' % (_('Batch Mode'), self.title))
window.setWindowIcon(self.icon)
window.show()
self.add_window('batch', window)
def show_setting(self):
if self.has_running_jobs():
self.alert.pop(_(
'Cannot change setting while book(s) are under translation.'),
'warning')
return
if self.show_window('setting'):
return
window = TranslationSetting(self, self.gui, self.icon)
window.setModal(True)
window.setMinimumWidth(600)
window.setMinimumHeight(520)
window.setWindowTitle('%s - %s' % (_('Setting'), self.title))
window.setWindowIcon(self.icon)
window.show()
self.add_window('setting', window)
def show_cache(self):
if self.has_running_jobs():
self.alert.pop(_(
'Cannot manage cache while book(s) are under translation.'),
'warning')
return
if self.show_window('cache'):
return
window = CacheManager(self, self.gui)
window.setModal(True)
window.setMinimumWidth(800)
window.setMinimumHeight(620)
window.setWindowTitle('%s - %s' % (_('Cache Manager'), self.title))
window.setWindowIcon(self.icon)
window.show()
self.add_window('cache', window)
def show_about(self):
if self.show_window('about'):
return
window = AboutDialog(self, self.gui, self.icon)
window.setMinimumWidth(600)
window.setMinimumHeight(520)
window.setWindowTitle('%s - %s' % (_('About'), self.title))
window.setWindowIcon(self.icon)
window.show()
self.add_window('about', window)
def select_preferred_mode(self):
modes = {
'advanced': self.show_advanced_translation,
'batch': self.show_batch_translation,
}
preferred_mode = get_config().get('preferred_mode')
if not preferred_mode:
window = ModeSelection(self.gui)
window.choose_action.connect(self.select_preferred_mode)
window.setModal(True)
window.setMaximumWidth(500)
window.setMaximumHeight(200)
window.setWindowTitle(
'%s - %s' % (_('Choose Translation Mode'), self.title))
window.show()
else:
modes.get(preferred_mode)()
def add_window(self, name, window):
identifier = name.split('_')[0]
window_size = 'window_size/%s' % identifier
size = self.settings.value(window_size)
size and window.resize(size)
window_position = 'window_position/%s' % identifier
position = self.settings.value(window_position)
position and window.restoreGeometry(position)
windows = self.gui.bookfere_ebook_translator.windows
windows[name] = window
def setup_window():
self.settings.setValue(window_size, window.size())
self.settings.setValue(window_position, window.saveGeometry())
windows.pop(name)
window.finished.connect(setup_window)
def get_window(self, name):
return self.gui.bookfere_ebook_translator.windows.get(name)
def show_window(self, name):
window = self.get_window(name)
if not window:
return False
window.raise_()
return True
def has_running_jobs(self):
jobs = self.gui.bookfere_ebook_translator.jobs
if len(jobs) > 0:
return True
windows = self.gui.bookfere_ebook_translator.windows
for name in windows:
if name.startswith('advanced_'):
return True
return False
def get_selected_ebooks(self):
ebooks = Ebooks()
db = self.gui.current_db
api = db.new_api
rows = self.gui.library_view.selectionModel().selectedRows()
model = self.gui.library_view.model()
for row in rows:
row_id = row.row()
book_id = model.id(row)
book_metadata = api.get_proxy_metadata(book_id)
fmt, fmts = None, []
extra_formats = []
try:
fmt, fmts = get_input_format_for_book(db, book_id, 'epub')
except Exception as e:
for extra_format in ('srt', 'pgn'):
if api.has_format(book_id, extra_format):
if fmt is None:
fmt = extra_format
fmts.append(extra_format)
extra_formats.append(extra_format)
if fmt is None:
raise e
ebooks.add(
book_id, # Book ID in db
model.title(row_id), # Title
# Format and path
dict(zip(
map(lambda fmt: fmt.lower(), fmts),
map(lambda fmt: api.format_abspath(book_id, fmt), fmts),
)),
fmt.lower(), # Input format
book_metadata.language, # Source language
extra_formats,
)
return ebooks