1
yomichan-anki/yomichan_plugin.py

106 lines
3.1 KiB
Python
Raw Normal View History

2011-08-28 18:01:32 +00:00
# -*- coding: utf-8 -*-
2011-10-27 15:22:26 +00:00
2011-08-28 18:01:32 +00:00
# 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
2011-11-05 15:55:15 +00:00
from lang import japanese
2011-08-28 18:01:32 +00:00
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)
2011-10-08 16:32:51 +00:00
self.parent.connect(self.action, QtCore.SIGNAL('triggered()'), self.onShowRequest)
2011-08-28 18:01:32 +00:00
2011-10-08 16:32:51 +00:00
self.anki.addHook('loadDeck', self.onDeckLoad)
self.anki.addHook('deckClosed', self.onDeckClose)
2011-08-28 18:01:32 +00:00
2011-10-08 16:32:51 +00:00
def onShowRequest(self):
2011-08-28 18:01:32 +00:00
if self.window:
self.window.setVisible(True)
self.window.activateWindow()
else:
self.window = MainWindowReader(
self.parent,
self.languages,
None,
self.preferences,
self.anki,
2011-10-08 16:32:51 +00:00
self.onWindowClose,
self.onWindowUpdate
2011-08-28 18:01:32 +00:00
)
self.window.show()
2011-10-08 16:32:51 +00:00
def onWindowClose(self):
2011-08-28 18:01:32 +00:00
self.window = None
2011-10-08 16:32:51 +00:00
def onWindowUpdate(self):
2011-08-28 18:01:32 +00:00
if self.preferences.ankiShowIcon:
2011-10-08 16:32:51 +00:00
self.showToolIcon()
2011-08-28 18:01:32 +00:00
else:
2011-10-08 16:32:51 +00:00
self.hideToolIcon()
2011-08-28 18:01:32 +00:00
2011-10-08 16:32:51 +00:00
def onDeckLoad(self):
2011-08-28 18:01:32 +00:00
self.anki.toolsMenu().addAction(self.separator)
self.anki.toolsMenu().addAction(self.action)
if self.preferences.ankiShowIcon:
2011-10-08 16:32:51 +00:00
self.showToolIcon()
2011-08-28 18:01:32 +00:00
2011-10-08 16:32:51 +00:00
def onDeckClose(self):
2011-08-28 18:01:32 +00:00
self.anki.toolsMenu().removeAction(self.action)
self.anki.toolsMenu().removeAction(self.separator)
2011-10-08 16:32:51 +00:00
self.hideToolIcon()
2011-08-28 18:01:32 +00:00
if self.window:
self.window.close()
self.window = None
2011-10-08 16:32:51 +00:00
def hideToolIcon(self):
2011-08-28 18:01:32 +00:00
if self.toolIconVisible:
self.anki.toolBar().removeAction(self.action)
self.toolIconVisible = False
2011-10-08 16:32:51 +00:00
def showToolIcon(self):
2011-08-28 18:01:32 +00:00
if not self.toolIconVisible:
self.anki.toolBar().addAction(self.action)
self.toolIconVisible = True
plugin = YomichanPlugin()