-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
setting.py
1410 lines (1232 loc) · 59.9 KB
/
setting.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import re
import os
import os.path
from .lib.config import get_config
from .lib.utils import css, is_proxy_available
from .lib.translation import get_engine_class
from .engines import (
builtin_engines, GeminiTranslate, ChatgptTranslate, AzureChatgptTranslate,
ClaudeTranslate)
from .engines.custom import CustomTranslate
from .components import (
Footer, AlertMessage, TargetLang, SourceLang, EngineList, EngineTester,
ManageCustomEngine, InputFormat, OutputFormat, set_shortcut)
try:
from qt.core import (
Qt, QLabel, QDialog, QWidget, QLineEdit, QPushButton, QPlainTextEdit,
QTabWidget, QHBoxLayout, QVBoxLayout, QGroupBox, QFileDialog, QColor,
QIntValidator, QScrollArea, QRadioButton, QGridLayout, QCheckBox,
QButtonGroup, QColorDialog, QSpinBox, QPalette, QApplication, QFrame,
QComboBox, QRegularExpression, pyqtSignal, QFormLayout, QDoubleSpinBox,
QSettings, QSpacerItem, QRegularExpressionValidator, QBoxLayout)
except ImportError:
from PyQt5.Qt import (
Qt, QLabel, QDialog, QWidget, QLineEdit, QPushButton, QPlainTextEdit,
QTabWidget, QHBoxLayout, QVBoxLayout, QGroupBox, QFileDialog, QColor,
QIntValidator, QScrollArea, QRadioButton, QGridLayout, QCheckBox,
QButtonGroup, QColorDialog, QSpinBox, QPalette, QApplication, QFrame,
QComboBox, QRegularExpression, pyqtSignal, QFormLayout, QDoubleSpinBox,
QSettings, QSpacerItem, QRegularExpressionValidator, QBoxLayout)
load_translations()
class TranslationSetting(QDialog):
save_config = pyqtSignal(int)
def __init__(self, plugin, parent, icon):
QDialog.__init__(self, parent)
self.plugin = plugin
self.icon = icon
self.alert = AlertMessage(self)
self.config = get_config()
self.current_engine = get_engine_class()
self.main_layout()
def _divider(self):
divider = QFrame()
divider.setFrameShape(QFrame.HLine)
divider.setFrameShadow(QFrame.Sunken)
# divider.setFrameStyle(QFrame.HLine | QFrame.Sunken)
return divider
def main_layout(self):
layout = QVBoxLayout(self)
self.tabs = QTabWidget()
general_index = self.tabs.addTab(self.layout_general(), _('General'))
engine_index = self.tabs.addTab(self.layout_engine(), _('Engine'))
content_index = self.tabs.addTab(self.layout_content(), _('Content'))
self.tabs.setStyleSheet('QTabBar::tab {min-width:120px;}')
self.tabs.currentChanged.connect(lambda _: self.config.refresh())
def save_setting(index):
actions = {
general_index: self.update_general_config,
engine_index: self.update_engine_config,
content_index: self.update_content_config,
}
if actions.get(index)():
self.config.update(cache_path=get_config().get('cache_path'))
self.config.commit()
self.alert.pop(_('The setting has been saved.'))
self.save_config.connect(save_setting)
layout.addWidget(self.tabs)
layout.addWidget(Footer())
def layout_scroll_area(func):
def scroll_widget(self):
widget = QWidget()
layout = QVBoxLayout(widget)
scroll_area = QScrollArea(widget)
scroll_area.setWidgetResizable(True)
# Compatible with lower versions of Calibre
instance = QApplication.instance()
if not (getattr(instance, 'is_dark_theme', None) and
instance.is_dark_theme):
scroll_area.setBackgroundRole(QPalette.Light)
scroll_area.setWidget(func(self))
layout.addWidget(scroll_area, 1)
save_button = QPushButton(_('&Save'))
layout.addWidget(save_button)
def save_current_config():
self.save_config.emit(self.tabs.currentIndex())
save_button.clicked.connect(save_current_config)
set_shortcut(
save_button, 'save', save_current_config,save_button.text())
return widget
return scroll_widget
@layout_scroll_area
def layout_general(self):
widget = QWidget()
layout = QVBoxLayout(widget)
# Preferred Method
mode_group = QGroupBox(_('Preferred Mode'))
mode_layout = QGridLayout(mode_group)
advanced_mode = QRadioButton(_('Advanced Mode'))
batch_mode = QRadioButton(_('Batch Mode'))
icon_button = QLabel()
icon_button.setPixmap(self.icon.pixmap(52, 52))
mode_layout.addWidget(icon_button, 0, 0, 3, 1)
mode_layout.addWidget(advanced_mode, 0, 1)
mode_layout.addWidget(batch_mode, 0, 2)
mode_layout.addItem(QSpacerItem(0, 0), 0, 3)
mode_layout.addWidget(self._divider(), 1, 1, 1, 4)
mode_layout.addWidget(QLabel(
_('Choose a translation mode for clicking the icon button.')),
2, 1, 1, 4)
mode_layout.setColumnStretch(3, 1)
layout.addWidget(mode_group)
mode_map = dict(enumerate(['advanced', 'batch']))
mode_rmap = dict((v, k) for k, v in mode_map.items())
mode_btn_group = QButtonGroup(mode_group)
mode_btn_group.addButton(advanced_mode, 0)
mode_btn_group.addButton(batch_mode, 1)
preferred_mode = self.config.get('preferred_mode')
if preferred_mode is not None:
mode_btn_group.button(
mode_rmap.get(preferred_mode)).setChecked(True)
mode_btn_click = getattr(mode_btn_group, 'idClicked', None) \
or mode_btn_group.buttonClicked[int]
mode_btn_click.connect(
lambda btn_id: self.config.update(
preferred_mode=mode_map.get(btn_id)))
# Output Path
radio_group = QGroupBox(_('Output Path'))
radio_layout = QHBoxLayout()
library_radio = QRadioButton(_('Library'))
self.path_radio = QRadioButton(_('Path'))
radio_layout.addWidget(library_radio)
radio_layout.addWidget(self.path_radio)
self.output_path_entry = QLineEdit()
self.output_path_entry.setPlaceholderText(
_('Choose a path to store translated book(s)'))
self.output_path_entry.setText(self.config.get('output_path'))
radio_layout.addWidget(self.output_path_entry)
output_path_button = QPushButton(_('Choose'))
radio_layout.addWidget(output_path_button)
radio_group.setLayout(radio_layout)
layout.addWidget(radio_group)
def choose_output_type(checked):
output_path_button.setDisabled(checked)
self.output_path_entry.setDisabled(checked)
self.config.update(to_library=checked)
library_radio.toggled.connect(choose_output_type)
if self.config.get('to_library'):
library_radio.setChecked(True)
else:
self.path_radio.setChecked(True)
choose_output_type(library_radio.isChecked())
def choose_output_path():
path = QFileDialog.getExistingDirectory()
self.output_path_entry.setText(path)
output_path_button.clicked.connect(choose_output_path)
# preferred Format
format_group = QGroupBox(_('Preferred Format'))
format_layout = QFormLayout(format_group)
input_format = InputFormat()
output_format = OutputFormat()
format_layout.addRow(_('Input Format'), input_format)
format_layout.addRow(_('Output Format'), output_format)
layout.addWidget(format_group)
self.set_form_layout_policy(format_layout)
input_format.setCurrentText(self.config.get('input_format'))
output_format.setCurrentText(self.config.get('output_format'))
def change_input_format(format):
if format == _('Ebook Specific'):
self.config.delete('input_format')
else:
self.config.update(input_format=format)
input_format.currentTextChanged.connect(change_input_format)
output_format.currentTextChanged.connect(
lambda format: self.config.update(output_format=format))
# Merge Translate
merge_group = QGroupBox(
'%s %s' % (_('Merge to Translate'), _('(Beta)')))
merge_layout = QHBoxLayout(merge_group)
merge_enabled = QCheckBox(_('Enable'))
self.merge_length = QSpinBox()
self.merge_length.setRange(1, 99999)
merge_layout.addWidget(merge_enabled)
merge_layout.addWidget(self.merge_length)
merge_layout.addWidget(QLabel(_(
'The number of characters to translate at once.')))
merge_layout.addStretch(1)
layout.addWidget(merge_group)
self.disable_wheel_event(self.merge_length)
self.merge_length.setValue(self.config.get('merge_length'))
merge_enabled.setChecked(self.config.get('merge_enabled'))
merge_enabled.clicked.connect(
lambda checked: self.config.update(merge_enabled=checked))
# Network Proxy
proxy_group = QGroupBox(_('HTTP Proxy'))
proxy_layout = QHBoxLayout()
self.proxy_enabled = QCheckBox(_('Enable'))
self.proxy_enabled.setChecked(self.config.get('proxy_enabled'))
self.proxy_enabled.toggled.connect(
lambda checked: self.config.update(proxy_enabled=checked))
proxy_layout.addWidget(self.proxy_enabled)
self.proxy_host = QLineEdit()
rule = r'^(http://|)([a-zA-Z\d]+:[a-zA-Z\d]+@|)' \
r'(([a-zA-Z\d]|-)*[a-zA-Z\d]\.){1,}[a-zA-Z\d]+$'
self.host_validator = QRegularExpressionValidator(
QRegularExpression(rule))
self.proxy_host.setPlaceholderText(
_('Host') + ' (127.0.0.1, user:[email protected])')
proxy_layout.addWidget(self.proxy_host, 4)
self.proxy_port = QLineEdit()
self.proxy_port.setPlaceholderText(_('Port'))
port_validator = QIntValidator()
port_validator.setRange(0, 65536)
self.proxy_port.setValidator(port_validator)
proxy_layout.addWidget(self.proxy_port, 1)
self.proxy_port.textChanged.connect(
lambda num: self.proxy_port.setText(
num if not num or int(num) < port_validator.top()
else str(port_validator.top())))
proxy_test = QPushButton(_('Test'))
proxy_test.clicked.connect(self.test_proxy_connection)
proxy_layout.addWidget(proxy_test)
proxy_setting = self.config.get('proxy_setting')
if len(proxy_setting) == 2:
self.proxy_host.setText(proxy_setting[0])
self.proxy_port.setText(str(proxy_setting[1]))
proxy_group.setLayout(proxy_layout)
layout.addWidget(proxy_group)
misc_widget = QWidget()
misc_layout = QHBoxLayout(misc_widget)
misc_layout.setContentsMargins(0, 0, 0, 0)
# Cache
cache_group = QGroupBox(_('Cache'))
cache_layout = QHBoxLayout(cache_group)
cache_enabled = QCheckBox(_('Enable'))
cache_manage = QLabel(_('Manage'))
cache_layout.addWidget(cache_enabled)
cache_layout.addStretch(1)
cache_layout.addWidget(cache_manage)
misc_layout.addWidget(cache_group, 1)
cache_manage.setStyleSheet('color:blue;text-decoration:underline;')
cursor = cache_manage.cursor()
cursor.setShape(Qt.PointingHandCursor)
cache_manage.setCursor(cursor)
cache_manage.mouseReleaseEvent = lambda event: self.plugin.show_cache()
cache_enabled.setChecked(self.config.get('cache_enabled'))
cache_enabled.toggled.connect(
lambda checked: self.config.update(cache_enabled=checked))
# Job Log
log_group = QGroupBox(_('Job Log'))
log_translation = QCheckBox(_('Show translation'))
log_layout = QVBoxLayout(log_group)
log_layout.addWidget(log_translation)
log_layout.addStretch(1)
misc_layout.addWidget(log_group, 1)
# Notification
notice_group = QGroupBox(_('Notification'))
notice_layout = QHBoxLayout(notice_group)
notice = QCheckBox(_('Enable'))
notice_layout.addWidget(notice)
misc_layout.addWidget(notice_group, 1)
layout.addWidget(misc_widget)
log_translation.setChecked(self.config.get('log_translation', True))
log_translation.toggled.connect(
lambda checked: self.config.update(log_translation=checked))
notice.setChecked(self.config.get('show_notification', True))
notice.toggled.connect(
lambda checked: self.config.update(show_notification=checked))
# Search path
path_group = QGroupBox(_('Search Paths'))
path_layout = QVBoxLayout(path_group)
path_desc = QLabel(
_('The plugin will search for external programs via these paths.'))
self.path_list = QPlainTextEdit()
self.path_list.setMinimumHeight(100)
path_layout.addWidget(path_desc)
path_layout.addWidget(self.path_list)
self.path_list.setPlainText('\n'.join(self.config.get('search_paths')))
layout.addWidget(path_group)
layout.addStretch(1)
return widget
@layout_scroll_area
def layout_engine(self):
widget = QWidget()
layout = QVBoxLayout(widget)
# Translate Engine
engine_group = QGroupBox(_('Translation Engine'))
engine_layout = QHBoxLayout(engine_group)
engine_list = EngineList(self.current_engine.name)
engine_test = QPushButton(_('Test'))
manage_engine = QPushButton(_('Custom'))
engine_layout.addWidget(engine_list, 1)
engine_layout.addWidget(engine_test)
engine_layout.addWidget(manage_engine)
layout.addWidget(engine_group)
# Using Tip
self.tip_group = QGroupBox(_('Usage Tip'))
tip_layout = QVBoxLayout(self.tip_group)
self.using_tip = QLabel()
self.using_tip.setTextFormat(Qt.RichText)
self.using_tip.setWordWrap(True)
self.using_tip.setOpenExternalLinks(True)
tip_layout.addWidget(self.using_tip)
layout.addWidget(self.tip_group)
# API Keys
self.keys_group = QGroupBox(_('API Keys'))
keys_layout = QVBoxLayout(self.keys_group)
self.api_keys = QPlainTextEdit()
self.api_keys.setFixedHeight(100)
auto_change = QLabel('%s %s' % (_('Tip: '), _(
'API keys will auto-switch if the previous one is unavailable.')))
auto_change.setVisible(False)
keys_layout.addWidget(self.api_keys)
keys_layout.addWidget(auto_change)
layout.addWidget(self.keys_group)
self.api_keys.textChanged.connect(lambda: auto_change.setVisible(
len(self.api_keys.toPlainText().strip().split('\n')) > 1))
# preferred Language
language_group = QGroupBox(_('Preferred Language'))
language_layout = QFormLayout(language_group)
self.source_lang = SourceLang()
self.target_lang = TargetLang()
language_layout.addRow(_('Source Language'), self.source_lang)
language_layout.addRow(_('Target Language'), self.target_lang)
layout.addWidget(language_group)
self.set_form_layout_policy(language_layout)
# Network Request
request_group = QGroupBox(_('HTTP Request'))
concurrency_limit = QSpinBox()
concurrency_limit.setRange(0, 9999)
request_interval = QDoubleSpinBox()
request_interval.setRange(0, 9999)
request_interval.setDecimals(1)
request_attempt = QSpinBox()
request_attempt.setRange(0, 9999)
request_timeout = QDoubleSpinBox()
request_timeout.setRange(0, 9999)
request_timeout.setDecimals(1)
request_layout = QFormLayout(request_group)
request_layout.addRow(_('Concurrency limit'), concurrency_limit)
request_layout.addRow(_('Interval (seconds)'), request_interval)
request_layout.addRow(_('Attempt times'), request_attempt)
request_layout.addRow(_('Timeout (seconds)'), request_timeout)
layout.addWidget(request_group, 1)
# Abort Translation
abort_translation_group = QGroupBox(_('Abort Translation'))
abort_translation_layout = QHBoxLayout(abort_translation_group)
max_error_count = QSpinBox()
max_error_count.setMinimum(0)
abort_translation_layout.addWidget(QLabel(_('Max errors')))
abort_translation_layout.addWidget(max_error_count)
abort_translation_layout.addWidget(QLabel(
_('The number of consecutive errors to abort translation.')), 1)
layout.addWidget(abort_translation_group, 1)
self.disable_wheel_event(max_error_count)
self.set_form_layout_policy(request_layout)
self.disable_wheel_event(concurrency_limit)
self.disable_wheel_event(request_attempt)
self.disable_wheel_event(request_interval)
self.disable_wheel_event(request_timeout)
# GeminiPro Setting
gemini_group = QGroupBox(_('Tune Gemini'))
gemini_group.setVisible(False)
gemini_layout = QFormLayout(gemini_group)
self.set_form_layout_policy(gemini_layout)
self.gemini_prompt = QPlainTextEdit()
self.gemini_prompt.setFixedHeight(80)
gemini_layout.addRow(_('Prompt'), self.gemini_prompt)
gemini_model = QWidget()
gemini_model_layout = QHBoxLayout(gemini_model)
gemini_model_layout.setContentsMargins(0, 0, 0, 0)
gemini_model_select = QComboBox()
gemini_model_custom = QLineEdit()
gemini_model_layout.addWidget(gemini_model_select)
gemini_model_layout.addWidget(gemini_model_custom)
gemini_layout.addRow(_('Model'), gemini_model)
gemini_temperature = QDoubleSpinBox()
gemini_temperature.setDecimals(1)
gemini_temperature.setSingleStep(0.1)
gemini_temperature.setRange(0, 1)
gemini_top_p = QDoubleSpinBox()
gemini_top_p.setDecimals(1)
gemini_top_p.setSingleStep(0.1)
gemini_top_p.setRange(0, 1)
gemini_top_k = QSpinBox()
gemini_top_k.setSingleStep(1)
gemini_top_k.setRange(0, 40)
# gemini_top_k.setMinimum(0)
gemini_sampling = QWidget()
gemini_sampling_layout = QHBoxLayout(gemini_sampling)
gemini_sampling_layout.setContentsMargins(0, 0, 0, 0)
gemini_sampling_layout.addWidget(QLabel('temperature'))
gemini_sampling_layout.addWidget(gemini_temperature)
gemini_sampling_layout.addSpacing(20)
gemini_sampling_layout.addWidget(QLabel('topP'))
gemini_sampling_layout.addWidget(gemini_top_p)
gemini_sampling_layout.addSpacing(20)
gemini_sampling_layout.addWidget(QLabel('topK'))
gemini_sampling_layout.addWidget(gemini_top_k)
gemini_sampling_layout.addStretch(1)
gemini_layout.addRow(_('Sampling'), gemini_sampling)
self.disable_wheel_event(gemini_temperature)
self.disable_wheel_event(gemini_top_p)
self.disable_wheel_event(gemini_top_k)
layout.addWidget(gemini_group)
# ChatGPT Setting
chatgpt_group = QGroupBox()
chatgpt_group.setVisible(False)
chatgpt_layout = QFormLayout(chatgpt_group)
self.set_form_layout_policy(chatgpt_layout)
self.chatgpt_prompt = QPlainTextEdit()
self.chatgpt_prompt.setMinimumHeight(80)
self.chatgpt_prompt.setMaximumHeight(80)
chatgpt_layout.addRow(_('Prompt'), self.chatgpt_prompt)
self.chatgpt_endpoint = QLineEdit()
chatgpt_layout.addRow(_('Endpoint'), self.chatgpt_endpoint)
chatgpt_model = QWidget()
chatgpt_model_layout = QHBoxLayout(chatgpt_model)
chatgpt_model_layout.setContentsMargins(0, 0, 0, 0)
chatgpt_model_select = QComboBox()
chatgpt_model_custom = QLineEdit()
chatgpt_model_layout.addWidget(chatgpt_model_select)
chatgpt_model_layout.addWidget(chatgpt_model_custom)
chatgpt_layout.addRow(_('Model'), chatgpt_model)
self.disable_wheel_event(chatgpt_model_select)
sampling_widget = QWidget()
sampling_layout = QHBoxLayout(sampling_widget)
sampling_layout.setContentsMargins(0, 0, 0, 0)
temperature = QRadioButton('temperature')
temperature_value = QDoubleSpinBox()
temperature_value.setDecimals(1)
temperature_value.setSingleStep(0.1)
top_p = QRadioButton('top_p')
top_p_value = QDoubleSpinBox()
top_p_value.setDecimals(1)
top_p_value.setSingleStep(0.1)
top_p_value.setRange(0, 1)
top_k = QLabel('top_k')
top_k_value = QSpinBox()
top_k_value.setSingleStep(1)
top_k_value.setRange(1, 40)
sampling_layout.addWidget(temperature)
sampling_layout.addWidget(temperature_value)
sampling_layout.addSpacing(20)
sampling_layout.addWidget(top_p)
sampling_layout.addWidget(top_p_value)
sampling_layout.addSpacing(20)
sampling_layout.addWidget(top_k)
sampling_layout.addWidget(top_k_value)
sampling_layout.addStretch(1)
chatgpt_layout.addRow(_('Sampling'), sampling_widget)
self.disable_wheel_event(temperature_value)
self.disable_wheel_event(top_p_value)
stream_enabled = QCheckBox(_('Enable streaming text like in ChatGPT'))
chatgpt_layout.addRow(_('Stream'), stream_enabled)
sampling_btn_group = QButtonGroup(sampling_widget)
sampling_btn_group.addButton(temperature, 0)
sampling_btn_group.addButton(top_p, 1)
def change_sampling_method(button):
self.current_engine.config.update(sampling=button.text())
sampling_btn_group.buttonClicked.connect(change_sampling_method)
layout.addWidget(chatgpt_group)
def change_ai_model(config, model_list, model_input):
model = config.get('model', self.current_engine.model)
model_list.setCurrentText(
model if model in self.current_engine.models else _('Custom'))
def setup_ai_model(model):
if model in self.current_engine.models:
model_input.setVisible(False)
else:
model_input.setVisible(True)
if model != _('Custom'):
model_input.setText(model)
setup_ai_model(model)
def update_chatgpt_model(model):
if not model or _(model) == _('Custom'):
model = self.current_engine.models[0]
config.update(model=model)
def change_ai_model(model):
setup_ai_model(model)
update_chatgpt_model(model)
model_input.textChanged.connect(
lambda model: update_chatgpt_model(model=model.strip()))
model_list.currentTextChanged.connect(change_ai_model)
self.save_config.connect(
lambda: model_list.setCurrentText(config.get('model')))
def show_gemini_preferences():
if not issubclass(self.current_engine, GeminiTranslate):
gemini_group.setVisible(False)
return
config = self.current_engine.config
gemini_group.setVisible(True)
self.gemini_prompt.setPlaceholderText(self.current_engine.prompt)
self.gemini_prompt.setPlainText(
config.get('prompt', self.current_engine.prompt))
gemini_model_select.addItems(self.current_engine.models)
gemini_model_select.addItem(_('Custom'))
gemini_temperature.setValue(
config.get('temperature', self.current_engine.temperature))
gemini_temperature.valueChanged.connect(
lambda value: config.update(temperature=round(value, 1)))
gemini_top_p.setValue(
config.get('top_p', self.current_engine.top_p))
gemini_top_p.valueChanged.connect(
lambda value: config.update(top_p=value))
gemini_top_k.setValue(
config.get('top_k', self.current_engine.top_k))
gemini_top_k.valueChanged.connect(
lambda value: config.update(top_k=value))
change_ai_model(config, gemini_model_select, gemini_model_custom)
def show_chatgpt_preferences():
is_chatgpt = issubclass(self.current_engine, ChatgptTranslate)
is_claude = issubclass(self.current_engine, ClaudeTranslate)
if not is_chatgpt and not is_claude:
chatgpt_group.setVisible(False)
return
chatgpt_group.setVisible(True)
if is_chatgpt:
temperature_value.setRange(0, 2)
chatgpt_group.setTitle(_('Tune ChatGPT'))
elif is_claude:
temperature_value.setRange(0, 1)
chatgpt_group.setTitle(_('Tune Claude'))
config = self.current_engine.config
# Prompt
self.chatgpt_prompt.setPlaceholderText(self.current_engine.prompt)
self.chatgpt_prompt.setPlainText(
config.get('prompt', self.current_engine.prompt))
# Endpoint
self.chatgpt_endpoint.setPlaceholderText(
self.current_engine.endpoint)
self.chatgpt_endpoint.setText(
config.get('endpoint', self.current_engine.endpoint))
self.chatgpt_endpoint.setCursorPosition(0)
# Model
if self.current_engine.model is not None:
chatgpt_model_select.clear()
if issubclass(self.current_engine, AzureChatgptTranslate):
chatgpt_model_select.addItem(
_('The model depends on your Azure project.'))
chatgpt_model_select.setDisabled(True)
chatgpt_model_custom.setVisible(False)
return
chatgpt_model_select.setDisabled(False)
chatgpt_model_select.addItems(self.current_engine.models)
chatgpt_model_select.addItem(_('Custom'))
change_ai_model(config, chatgpt_model_select, chatgpt_model_custom)
# Sampling
sampling = config.get('sampling', self.current_engine.sampling)
btn_id = self.current_engine.samplings.index(sampling)
sampling_btn_group.button(btn_id).setChecked(True)
temperature_value.setValue(
config.get('temperature', self.current_engine.temperature))
temperature_value.valueChanged.connect(
lambda value: self.current_engine.config.update(
temperature=round(value, 1)))
top_p_value.setValue(
config.get('top_p', self.current_engine.top_p))
top_p_value.valueChanged.connect(
lambda value: self.current_engine.config.update(top_p=value))
top_k.setVisible(is_claude)
top_k_value.setVisible(is_claude)
if is_claude:
top_k_value.setValue(
config.get('top_k', self.current_engine.top_k))
top_k_value.valueChanged.connect(
lambda value: self.current_engine.config
.update(top_k=value))
# Stream
stream_enabled.setChecked(
config.get('stream', self.current_engine.stream))
stream_enabled.toggled.connect(
lambda checked: config.update(stream=checked))
chatgpt_group.setVisible(True)
def choose_default_engine(index):
engine_name = engine_list.itemData(index)
self.config.update(translate_engine=engine_name)
self.current_engine = get_engine_class(engine_name)
# Refresh preferred language
source_lang = self.current_engine.config.get('source_lang')
self.source_lang.refresh.emit(
self.current_engine.lang_codes.get('source'), source_lang,
not issubclass(self.current_engine, CustomTranslate))
target_lang = self.current_engine.config.get('target_lang')
self.target_lang.refresh.emit(
self.current_engine.lang_codes.get('target'), target_lang)
# show use notice
show_tip = self.current_engine.using_tip is not None
self.tip_group.setVisible(show_tip)
show_tip and self.using_tip.setText(self.current_engine.using_tip)
# show api key setting
self.set_api_keys()
# Request setting
value = self.current_engine.config.get('concurrency_limit')
if value is None:
value = self.current_engine.concurrency_limit
concurrency_limit.setValue(value)
value = self.current_engine.config.get('request_interval')
if value is None:
value = self.current_engine.request_interval
request_interval.setValue(float(value))
value = self.current_engine.config.get('request_attempt')
if value is None:
value = self.current_engine.request_attempt
request_attempt.setValue(value)
value = self.current_engine.config.get('request_timeout')
if value is None:
value = self.current_engine.request_timeout
request_timeout.setValue(float(value))
value = self.current_engine.config.get('max_error_count')
if value is None:
value = self.current_engine.max_error_count
max_error_count.setValue(value)
concurrency_limit.valueChanged.connect(
lambda value: self.current_engine.config.update(
concurrency_limit=value))
request_interval.valueChanged.connect(
lambda value: self.current_engine.config.update(
request_interval=round(value, 1)))
request_attempt.valueChanged.connect(
lambda value: self.current_engine.config.update(
request_attempt=value))
request_timeout.valueChanged.connect(
lambda value: self.current_engine.config.update(
request_timeout=round(value, 1)))
max_error_count.valueChanged.connect(
lambda value: self.current_engine.config.update(
max_error_count=value))
show_gemini_preferences()
show_chatgpt_preferences()
choose_default_engine(engine_list.findData(self.current_engine.name))
engine_list.currentIndexChanged.connect(choose_default_engine)
def refresh_engine_list():
"""Prevent engine list auto intercept the text changed signal."""
engine_list.currentIndexChanged.disconnect(choose_default_engine)
engine_list.refresh()
index = engine_list.findData(self.config.get('translate_engine'))
index = 0 if index == -1 else index
choose_default_engine(index)
engine_list.setCurrentIndex(index)
engine_list.currentIndexChanged.connect(choose_default_engine)
def manage_custom_translation_engine():
manager = ManageCustomEngine(self)
manager.finished.connect(refresh_engine_list)
manager.show()
manage_engine.clicked.connect(manage_custom_translation_engine)
def make_test_translator():
config = self.get_engine_config()
if config is not None:
self.current_engine.set_config(config)
translator = self.current_engine()
translator.set_search_paths(self.get_search_paths())
self.proxy_enabled.isChecked() and translator.set_proxy(
[self.proxy_host.text(), self.proxy_port.text()])
EngineTester(self, translator)
engine_test.clicked.connect(make_test_translator)
layout.addStretch(1)
return widget
def set_api_keys(self):
need_api_key = self.current_engine.need_api_key
self.keys_group.setVisible(need_api_key)
if need_api_key:
self.api_keys.setPlaceholderText(self.current_engine.api_key_hint)
api_keys = self.current_engine.config.get('api_keys', [])
self.api_keys.clear()
for api_key in api_keys:
self.api_keys.appendPlainText(api_key)
@layout_scroll_area
def layout_content(self):
widget = QWidget()
layout = QVBoxLayout(widget)
# Translation Position
position_radios = QWidget()
position_radios_layout = QVBoxLayout(position_radios)
position_radios_layout.setContentsMargins(0, 0, 0, 0)
below_original = QRadioButton(_('Below original'))
below_original.setChecked(True)
above_original = QRadioButton(_('Above original'))
right_to_original = QRadioButton(
'%s (%s)' % (_('Right to original'), _('Beta')))
left_to_original = QRadioButton(
'%s (%s)' % (_('Left to original'), _('Beta')))
delete_original = QRadioButton(_('With no original'))
position_radios_layout.addWidget(below_original)
position_radios_layout.addWidget(above_original)
position_radios_layout.addWidget(right_to_original)
position_radios_layout.addWidget(left_to_original)
position_radios_layout.addWidget(delete_original)
position_radios_layout.addStretch(1)
position_samples = QWidget()
position_samples_layout = QVBoxLayout(position_samples)
position_samples_layout.setContentsMargins(0, 0, 0, 0)
position_samples_layout.setSpacing(10)
original_sample = QLabel(_('Original'))
original_sample.setAlignment(Qt.AlignCenter)
original_sample.setWordWrap(True)
original_sample.setStyleSheet(
'border:1px solid rgba(127,127,127,.3);'
'background-color:rgba(127,127,127,.1);padding:10px;'
'color:rgba(0,0,0,.3);font-size:28px;')
translation_sample = QLabel(_('Translation'))
translation_sample.setAlignment(Qt.AlignCenter)
translation_sample.setWordWrap(True)
translation_sample.setStyleSheet(
'border:1px solid rgba(127,127,127,.3);'
'background-color:rgba(127,127,127,.1);padding:10px;'
'color:black;font-size:28px;')
position_samples_layout.addWidget(original_sample, 1)
position_samples_layout.addWidget(translation_sample, 1)
position_setup = QWidget()
position_setup.setVisible(False)
position_setup_layout = QHBoxLayout(position_setup)
position_setup_layout.setContentsMargins(0, 0, 0, 0)
column_gap_type = QComboBox()
column_gap_value = QSpinBox()
column_gap_value.setRange(1, 100)
position_setup_layout.addWidget(QLabel(_('Column Gap')))
position_setup_layout.addWidget(column_gap_type)
position_setup_layout.addWidget(column_gap_value)
percentage_unit = QLabel('%')
position_setup_layout.addWidget(percentage_unit)
position_setup_layout.addStretch(1)
self.disable_wheel_event(column_gap_type)
self.disable_wheel_event(column_gap_value)
column_gap_type.addItem(_('Percentage'), 'percentage')
column_gap_type.addItem(_('Space count'), 'space_count')
column_gap_config = self.config.get('column_gap').copy()
current_type = column_gap_config.get('_type')
current_index = column_gap_type.findData(current_type)
percentage_unit.setVisible(current_type == 'percentage')
column_gap_type.setCurrentIndex(current_index)
column_gap_value.setValue(column_gap_config.get(current_type))
def change_column_gap_value(value):
gap_type = column_gap_type.currentData()
column_gap_config.update({gap_type: value})
self.config.update(column_gap=column_gap_config)
column_gap_value.valueChanged.connect(change_column_gap_value)
def change_column_gap_type(index):
gap_type = column_gap_type.itemData(index)
percentage_unit.setVisible(gap_type == 'percentage')
column_gap_value.setValue(column_gap_config.get(gap_type))
column_gap_config.update(_type=gap_type)
self.config.update(column_gap=column_gap_config)
column_gap_type.currentIndexChanged.connect(change_column_gap_type)
position_preview = QWidget()
position_preview_layout = QVBoxLayout(position_preview)
position_preview_layout.setSpacing(10)
position_preview_layout.setContentsMargins(0, 0, 0, 0)
position_preview_layout.addWidget(position_samples, 1)
position_preview_layout.addWidget(position_setup)
position_group = QGroupBox(_('Translation Position'))
position_layout = QHBoxLayout(position_group)
position_layout.addWidget(position_preview, 1)
position_layout.addSpacing(10)
position_layout.addWidget(position_radios)
layout.addWidget(position_group)
position_map = dict(enumerate(
['below', 'above', 'right', 'left', 'only']))
position_rmap = dict((v, k) for k, v in position_map.items())
# Add alias for compatibility with lower versions.
position_rmap['after'] = 0
position_rmap['before'] = 1
position_btn_group = QButtonGroup(position_group)
position_btn_group.addButton(below_original, 0)
position_btn_group.addButton(above_original, 1)
position_btn_group.addButton(right_to_original, 2)
position_btn_group.addButton(left_to_original, 3)
position_btn_group.addButton(delete_original, 4)
map_key = self.config.get('translation_position', 'below')
if map_key not in position_rmap.keys():
map_key = 'below'
position_btn_group.button(position_rmap.get(map_key)).setChecked(True)
# Check the attribute for compatibility with PyQt5.
position_btn_click = getattr(position_btn_group, 'idClicked', None) \
or position_btn_group.buttonClicked[int]
names = ('TopToBottom', 'BottomToTop', 'LeftToRight', 'RightToLeft')
directions = []
for name in names:
direction = getattr(QBoxLayout, name, None)
if direction is None:
direction = getattr(QBoxLayout.Direction, name)
directions.append(direction)
def choose_option(btn_id):
original_sample.setVisible(btn_id != 4)
position_samples.layout().setDirection(
directions[btn_id] if btn_id != 4 else directions[0])
position_setup.setVisible(btn_id in [2, 3])
self.config.update(translation_position=position_map.get(btn_id))
choose_option(position_btn_group.checkedId())
position_btn_click.connect(choose_option)
# Color group
color_group = QWidget()
color_group_layout = QHBoxLayout(color_group)
color_group_layout.setContentsMargins(0, 0, 0, 0)
# Original text color
original_color_group = QGroupBox(_('Original Text Color'))
original_color_layout = QHBoxLayout(original_color_group)
self.original_color = QLineEdit()
self.original_color.setText(self.config.get('original_color'))
self.original_color.setPlaceholderText(
'%s %s' % (_('e.g.,'), '#0055ff'))
original_color_show = QLabel()
original_color_show.setObjectName('original_color_show')
original_color_show.setFixedWidth(25)
self.setStyleSheet(
'#original_color{margin:1px 0;border:1 solid #eee'
';border-radius:2px;}')
original_color_button = QPushButton(_('Choose'))
original_color_layout.addWidget(original_color_show)
original_color_layout.addWidget(self.original_color)
original_color_layout.addWidget(original_color_button)
color_group_layout.addWidget(original_color_group)
# Translation Color
translation_color_group = QGroupBox(_('Translation Text Color'))
translation_color_layout = QHBoxLayout(translation_color_group)
self.translation_color = QLineEdit()
self.translation_color.setPlaceholderText(
'%s %s' % (_('e.g.,'), '#0055ff'))
self.translation_color.setText(self.config.get('translation_color'))
translation_color_show = QLabel()
translation_color_show.setObjectName('translation_color')
translation_color_show.setFixedWidth(25)
self.setStyleSheet(
'#translation_color{margin:1px 0;border:1 solid #eee;'
'border-radius:2px;}')
translation_color_button = QPushButton(_('Choose'))
translation_color_layout.addWidget(translation_color_show)
translation_color_layout.addWidget(self.translation_color)
translation_color_layout.addWidget(translation_color_button)
color_group_layout.addWidget(translation_color_group)
layout.addWidget(color_group)
def show_color(color_show, color):
valid = QColor(color).isValid()
color_show.setStyleSheet(
'background-color:{};border-color:{};'
.format(valid and color or 'black',
valid and color or 'black'))
show_color(original_color_show, self.original_color.text())
show_color(translation_color_show, self.translation_color.text())
self.original_color.textChanged.connect(
lambda: show_color(
original_color_show, self.original_color.text()))
self.translation_color.textChanged.connect(
lambda: show_color(
translation_color_show, self.translation_color.text()))
def create_color_picker(color_widget, color_show):
color_picker = QColorDialog(self)
color_picker.setOption(getattr(
QColorDialog.ColorDialogOption, 'DontUseNativeDialog', None)
or QColorDialog.DontUseNativeDialog)
color_picker.colorSelected.connect(
lambda color: color_widget.setText(color.name()))
color_picker.colorSelected.connect(
lambda color: show_color(color_show, color.name()))
return color_picker
original_color_picker = create_color_picker(
self.original_color, original_color_show)
original_color_button.clicked.connect(original_color_picker.open)
translation_color_picker = create_color_picker(
self.translation_color, translation_color_show)
translation_color_button.clicked.connect(translation_color_picker.open)
# Glossary
glossary_group = QGroupBox(_('Translation Glossary'))
glossary_layout = QHBoxLayout(glossary_group)
self.glossary_enabled = QCheckBox(_('Enable'))
self.glossary_path = QLineEdit()
self.glossary_path.setPlaceholderText(_('Choose a glossary file'))
glossary_choose = QPushButton(_('Choose'))
glossary_layout.addWidget(self.glossary_enabled)
glossary_layout.addWidget(self.glossary_path)
glossary_layout.addWidget(glossary_choose)
layout.addWidget(glossary_group)