2011-08-28 18:01:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2011-10-27 15:18:57 +00:00
|
|
|
|
2013-11-10 01:50:24 +00:00
|
|
|
# Copyright (C) 2013 Alex Yatskov
|
2011-08-28 18:01:32 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2012-12-25 20:51:46 +00:00
|
|
|
from PyQt4 import QtGui, QtCore
|
2013-11-10 22:17:42 +00:00
|
|
|
import about
|
2013-11-10 02:49:31 +00:00
|
|
|
import constants
|
2013-11-10 22:17:42 +00:00
|
|
|
import gen.reader_ui
|
2013-11-10 02:49:31 +00:00
|
|
|
import os
|
2013-11-10 22:17:42 +00:00
|
|
|
import preferences
|
2011-08-28 18:01:32 +00:00
|
|
|
import reader_util
|
2013-11-10 02:49:31 +00:00
|
|
|
import tarfile
|
|
|
|
import update
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2013-11-10 22:17:42 +00:00
|
|
|
class MainWindowReader(QtGui.QMainWindow, gen.reader_ui.Ui_MainWindowReader):
|
2011-08-28 18:01:32 +00:00
|
|
|
class State:
|
|
|
|
def __init__(self):
|
2013-11-11 01:59:13 +00:00
|
|
|
self.archiveIndex = None
|
2011-08-28 18:01:32 +00:00
|
|
|
self.filename = unicode()
|
2013-11-11 01:59:13 +00:00
|
|
|
self.kanjiDefs = list()
|
|
|
|
self.scanPosition = 0
|
2011-08-28 18:01:32 +00:00
|
|
|
self.searchPosition = 0
|
|
|
|
self.searchText = unicode()
|
2013-11-11 01:59:13 +00:00
|
|
|
self.vocabDefs = list()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-25 20:51:46 +00:00
|
|
|
def __init__(self, parent, preferences, language, filename=None, anki=None, closed=None):
|
2011-08-28 18:01:32 +00:00
|
|
|
QtGui.QMainWindow.__init__(self, parent)
|
2012-12-25 20:51:46 +00:00
|
|
|
self.setupUi(self)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
self.textContent.mouseMoveEvent = self.onContentMouseMove
|
|
|
|
self.textContent.mousePressEvent = self.onContentMousePress
|
2013-11-11 01:59:13 +00:00
|
|
|
self.dockAnki.setEnabled(anki is not None)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
self.addedFacts = list()
|
|
|
|
self.anki = anki
|
|
|
|
self.closed = closed
|
2013-11-11 01:59:13 +00:00
|
|
|
self.language = language
|
|
|
|
self.preferences = preferences
|
|
|
|
self.state = self.State()
|
|
|
|
self.updateFinder = update.UpdateFinder()
|
2011-08-28 18:01:32 +00:00
|
|
|
self.zoom = 0
|
|
|
|
|
|
|
|
self.applyPreferences()
|
|
|
|
self.updateRecentFiles()
|
2013-11-11 04:27:25 +00:00
|
|
|
self.updateVocabDefs()
|
|
|
|
self.updateKanjiDefs()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
if filename:
|
|
|
|
self.openFile(filename)
|
2013-11-10 19:46:50 +00:00
|
|
|
elif self.preferences['loadRecentFile']:
|
2011-08-28 18:01:32 +00:00
|
|
|
filenames = self.preferences.recentFiles()
|
2013-11-10 19:46:50 +00:00
|
|
|
if len(filenames) > 0:
|
2011-08-28 18:01:32 +00:00
|
|
|
self.openFile(filenames[0])
|
|
|
|
|
2013-11-10 22:17:42 +00:00
|
|
|
self.actionAbout.triggered.connect(self.onActionAbout)
|
|
|
|
self.actionFeedback.triggered.connect(self.onActionFeedback)
|
|
|
|
self.actionFind.triggered.connect(self.onActionFind)
|
|
|
|
self.actionFindNext.triggered.connect(self.onActionFindNext)
|
|
|
|
self.actionHomepage.triggered.connect(self.onActionHomepage)
|
2011-10-27 14:24:55 +00:00
|
|
|
self.actionOpen.triggered.connect(self.onActionOpen)
|
|
|
|
self.actionPreferences.triggered.connect(self.onActionPreferences)
|
2013-11-10 22:17:42 +00:00
|
|
|
self.actionToggleWrap.toggled.connect(self.onActionToggleWrap)
|
2011-10-27 14:24:55 +00:00
|
|
|
self.actionZoomIn.triggered.connect(self.onActionZoomIn)
|
|
|
|
self.actionZoomOut.triggered.connect(self.onActionZoomOut)
|
|
|
|
self.actionZoomReset.triggered.connect(self.onActionZoomReset)
|
2013-11-10 22:17:42 +00:00
|
|
|
self.dockAnki.visibilityChanged.connect(self.onVisibilityChanged)
|
|
|
|
self.dockKanji.visibilityChanged.connect(self.onVisibilityChanged)
|
|
|
|
self.dockVocab.visibilityChanged.connect(self.onVisibilityChanged)
|
|
|
|
self.listDefinitions.itemDoubleClicked.connect(self.onDefinitionDoubleClicked)
|
2013-11-11 01:59:13 +00:00
|
|
|
self.textKanjiDefs.anchorClicked.connect(self.onKanjiDefsAnchorClicked)
|
|
|
|
self.textKanjiSearch.returnPressed.connect(self.onKanjiDefSearchReturn)
|
|
|
|
self.textVocabDefs.anchorClicked.connect(self.onVocabDefsAnchorClicked)
|
|
|
|
self.textVocabSearch.returnPressed.connect(self.onVocabDefSearchReturn)
|
2011-10-27 14:24:55 +00:00
|
|
|
self.updateFinder.updateResult.connect(self.onUpdaterSearchResult)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2013-11-10 19:46:50 +00:00
|
|
|
if self.preferences['checkForUpdates']:
|
2011-10-27 15:18:57 +00:00
|
|
|
self.updateFinder.start()
|
|
|
|
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
def applyPreferences(self):
|
2013-11-10 19:46:50 +00:00
|
|
|
if self.preferences['windowState'] is not None:
|
|
|
|
self.restoreState(QtCore.QByteArray.fromBase64(self.preferences['windowState']))
|
|
|
|
if self.preferences['windowPosition'] is not None:
|
|
|
|
self.move(QtCore.QPoint(*self.preferences['windowPosition']))
|
|
|
|
if self.preferences['windowSize'] is not None:
|
|
|
|
self.resize(QtCore.QSize(*self.preferences['windowSize']))
|
|
|
|
|
|
|
|
self.comboTags.addItems(self.preferences['tags'])
|
2011-08-28 18:01:32 +00:00
|
|
|
self.applyPreferencesContent()
|
|
|
|
|
|
|
|
|
|
|
|
def applyPreferencesContent(self):
|
|
|
|
palette = self.textContent.palette()
|
2013-11-10 19:46:50 +00:00
|
|
|
palette.setColor(QtGui.QPalette.Base, QtGui.QColor(self.preferences['bgColor']))
|
|
|
|
palette.setColor(QtGui.QPalette.Text, QtGui.QColor(self.preferences['fgColor']))
|
2011-08-28 18:01:32 +00:00
|
|
|
self.textContent.setPalette(palette)
|
|
|
|
|
|
|
|
font = self.textContent.font()
|
2013-11-10 19:46:50 +00:00
|
|
|
font.setFamily(self.preferences['fontFamily'])
|
|
|
|
font.setPointSize(self.preferences['fontSize'] + self.zoom)
|
2013-11-12 01:01:43 +00:00
|
|
|
self.textContent.setLineWrapMode(QtGui.QPlainTextEdit.WidgetWidth if self.preferences['wordWrap'] else QtGui.QPlainTextEdit.NoWrap)
|
2011-08-28 18:01:32 +00:00
|
|
|
self.textContent.setFont(font)
|
|
|
|
|
2013-11-10 19:46:50 +00:00
|
|
|
self.actionToggleWrap.setChecked(self.preferences['wordWrap'])
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def closeEvent(self, event):
|
|
|
|
self.closeFile()
|
2013-11-10 19:46:50 +00:00
|
|
|
self.preferences['windowState'] = str(self.saveState().toBase64())
|
2011-08-28 18:01:32 +00:00
|
|
|
self.preferences.save()
|
|
|
|
|
2012-12-25 02:53:41 +00:00
|
|
|
if self.anki is not None:
|
|
|
|
self.anki.stopEditing()
|
|
|
|
|
|
|
|
if self.closed is not None:
|
2011-08-28 18:01:32 +00:00
|
|
|
self.closed()
|
|
|
|
|
|
|
|
|
|
|
|
def keyPressEvent(self, event):
|
2013-11-10 18:21:25 +00:00
|
|
|
visible = self.dockVocab.isVisible() or self.dockKanji.isVisible()
|
|
|
|
if visible and event.key() == QtCore.Qt.Key_Shift:
|
2011-08-28 18:01:32 +00:00
|
|
|
self.updateSampleFromPosition()
|
|
|
|
|
|
|
|
|
|
|
|
def dragEnterEvent(self, event):
|
|
|
|
if event.mimeData().hasUrls():
|
|
|
|
event.acceptProposedAction()
|
|
|
|
|
|
|
|
|
|
|
|
def dropEvent(self, event):
|
|
|
|
url = event.mimeData().urls()[0]
|
|
|
|
self.openFile(url.toLocalFile())
|
|
|
|
|
|
|
|
|
|
|
|
def moveEvent(self, event):
|
2013-11-10 19:46:50 +00:00
|
|
|
self.preferences['windowPosition'] = event.pos().x(), event.pos().y()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def resizeEvent(self, event):
|
2013-11-10 19:46:50 +00:00
|
|
|
self.preferences['windowSize'] = event.size().width(), event.size().height()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def onActionOpen(self):
|
|
|
|
filename = QtGui.QFileDialog.getOpenFileName(
|
|
|
|
parent=self,
|
|
|
|
caption='Select a file to open',
|
2011-11-19 17:19:17 +00:00
|
|
|
filter='Text files (*.txt);;Archive files (*.bz2 *.gz *.tar *.tgz);;All files (*.*)'
|
2011-08-28 18:01:32 +00:00
|
|
|
)
|
2012-12-25 22:21:10 +00:00
|
|
|
if filename:
|
2011-08-28 18:01:32 +00:00
|
|
|
self.openFile(filename)
|
|
|
|
|
|
|
|
|
|
|
|
def onActionPreferences(self):
|
2013-11-10 22:17:42 +00:00
|
|
|
dialog = preferences.DialogPreferences(self, self.preferences, self.anki)
|
2011-08-28 18:01:32 +00:00
|
|
|
if dialog.exec_() == QtGui.QDialog.Accepted:
|
|
|
|
self.applyPreferencesContent()
|
|
|
|
|
|
|
|
|
|
|
|
def onActionAbout(self):
|
2013-11-10 22:17:42 +00:00
|
|
|
dialog = about.DialogAbout(self)
|
2011-08-28 18:01:32 +00:00
|
|
|
dialog.exec_()
|
|
|
|
|
|
|
|
|
|
|
|
def onActionZoomIn(self):
|
|
|
|
font = self.textContent.font()
|
|
|
|
if font.pointSize() < 72:
|
|
|
|
font.setPointSize(font.pointSize() + 1)
|
|
|
|
self.textContent.setFont(font)
|
|
|
|
self.zoom += 1
|
|
|
|
|
|
|
|
|
|
|
|
def onActionZoomOut(self):
|
|
|
|
font = self.textContent.font()
|
|
|
|
if font.pointSize() > 1:
|
|
|
|
font.setPointSize(font.pointSize() - 1)
|
|
|
|
self.textContent.setFont(font)
|
|
|
|
self.zoom -= 1
|
|
|
|
|
|
|
|
|
|
|
|
def onActionZoomReset(self):
|
|
|
|
if self.zoom:
|
|
|
|
font = self.textContent.font()
|
|
|
|
font.setPointSize(font.pointSize() - self.zoom)
|
|
|
|
self.textContent.setFont(font)
|
|
|
|
self.zoom = 0
|
|
|
|
|
|
|
|
|
|
|
|
def onActionFind(self):
|
|
|
|
searchText = self.state.searchText
|
|
|
|
|
|
|
|
cursor = self.textContent.textCursor()
|
|
|
|
if cursor.hasSelection():
|
|
|
|
searchText = cursor.selectedText()
|
|
|
|
|
|
|
|
searchText, ok = QtGui.QInputDialog.getText(self, 'Find', 'Search text:', text=searchText)
|
|
|
|
if searchText and ok:
|
|
|
|
self.findText(searchText)
|
|
|
|
|
|
|
|
|
|
|
|
def onActionFindNext(self):
|
|
|
|
if self.state.searchText:
|
|
|
|
self.findText(self.state.searchText)
|
|
|
|
|
|
|
|
|
|
|
|
def onActionToggleWrap(self, wrap):
|
2013-11-10 19:46:50 +00:00
|
|
|
self.preferences['wordWrap'] = wrap
|
2013-11-12 01:01:43 +00:00
|
|
|
self.textContent.setLineWrapMode(QtGui.QPlainTextEdit.WidgetWidth if self.preferences['wordWrap'] else QtGui.QPlainTextEdit.NoWrap)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def onActionHomepage(self):
|
2013-11-11 02:13:21 +00:00
|
|
|
url = QtCore.QUrl('http://foosoft.net/yomichan/')
|
2011-08-28 18:01:32 +00:00
|
|
|
QtGui.QDesktopServices().openUrl(url)
|
|
|
|
|
|
|
|
|
|
|
|
def onActionFeedback(self):
|
2013-11-11 02:13:21 +00:00
|
|
|
url = QtCore.QUrl('http://foosoft.net/comments/')
|
2011-08-28 18:01:32 +00:00
|
|
|
QtGui.QDesktopServices().openUrl(url)
|
|
|
|
|
|
|
|
|
2013-11-11 01:59:13 +00:00
|
|
|
def onVocabDefsAnchorClicked(self, url):
|
2011-08-28 18:01:32 +00:00
|
|
|
command, index = unicode(url.toString()).split(':')
|
2013-11-11 01:59:13 +00:00
|
|
|
definition = self.state.vocabDefs[int(index)]
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
if command == 'addVocabExp':
|
|
|
|
markup = reader_util.markupVocabExp(definition)
|
2013-11-10 21:59:37 +00:00
|
|
|
self.ankiAddFact('vocab', markup)
|
2013-11-11 01:39:44 +00:00
|
|
|
if command == 'addVocabReading':
|
|
|
|
markup = reader_util.markupVocabReading(definition)
|
2013-11-10 21:59:37 +00:00
|
|
|
self.ankiAddFact('vocab', markup)
|
2013-11-11 01:39:44 +00:00
|
|
|
elif command == 'copyVocabDef':
|
|
|
|
reader_util.copyVocabDefs([definition])
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2013-11-11 01:59:13 +00:00
|
|
|
def onKanjiDefsAnchorClicked(self, url):
|
|
|
|
command, index = unicode(url.toString()).split(':')
|
|
|
|
definition = self.state.kanjiDefs[int(index)]
|
|
|
|
|
|
|
|
if command == 'addVocabExp':
|
|
|
|
markup = reader_util.markupVocabExp(definition)
|
|
|
|
self.ankiAddFact('vocab', markup)
|
|
|
|
if command == 'addVocabReading':
|
|
|
|
markup = reader_util.markupVocabReading(definition)
|
|
|
|
self.ankiAddFact('vocab', markup)
|
|
|
|
elif command == 'copyVocabDef':
|
|
|
|
reader_util.copyVocabDefs([definition])
|
|
|
|
|
|
|
|
|
|
|
|
def onVocabDefSearchReturn(self):
|
2013-11-10 18:21:25 +00:00
|
|
|
text = unicode(self.textVocabSearch.text())
|
2013-11-11 01:59:13 +00:00
|
|
|
self.state.vocabDefs, length = self.language.findTerm(text, True)
|
2013-11-11 04:27:25 +00:00
|
|
|
self.updateVocabDefs()
|
2013-11-11 01:59:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
def onKanjiDefSearchReturn(self):
|
|
|
|
text = unicode(self.textKanjiSearch.text())
|
2013-11-11 04:27:25 +00:00
|
|
|
if len(text) == 1:
|
|
|
|
result = self.language.findCharacter(text)
|
|
|
|
self.state.kanjiDefs = list() if result is None else [result]
|
|
|
|
else:
|
|
|
|
self.state.kanjiDefs = self.language.findCharacterVisually(text)
|
|
|
|
|
|
|
|
self.updateKanjiDefs()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def onDefinitionDoubleClicked(self, item):
|
2012-12-25 02:58:39 +00:00
|
|
|
if self.anki is not None:
|
2013-11-11 04:27:25 +00:00
|
|
|
row = self.istDefinitions.row(item)
|
2012-12-25 02:58:39 +00:00
|
|
|
self.anki.browseNote(self.addedFacts[row])
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2011-10-08 03:04:46 +00:00
|
|
|
def onVisibilityChanged(self, visible):
|
|
|
|
self.actionToggleAnki.setChecked(self.dockAnki.isVisible())
|
2013-11-10 18:21:25 +00:00
|
|
|
self.actionToggleVocab.setChecked(self.dockVocab.isVisible())
|
|
|
|
self.actionToggleKanji.setChecked(self.dockKanji.isVisible())
|
2011-10-08 03:04:46 +00:00
|
|
|
|
|
|
|
|
2011-08-28 18:01:32 +00:00
|
|
|
def onUpdaterSearchResult(self, result):
|
2013-11-10 02:49:31 +00:00
|
|
|
if result and unicode(result) > constants.c['appVersion']:
|
2011-08-28 18:01:32 +00:00
|
|
|
QtGui.QMessageBox.information(
|
|
|
|
self,
|
|
|
|
'Yomichan',
|
|
|
|
'A new version of Yomichan is available for download!\n\nYou can download this update ({0} > {1}) ' \
|
2013-11-10 02:49:31 +00:00
|
|
|
'from "Shared Plugins" in Anki or directly from the Yomichan homepage.'.format(constants.c['appVersion'], result)
|
2011-08-28 18:01:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def onContentMouseMove(self, event):
|
|
|
|
QtGui.QPlainTextEdit.mouseMoveEvent(self.textContent, event)
|
|
|
|
self.updateSampleMouseEvent(event)
|
|
|
|
|
|
|
|
|
|
|
|
def onContentMousePress(self, event):
|
|
|
|
QtGui.QPlainTextEdit.mousePressEvent(self.textContent, event)
|
|
|
|
self.updateSampleMouseEvent(event)
|
|
|
|
|
|
|
|
|
|
|
|
def openFile(self, filename):
|
|
|
|
filename = unicode(filename)
|
|
|
|
try:
|
2011-10-25 20:12:58 +00:00
|
|
|
content = self.openFileByExtension(filename)
|
2011-08-28 18:01:32 +00:00
|
|
|
except IOError:
|
|
|
|
self.setStatus(u'Failed to load file {0}'.format(filename))
|
|
|
|
QtGui.QMessageBox.critical(self, 'Yomichan', 'Cannot open file for read')
|
|
|
|
return
|
|
|
|
|
|
|
|
self.closeFile()
|
|
|
|
|
|
|
|
self.state.filename = filename
|
|
|
|
self.state.scanPosition = self.preferences.filePosition(filename)
|
|
|
|
if self.state.scanPosition > len(content):
|
|
|
|
self.state.scanPosition = 0
|
|
|
|
|
|
|
|
self.updateRecentFile()
|
|
|
|
self.updateRecentFiles()
|
|
|
|
|
|
|
|
content, encoding = reader_util.decodeContent(content)
|
2013-11-10 19:46:50 +00:00
|
|
|
if self.preferences['stripReadings']:
|
2013-11-11 01:39:44 +00:00
|
|
|
content = reader_util.stripReadings(content)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
self.textContent.setPlainText(content)
|
|
|
|
if self.state.scanPosition > 0:
|
|
|
|
cursor = self.textContent.textCursor()
|
|
|
|
cursor.setPosition(self.state.scanPosition)
|
|
|
|
self.textContent.setTextCursor(cursor)
|
|
|
|
self.textContent.centerCursor()
|
|
|
|
|
|
|
|
self.setStatus(u'Loaded file {0}'.format(filename))
|
2013-11-10 19:46:50 +00:00
|
|
|
self.setWindowTitle(u'Yomichan - {0} ({1})'.format(os.path.basename(filename), encoding))
|
2011-11-19 17:19:17 +00:00
|
|
|
|
2012-12-25 02:53:41 +00:00
|
|
|
|
2011-10-25 20:12:58 +00:00
|
|
|
def openFileByExtension(self, filename):
|
2011-11-14 19:06:45 +00:00
|
|
|
self.clearArchiveFiles()
|
2011-11-19 17:19:17 +00:00
|
|
|
|
2011-10-25 20:12:58 +00:00
|
|
|
if tarfile.is_tarfile(filename):
|
|
|
|
with tarfile.open(filename, 'r:*') as tp:
|
|
|
|
files = [f for f in tp.getnames() if tp.getmember(f).isfile()]
|
2011-11-05 18:51:42 +00:00
|
|
|
names = [f.decode('utf-8') for f in files]
|
2011-11-19 17:19:17 +00:00
|
|
|
|
2011-11-05 18:51:42 +00:00
|
|
|
self.updateArchiveFiles(filename, names)
|
2011-11-19 17:19:17 +00:00
|
|
|
|
2012-12-25 16:25:10 +00:00
|
|
|
content = unicode()
|
|
|
|
if len(files) == 1:
|
2011-10-25 20:12:58 +00:00
|
|
|
fp = tp.extractfile(files[0])
|
|
|
|
content = fp.read()
|
|
|
|
fp.close()
|
2012-12-25 16:25:10 +00:00
|
|
|
elif len(files) > 1:
|
2012-12-25 02:53:41 +00:00
|
|
|
index, ok = self.selectFileName(names)
|
2011-10-29 16:43:32 +00:00
|
|
|
if ok:
|
2011-11-05 18:51:42 +00:00
|
|
|
fp = tp.extractfile(files[index])
|
2011-10-29 16:43:32 +00:00
|
|
|
content = fp.read()
|
|
|
|
fp.close()
|
2011-11-05 18:51:42 +00:00
|
|
|
self.state.archiveIndex = index
|
2011-10-25 20:12:58 +00:00
|
|
|
else:
|
2011-11-05 18:51:42 +00:00
|
|
|
self.state.archiveIndex = None
|
2011-10-25 20:12:58 +00:00
|
|
|
with open(filename, 'rb') as fp:
|
|
|
|
content = fp.read()
|
2011-11-19 17:19:17 +00:00
|
|
|
|
2011-10-25 20:12:58 +00:00
|
|
|
return content
|
2011-11-19 17:19:17 +00:00
|
|
|
|
|
|
|
|
2011-11-05 18:51:42 +00:00
|
|
|
def selectFileName(self, names):
|
|
|
|
if self.state.archiveIndex is not None:
|
2012-12-25 16:25:10 +00:00
|
|
|
return self.state.archiveIndex, True
|
2011-11-19 17:19:17 +00:00
|
|
|
|
2012-12-25 02:53:41 +00:00
|
|
|
item, ok = QtGui.QInputDialog.getItem(
|
|
|
|
self,
|
|
|
|
'Yomichan',
|
|
|
|
'Select file to open:',
|
|
|
|
self.formatQStringList(names),
|
|
|
|
current = 0,
|
|
|
|
editable=False
|
|
|
|
)
|
|
|
|
|
|
|
|
index, success = self.getItemIndex(item)
|
|
|
|
return index - 1, ok and success
|
2011-11-19 17:19:17 +00:00
|
|
|
|
|
|
|
|
2011-11-05 18:51:42 +00:00
|
|
|
def getItemIndex(self, item):
|
|
|
|
return item.split('.').first().toInt()
|
|
|
|
|
|
|
|
|
|
|
|
def formatQStringList(self, list):
|
|
|
|
return [self.formatQString(i, x) for i, x in enumerate(list)]
|
2011-11-19 17:19:17 +00:00
|
|
|
|
|
|
|
|
2011-10-29 16:43:32 +00:00
|
|
|
def formatQString(self, index, item):
|
|
|
|
return QtCore.QString(str(index + 1) + '. ').append(QtCore.QString(item))
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2011-11-05 18:51:42 +00:00
|
|
|
|
2011-08-28 18:01:32 +00:00
|
|
|
def closeFile(self):
|
|
|
|
self.setWindowTitle('Yomichan')
|
|
|
|
self.textContent.setPlainText(unicode())
|
|
|
|
self.updateRecentFile(False)
|
|
|
|
self.state = self.State()
|
|
|
|
|
|
|
|
|
|
|
|
def findText(self, text):
|
|
|
|
content = self.textContent.toPlainText()
|
|
|
|
index = content.indexOf(text, self.state.searchPosition)
|
|
|
|
|
|
|
|
if index == -1:
|
|
|
|
wrap = self.state.searchPosition != 0
|
|
|
|
self.state.searchPosition = 0
|
|
|
|
if wrap:
|
|
|
|
self.findText(text)
|
|
|
|
else:
|
|
|
|
QtGui.QMessageBox.information(self, 'Yomichan', 'Search text not found')
|
|
|
|
else:
|
|
|
|
self.state.searchPosition = index + len(text)
|
|
|
|
cursor = self.textContent.textCursor()
|
|
|
|
cursor.setPosition(index, QtGui.QTextCursor.MoveAnchor)
|
|
|
|
cursor.setPosition(self.state.searchPosition, QtGui.QTextCursor.KeepAnchor)
|
|
|
|
self.textContent.setTextCursor(cursor)
|
|
|
|
|
|
|
|
self.state.searchText = text
|
|
|
|
|
|
|
|
|
2013-11-10 21:59:37 +00:00
|
|
|
def ankiAddFact(self, profile, markup):
|
2012-12-25 02:53:41 +00:00
|
|
|
if self.anki is None:
|
2011-08-28 18:01:32 +00:00
|
|
|
return False
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
profile = self.preferences['profiles'].get(profile)
|
2013-11-10 21:59:37 +00:00
|
|
|
if profile is None:
|
|
|
|
return False
|
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
fields = reader_util.formatFields(profile['fields'], markup)
|
2012-12-24 17:24:02 +00:00
|
|
|
tagsSplit = reader_util.splitTags(unicode(self.comboTags.currentText()))
|
|
|
|
tagsJoined = ' '.join(tagsSplit)
|
|
|
|
|
|
|
|
tagIndex = self.comboTags.findText(tagsJoined)
|
2011-08-28 18:01:32 +00:00
|
|
|
if tagIndex > 0:
|
|
|
|
self.comboTags.removeItem(tagIndex)
|
|
|
|
if tagIndex != 0:
|
2012-12-24 17:24:02 +00:00
|
|
|
self.comboTags.insertItem(0, tagsJoined)
|
|
|
|
self.preferences.updateFactTags(tagsJoined)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2013-11-10 21:59:37 +00:00
|
|
|
factId = self.anki.addNote(profile['deck'], profile['model'], fields, tagsSplit)
|
2012-12-25 02:53:41 +00:00
|
|
|
if factId is None:
|
2011-08-28 18:01:32 +00:00
|
|
|
return False
|
|
|
|
|
2013-11-11 23:47:05 +00:00
|
|
|
if profile == 'vocab':
|
|
|
|
if markup['reading']:
|
|
|
|
summary = u'{expression} [{reading}]'.format(**markup)
|
|
|
|
else:
|
|
|
|
summary = markup['expression']
|
2013-11-10 02:33:31 +00:00
|
|
|
else:
|
2013-11-11 23:47:05 +00:00
|
|
|
summary = markup['character']
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
self.addedFacts.append(factId)
|
|
|
|
self.listDefinitions.addItem(summary)
|
|
|
|
self.listDefinitions.setCurrentRow(self.listDefinitions.count() - 1)
|
2013-11-10 02:33:31 +00:00
|
|
|
self.setStatus(u'Added expression {0}; {1} new fact(s) total'.format(markup['expression'], len(self.addedFacts)))
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
self.updateVocabDefs()
|
|
|
|
self.updateKanjiDefs()
|
2011-08-28 18:01:32 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2013-11-10 21:59:37 +00:00
|
|
|
def ankiIsFactValid(self, profile, markup):
|
|
|
|
if self.anki is None:
|
|
|
|
return False
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
profile = self.preferences['profiles'].get(profile)
|
2013-11-10 21:59:37 +00:00
|
|
|
if profile is None:
|
|
|
|
return False
|
|
|
|
|
2013-11-11 01:39:44 +00:00
|
|
|
fields = reader_util.formatFields(profile['fields'], markup)
|
2013-11-10 21:59:37 +00:00
|
|
|
return self.anki.canAddNote(profile['deck'], profile['model'], fields)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def updateSampleMouseEvent(self, event):
|
|
|
|
cursor = self.textContent.cursorForPosition(event.pos())
|
|
|
|
self.state.scanPosition = cursor.position()
|
|
|
|
requested = event.buttons() & QtCore.Qt.MidButton or event.modifiers() & QtCore.Qt.ShiftModifier
|
2013-11-10 18:21:25 +00:00
|
|
|
visible = self.dockVocab.isVisible() or self.dockKanji.isVisible()
|
|
|
|
if visible and requested:
|
2011-08-28 18:01:32 +00:00
|
|
|
self.updateSampleFromPosition()
|
|
|
|
|
|
|
|
|
|
|
|
def updateSampleFromPosition(self):
|
|
|
|
samplePosStart = self.state.scanPosition
|
2013-11-10 19:46:50 +00:00
|
|
|
samplePosEnd = self.state.scanPosition + self.preferences['scanLength']
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
cursor = self.textContent.textCursor()
|
|
|
|
content = unicode(self.textContent.toPlainText())
|
|
|
|
contentSample = content[samplePosStart:samplePosEnd]
|
|
|
|
|
|
|
|
if not contentSample or unicode.isspace(contentSample[0]):
|
|
|
|
cursor.clearSelection()
|
|
|
|
self.textContent.setTextCursor(cursor)
|
|
|
|
return
|
|
|
|
|
|
|
|
contentSampleFlat = contentSample.replace('\n', unicode())
|
2013-11-11 01:59:13 +00:00
|
|
|
self.state.vocabDefs, lengthMatched = self.language.findTerm(contentSampleFlat)
|
2013-11-10 02:08:20 +00:00
|
|
|
|
2011-08-28 18:01:32 +00:00
|
|
|
sentence = reader_util.findSentence(content, samplePosStart)
|
2013-11-11 01:59:13 +00:00
|
|
|
for definition in self.state.vocabDefs:
|
2013-11-10 02:08:20 +00:00
|
|
|
definition['sentence'] = sentence
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
self.updateVocabDefs()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
lengthSelect = 0
|
|
|
|
if lengthMatched:
|
|
|
|
for c in contentSample:
|
|
|
|
lengthSelect += 1
|
|
|
|
if c != '\n':
|
|
|
|
lengthMatched -= 1
|
|
|
|
if lengthMatched <= 0:
|
|
|
|
break
|
|
|
|
|
|
|
|
cursor.setPosition(samplePosStart, QtGui.QTextCursor.MoveAnchor)
|
|
|
|
cursor.setPosition(samplePosStart + lengthSelect, QtGui.QTextCursor.KeepAnchor)
|
|
|
|
self.textContent.setTextCursor(cursor)
|
2011-11-19 17:19:17 +00:00
|
|
|
|
|
|
|
|
2011-11-05 18:51:42 +00:00
|
|
|
def clearArchiveFiles(self):
|
|
|
|
self.menuOpenArchive.clear()
|
|
|
|
self.menuOpenArchive.setEnabled(False)
|
2011-11-19 17:19:17 +00:00
|
|
|
|
|
|
|
|
2011-11-05 18:51:42 +00:00
|
|
|
def updateArchiveFiles(self, filename, names):
|
|
|
|
self.menuOpenArchive.setEnabled(True)
|
|
|
|
for name in self.formatQStringList(names):
|
2012-12-25 02:53:41 +00:00
|
|
|
index, ok = self.getItemIndex(name)
|
2011-11-05 18:51:42 +00:00
|
|
|
if ok:
|
|
|
|
index = index - 1
|
2012-12-25 02:53:41 +00:00
|
|
|
self.menuOpenArchive.addAction(name, lambda fn=filename, idx=index: self.openFileInArchive(fn, idx))
|
2011-11-05 18:51:42 +00:00
|
|
|
else:
|
2012-12-25 02:53:41 +00:00
|
|
|
self.menuOpenArchive.addAction(name, lambda fn=filename: self.openFile(fn))
|
2011-11-19 17:19:17 +00:00
|
|
|
|
|
|
|
|
2011-11-05 18:51:42 +00:00
|
|
|
def openFileInArchive(self, filename, index):
|
|
|
|
self.state.scanPosition = 0
|
|
|
|
self.state.archiveIndex = index
|
|
|
|
self.openFile(filename)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def clearRecentFiles(self):
|
2011-10-09 02:36:10 +00:00
|
|
|
self.preferences.clearRecentFiles()
|
2011-08-28 18:01:32 +00:00
|
|
|
self.updateRecentFiles()
|
|
|
|
|
|
|
|
|
|
|
|
def updateRecentFiles(self):
|
|
|
|
self.menuOpenRecent.clear()
|
|
|
|
|
|
|
|
filenames = self.preferences.recentFiles()
|
2013-11-10 19:46:50 +00:00
|
|
|
if len(filenames) == 0:
|
2011-08-28 18:01:32 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
for filename in filenames:
|
2013-11-10 19:46:50 +00:00
|
|
|
self.menuOpenRecent.addAction(filename, lambda f=filename: self.openFile(f))
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
self.menuOpenRecent.addSeparator()
|
|
|
|
self.menuOpenRecent.addAction('Clear file history', self.clearRecentFiles)
|
|
|
|
|
|
|
|
|
|
|
|
def updateRecentFile(self, addIfNeeded=True):
|
|
|
|
if self.state.filename:
|
|
|
|
if addIfNeeded or self.state.filename in self.preferences.recentFiles():
|
|
|
|
self.preferences.updateRecentFile(self.state.filename, self.state.scanPosition)
|
|
|
|
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
def updateVocabDefs(self):
|
|
|
|
html = reader_util.buildVocabDefs(
|
|
|
|
self.state.vocabDefs[:self.preferences['maxResults']],
|
|
|
|
self.ankiIsFactValid
|
|
|
|
)
|
2013-11-11 01:59:13 +00:00
|
|
|
self.textVocabDefs.setHtml(html)
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2013-11-11 04:27:25 +00:00
|
|
|
def updateKanjiDefs(self):
|
|
|
|
html = reader_util.buildKanjiDefs(
|
|
|
|
self.state.kanjiDefs[:self.preferences['maxRsults']],
|
|
|
|
self.ankiIsFactValid
|
|
|
|
)
|
|
|
|
self.textKanjiDefs.setHtml(html)
|
|
|
|
|
|
|
|
|
2011-08-28 18:01:32 +00:00
|
|
|
def setStatus(self, status):
|
|
|
|
self.statusBar.showMessage(status)
|