105 lines
3.1 KiB
Python
105 lines
3.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2011 Alex Yatskov
|
|
#
|
|
# 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/>.
|
|
|
|
|
|
from PyQt4 import QtGui, QtCore
|
|
from languages import japanese
|
|
from core import anki_host
|
|
from core.preference_data import Preferences
|
|
from core.reader import MainWindowReader
|
|
|
|
|
|
class YomichanPlugin:
|
|
def __init__(self):
|
|
self.languages = {'Japanese': japanese.initLanguage()}
|
|
self.preferences = Preferences()
|
|
self.preferences.load()
|
|
self.toolIconVisible = False
|
|
self.window = None
|
|
|
|
self.anki = anki_host.Anki()
|
|
self.parent = self.anki.window()
|
|
self.separator = QtGui.QAction(self.parent)
|
|
self.separator.setSeparator(True)
|
|
self.action = QtGui.QAction(QtGui.QIcon(':/logos/logos/logo32x32.png'), '&Yomichan...', self.parent)
|
|
self.action.setIconVisibleInMenu(True)
|
|
self.parent.connect(self.action, QtCore.SIGNAL('triggered()'), self.__onShowRequest)
|
|
|
|
self.anki.addHook('loadDeck', self.__onDeckLoad)
|
|
self.anki.addHook('deckClosed', self.__onDeckClose)
|
|
|
|
|
|
def __onShowRequest(self):
|
|
if self.window:
|
|
self.window.setVisible(True)
|
|
self.window.activateWindow()
|
|
else:
|
|
self.window = MainWindowReader(
|
|
self.parent,
|
|
self.languages,
|
|
None,
|
|
self.preferences,
|
|
self.anki,
|
|
self.__onWindowClose,
|
|
self.__onWindowUpdate
|
|
)
|
|
self.window.show()
|
|
|
|
|
|
def __onWindowClose(self):
|
|
self.window = None
|
|
|
|
|
|
def __onWindowUpdate(self):
|
|
if self.preferences.ankiShowIcon:
|
|
self.__showToolIcon()
|
|
else:
|
|
self.__hideToolIcon()
|
|
|
|
|
|
def __onDeckLoad(self):
|
|
self.anki.toolsMenu().addAction(self.separator)
|
|
self.anki.toolsMenu().addAction(self.action)
|
|
|
|
if self.preferences.ankiShowIcon:
|
|
self.__showToolIcon()
|
|
|
|
|
|
def __onDeckClose(self):
|
|
self.anki.toolsMenu().removeAction(self.action)
|
|
self.anki.toolsMenu().removeAction(self.separator)
|
|
|
|
self.__hideToolIcon()
|
|
|
|
if self.window:
|
|
self.window.close()
|
|
self.window = None
|
|
|
|
|
|
def __hideToolIcon(self):
|
|
if self.toolIconVisible:
|
|
self.anki.toolBar().removeAction(self.action)
|
|
self.toolIconVisible = False
|
|
|
|
|
|
def __showToolIcon(self):
|
|
if not self.toolIconVisible:
|
|
self.anki.toolBar().addAction(self.action)
|
|
self.toolIconVisible = True
|
|
|
|
|
|
plugin = YomichanPlugin()
|