mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Integrate spell check dialog into editor
This commit is contained in:
parent
5e5f10d9c6
commit
7088ae51db
@ -905,6 +905,12 @@ class Boss(QObject):
|
|||||||
c.parent().raise_()
|
c.parent().raise_()
|
||||||
c.run_checks(current_container())
|
c.run_checks(current_container())
|
||||||
|
|
||||||
|
def spell_check_requested(self):
|
||||||
|
if current_container() is None:
|
||||||
|
return
|
||||||
|
self.commit_all_editors_to_container()
|
||||||
|
self.gui.spell_check.show()
|
||||||
|
|
||||||
@in_thread_job
|
@in_thread_job
|
||||||
def fix_requested(self, errors):
|
def fix_requested(self, errors):
|
||||||
self.add_savepoint(_('Before: Auto-fix errors'))
|
self.add_savepoint(_('Before: Auto-fix errors'))
|
||||||
|
@ -675,6 +675,7 @@ class SpellCheck(Dialog):
|
|||||||
self.__current_word = None
|
self.__current_word = None
|
||||||
self.thread = None
|
self.thread = None
|
||||||
self.cancel = False
|
self.cancel = False
|
||||||
|
dictionaries.initialize()
|
||||||
Dialog.__init__(self, _('Check spelling'), 'spell-check', parent)
|
Dialog.__init__(self, _('Check spelling'), 'spell-check', parent)
|
||||||
self.work_finished.connect(self.work_done, type=Qt.QueuedConnection)
|
self.work_finished.connect(self.work_done, type=Qt.QueuedConnection)
|
||||||
self.setAttribute(Qt.WA_DeleteOnClose, False)
|
self.setAttribute(Qt.WA_DeleteOnClose, False)
|
||||||
@ -818,7 +819,6 @@ class SpellCheck(Dialog):
|
|||||||
if i == 0:
|
if i == 0:
|
||||||
self.suggested_list.setCurrentItem(item)
|
self.suggested_list.setCurrentItem(item)
|
||||||
self.suggested_word.setText(s)
|
self.suggested_word.setText(s)
|
||||||
self.change_button.setFocus(Qt.OtherFocusReason)
|
|
||||||
|
|
||||||
prefix = b.unign_text if ignored else b.ign_text
|
prefix = b.unign_text if ignored else b.ign_text
|
||||||
b.setText(prefix + ' ' + current_word)
|
b.setText(prefix + ' ' + current_word)
|
||||||
|
@ -29,6 +29,7 @@ from calibre.gui2.tweak_book.undo import CheckpointView
|
|||||||
from calibre.gui2.tweak_book.preview import Preview
|
from calibre.gui2.tweak_book.preview import Preview
|
||||||
from calibre.gui2.tweak_book.search import SearchPanel
|
from calibre.gui2.tweak_book.search import SearchPanel
|
||||||
from calibre.gui2.tweak_book.check import Check
|
from calibre.gui2.tweak_book.check import Check
|
||||||
|
from calibre.gui2.tweak_book.spell import SpellCheck
|
||||||
from calibre.gui2.tweak_book.search import SavedSearches
|
from calibre.gui2.tweak_book.search import SavedSearches
|
||||||
from calibre.gui2.tweak_book.toc import TOCViewer
|
from calibre.gui2.tweak_book.toc import TOCViewer
|
||||||
from calibre.gui2.tweak_book.char_select import CharSelect
|
from calibre.gui2.tweak_book.char_select import CharSelect
|
||||||
@ -221,6 +222,7 @@ class Main(MainWindow):
|
|||||||
self.central = Central(self)
|
self.central = Central(self)
|
||||||
self.setCentralWidget(self.central)
|
self.setCentralWidget(self.central)
|
||||||
self.check_book = Check(self)
|
self.check_book = Check(self)
|
||||||
|
self.spell_check = SpellCheck(parent=self)
|
||||||
self.toc_view = TOCViewer(self)
|
self.toc_view = TOCViewer(self)
|
||||||
self.saved_searches = SavedSearches(self)
|
self.saved_searches = SavedSearches(self)
|
||||||
self.image_browser = InsertImage(self, for_browsing=True)
|
self.image_browser = InsertImage(self, for_browsing=True)
|
||||||
@ -400,6 +402,8 @@ class Main(MainWindow):
|
|||||||
# Check Book actions
|
# Check Book actions
|
||||||
group = _('Check Book')
|
group = _('Check Book')
|
||||||
self.action_check_book = reg('debug.png', _('&Check Book'), self.boss.check_requested, 'check-book', ('F7'), _('Check book for errors'))
|
self.action_check_book = reg('debug.png', _('&Check Book'), self.boss.check_requested, 'check-book', ('F7'), _('Check book for errors'))
|
||||||
|
self.action_spell_check_book = reg('spell-check.png', _('Check &spelling'), self.boss.spell_check_requested, 'spell-check-book', ('Alt+F7'), _(
|
||||||
|
'Check book for spelling errors'))
|
||||||
self.action_check_book_next = reg('forward.png', _('&Next error'), partial(
|
self.action_check_book_next = reg('forward.png', _('&Next error'), partial(
|
||||||
self.check_book.next_error, delta=1), 'check-book-next', ('Ctrl+F7'), _('Show next error'))
|
self.check_book.next_error, delta=1), 'check-book-next', ('Ctrl+F7'), _('Show next error'))
|
||||||
self.action_check_book_previous = reg('back.png', _('&Previous error'), partial(
|
self.action_check_book_previous = reg('back.png', _('&Previous error'), partial(
|
||||||
@ -478,6 +482,7 @@ class Main(MainWindow):
|
|||||||
e.addAction(self.action_pretty_all)
|
e.addAction(self.action_pretty_all)
|
||||||
e.addAction(self.action_rationalize_folders)
|
e.addAction(self.action_rationalize_folders)
|
||||||
e.addAction(self.action_set_semantics)
|
e.addAction(self.action_set_semantics)
|
||||||
|
e.addAction(self.action_spell_check_book)
|
||||||
e.addAction(self.action_check_book)
|
e.addAction(self.action_check_book)
|
||||||
|
|
||||||
e = b.addMenu(_('&View'))
|
e = b.addMenu(_('&View'))
|
||||||
@ -536,7 +541,7 @@ class Main(MainWindow):
|
|||||||
return b
|
return b
|
||||||
|
|
||||||
a = create(_('Book tool bar'), 'global').addAction
|
a = create(_('Book tool bar'), 'global').addAction
|
||||||
for x in ('new_file', 'open_book', None, 'global_undo', 'global_redo', 'create_checkpoint', 'save', None, 'toc', 'check_book'):
|
for x in ('new_file', 'open_book', None, 'global_undo', 'global_redo', 'create_checkpoint', 'save', None, 'toc', 'check_book', 'spell_check_book'):
|
||||||
if x is None:
|
if x is None:
|
||||||
self.global_bar.addSeparator()
|
self.global_bar.addSeparator()
|
||||||
continue
|
continue
|
||||||
|
Loading…
x
Reference in New Issue
Block a user